Kaynağa Gözat

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

csx 3 yıl önce
ebeveyn
işleme
5e0794470e
3 değiştirilmiş dosya ile 5 ekleme ve 7 silme
  1. 1 1
      conf/app.conf
  2. 1 5
      controllers/sg/his_api_controller.go
  3. 3 1
      routers/router.go

+ 1 - 1
conf/app.conf Dosyayı Görüntüle

@@ -1,6 +1,6 @@
1 1
 appname = 血透
2 2
 httpport = 9532
3
-runmode = prod
3
+runmode = dev
4 4
 
5 5
 #
6 6
 copyrequestbody = true

+ 1 - 5
controllers/sg/his_api_controller.go Dosyayı Görüntüle

@@ -1658,14 +1658,12 @@ func (c *HisApiController) GetRegisterInfo() {
1658 1658
 				insutype = "310"
1659 1659
 			}
1660 1660
 
1661
-			fmt.Println(insutype)
1662
-
1663 1661
 			if count == 1 {
1664 1662
 				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeRegisterRepeatException)
1665 1663
 				return
1666 1664
 			}
1667 1665
 			api := "http://127.0.0.1:9532/" + "gdyb/two?cert_no=" + IdCardNo + "&insutype=" +
1668
-				"390" + "&psn_no=" + res.Output.Baseinfo.PsnNo +
1666
+				insutype + "&psn_no=" + res.Output.Baseinfo.PsnNo +
1669 1667
 				"&org_name=" + miConfig.OrgName + "&doctor=" + patientPrescription.Doctor + "&ipt_otp_no=" + ipt_otp_no +
1670 1668
 				"&dept=" + department.Name + "&fixmedins_code=" + miConfig.Code + "&dept_code=" + department.Number + "&doctor_id=" + doctor_id + "&insuplc_admdvs=" + miConfig.InsuplcAdmdvs + "&mdtrtarea_admvs=" + miConfig.MdtrtareaAdmvs + "&secret_key=" + miConfig.SecretKey + "&id_card_type=" + strconv.FormatInt(int64(id_card_type), 10)
1671 1669
 			resp, requestErr := http.Get(api)
@@ -2148,8 +2146,6 @@ func (c *HisApiController) GetUploadInfo() {
2148 2146
 					insutype = "310"
2149 2147
 				}
2150 2148
 
2151
-				fmt.Println(insutype)
2152
-				insutype = "390"
2153 2149
 				if his.IdCardType == 1 {
2154 2150
 					cert_no = his.MedicalInsuranceNumber
2155 2151
 

+ 3 - 1
routers/router.go Dosyayı Görüntüle

@@ -4,6 +4,8 @@ import (
4 4
 	//"gdyb/controllers/sz"
5 5
 
6 6
 	"gdyb/controllers/sg"
7
+	"gdyb/controllers/zh"
8
+
7 9
 	//"gdyb/controllers/sz"
8 10
 	//"gdyb/controllers/sz"
9 11
 	//admin_api "XT_New/controllers/admin_api_controllers"
@@ -25,6 +27,6 @@ func init() {
25 27
 	sg.HisManagerApiRegistRouters()
26 28
 	sg.GdybRegistRouters()
27 29
 	//sz.SZHisManagerApiRegistRouters()
28
-	//zh.ZHHisManagerApiRegistRouters()
30
+	zh.ZHHisManagerApiRegistRouters()
29 31
 
30 32
 }