Pārlūkot izejas kodu

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

csx 3 gadus atpakaļ
vecāks
revīzija
9d2be06948

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

2019
 				Modify:                roles.AdminUserId,
2019
 				Modify:                roles.AdminUserId,
2020
 				FaPiaoNumber:          fapiao_number,
2020
 				FaPiaoNumber:          fapiao_number,
2021
 				FaPiaoCode:            fapiao_code,
2021
 				FaPiaoCode:            fapiao_code,
2022
+				PType:                 2,
2022
 			}
2023
 			}
2023
 			err = service.CreateOrder(order)
2024
 			err = service.CreateOrder(order)
2024
 			if err != nil {
2025
 			if err != nil {

+ 2 - 2
controllers/zh/zh_his_api_controller.go Parādīt failu

1089
 				SettleEndTime:       end_time,
1089
 				SettleEndTime:       end_time,
1090
 				Creator:             roles.AdminUserId,
1090
 				Creator:             roles.AdminUserId,
1091
 				Modify:              roles.AdminUserId,
1091
 				Modify:              roles.AdminUserId,
1092
-
1093
-				MedfeeSumamt: totals,
1092
+				PType:               1,
1093
+				MedfeeSumamt:        totals,
1094
 			}
1094
 			}
1095
 			err = service.CreateOrder(order)
1095
 			err = service.CreateOrder(order)
1096
 			if err != nil {
1096
 			if err != nil {

+ 2 - 0
models/his_models.go Parādīt failu

687
 	Patients            Patients            `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
687
 	Patients            Patients            `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
688
 	HisPatient          HisPatient          `gorm:"ForeignKey:MdtrtId;AssociationForeignKey:Number" json:"his_patient"`
688
 	HisPatient          HisPatient          `gorm:"ForeignKey:MdtrtId;AssociationForeignKey:Number" json:"his_patient"`
689
 	HisPrescriptionInfo HisPrescriptionInfo `gorm:"ForeignKey:PatientId,SettleAccountsDate;AssociationForeignKey:PatientId,RecordDate" json:"p_info"`
689
 	HisPrescriptionInfo HisPrescriptionInfo `gorm:"ForeignKey:PatientId,SettleAccountsDate;AssociationForeignKey:PatientId,RecordDate" json:"p_info"`
690
+
691
+	PType int64 `gorm:"column:p_type" json:"p_type" form:"p_type"`
690
 }
692
 }
691
 
693
 
692
 func (HisOrder) TableName() string {
694
 func (HisOrder) TableName() string {

+ 2 - 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/sz"
7
 	"gdyb/controllers/zh"
8
 	"gdyb/controllers/zh"
8
 
9
 
9
 	//"gdyb/controllers/sz"
10
 	//"gdyb/controllers/sz"
26
 
27
 
27
 	sg.HisManagerApiRegistRouters()
28
 	sg.HisManagerApiRegistRouters()
28
 	sg.GdybRegistRouters()
29
 	sg.GdybRegistRouters()
29
-	//sz.SZHisManagerApiRegistRouters()
30
+	sz.SZHisManagerApiRegistRouters()
30
 	zh.ZHHisManagerApiRegistRouters()
31
 	zh.ZHHisManagerApiRegistRouters()
31
 
32
 
32
 }
33
 }