Просмотр исходного кода

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

csx 3 лет назад
Родитель
Сommit
9d2be06948

+ 1 - 0
controllers/sg/his_api_controller.go Просмотреть файл

@@ -2019,6 +2019,7 @@ func (c *HisApiController) GetUploadInfo() {
2019 2019
 				Modify:                roles.AdminUserId,
2020 2020
 				FaPiaoNumber:          fapiao_number,
2021 2021
 				FaPiaoCode:            fapiao_code,
2022
+				PType:                 2,
2022 2023
 			}
2023 2024
 			err = service.CreateOrder(order)
2024 2025
 			if err != nil {

+ 2 - 2
controllers/zh/zh_his_api_controller.go Просмотреть файл

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

+ 2 - 0
models/his_models.go Просмотреть файл

@@ -687,6 +687,8 @@ type HisOrder struct {
687 687
 	Patients            Patients            `gorm:"ForeignKey:PatientId;AssociationForeignKey:ID" json:"patient"`
688 688
 	HisPatient          HisPatient          `gorm:"ForeignKey:MdtrtId;AssociationForeignKey:Number" json:"his_patient"`
689 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 694
 func (HisOrder) TableName() string {

+ 2 - 1
routers/router.go Просмотреть файл

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