Browse Source

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 2 years ago
parent
commit
5d97556ff0
3 changed files with 9 additions and 14 deletions
  1. 1 1
      controllers/js/jsyb_controller.go
  2. 1 6
      controllers/sg/his_api_controller.go
  3. 7 7
      main.go

+ 1 - 1
controllers/js/jsyb_controller.go View File

@@ -645,7 +645,7 @@ func (c *JSybController) ReadCard() {
645 645
 	//fmt.Println(result)
646 646
 
647 647
 	c.TestGetBasBaseInit(fixmedins_code, secret_key, ak)
648
-
648
+	fmt.Println(id_card_type)
649 649
 	switch id_card_type {
650 650
 	case 1:
651 651
 		pCardInfo, pBusiCardInfo := c.GetBasBaseInfo()

+ 1 - 6
controllers/sg/his_api_controller.go View File

@@ -7942,6 +7942,7 @@ func (c *HisApiController) RefundDetail() {
7942 7942
 	number := c.GetString("number")
7943 7943
 	record_time := c.GetString("record_time")
7944 7944
 	patient_id, _ := c.GetInt64("patient_id")
7945
+	//med_type, _ := c.GetInt64("med_type")
7945 7946
 
7946 7947
 	timeLayout := "2006-01-02"
7947 7948
 	loc, _ := time.LoadLocation("Local")
@@ -7962,13 +7963,7 @@ func (c *HisApiController) RefundDetail() {
7962 7963
 
7963 7964
 	var order models.HisOrder
7964 7965
 	order, _ = service.GetHisOrderByID(order_id)
7965
-
7966
-	if order.ID == 0 {
7967
-		order, _ = service.GetHisOrderThree(recordDateTime, patient_id, adminUser.CurrentOrgId)
7968
-
7969
-	}
7970 7966
 	his, _ := service.GetHisPatientByNumber(order.MdtrtId)
7971
-
7972 7967
 	if config.IsOpen == 1 { //对接了医保,走医保流程
7973 7968
 		var res2 ResultSix
7974 7969
 

+ 7 - 7
main.go View File

@@ -5,7 +5,7 @@ import (
5 5
 	"fmt"
6 6
 	"gdyb/models"
7 7
 	_ "gdyb/routers"
8
-	"gdyb/service"
8
+	//"gdyb/service"
9 9
 
10 10
 	//"gdyb/service"
11 11
 	"github.com/astaxie/beego"
@@ -17,12 +17,12 @@ import (
17 17
 )
18 18
 
19 19
 func init() {
20
-	service.ConnectDB()
21
-	org_id, _ := beego.AppConfig.Int64("org_id")
22
-
23
-	miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
24
-	CreateLog(miConfig)
25
-	UploadLog(miConfig)
20
+	//service.ConnectDB()
21
+	//org_id, _ := beego.AppConfig.Int64("org_id")
22
+	//
23
+	//miConfig, _ := service.FindMedicalInsuranceInfo(org_id)
24
+	//CreateLog(miConfig)
25
+	//UploadLog(miConfig)
26 26
 	//
27 27
 	//UploadSettleList(org_id)
28 28
 }