Pārlūkot izejas kodu

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

csx 3 gadus atpakaļ
vecāks
revīzija
5e0794470e
3 mainītis faili ar 5 papildinājumiem un 7 dzēšanām
  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 Parādīt failu

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

+ 1 - 5
controllers/sg/his_api_controller.go Parādīt failu

1658
 				insutype = "310"
1658
 				insutype = "310"
1659
 			}
1659
 			}
1660
 
1660
 
1661
-			fmt.Println(insutype)
1662
-
1663
 			if count == 1 {
1661
 			if count == 1 {
1664
 				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeRegisterRepeatException)
1662
 				c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeRegisterRepeatException)
1665
 				return
1663
 				return
1666
 			}
1664
 			}
1667
 			api := "http://127.0.0.1:9532/" + "gdyb/two?cert_no=" + IdCardNo + "&insutype=" +
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
 				"&org_name=" + miConfig.OrgName + "&doctor=" + patientPrescription.Doctor + "&ipt_otp_no=" + ipt_otp_no +
1667
 				"&org_name=" + miConfig.OrgName + "&doctor=" + patientPrescription.Doctor + "&ipt_otp_no=" + ipt_otp_no +
1670
 				"&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)
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
 			resp, requestErr := http.Get(api)
1669
 			resp, requestErr := http.Get(api)
2148
 					insutype = "310"
2146
 					insutype = "310"
2149
 				}
2147
 				}
2150
 
2148
 
2151
-				fmt.Println(insutype)
2152
-				insutype = "390"
2153
 				if his.IdCardType == 1 {
2149
 				if his.IdCardType == 1 {
2154
 					cert_no = his.MedicalInsuranceNumber
2150
 					cert_no = his.MedicalInsuranceNumber
2155
 
2151
 

+ 3 - 1
routers/router.go Parādīt failu

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