|
@@ -1324,6 +1324,7 @@ func (this *HisProjectApiController) GetChargePrint() {
|
1324
|
1324
|
chargePrint, err := service.GetChargePrint(recordDateTime, patient_id, adminUserInfo.CurrentOrgId)
|
1325
|
1325
|
prescription, err := service.GetHisPrescriptionNight(adminUserInfo.CurrentOrgId, patient_id, recordDateTime, prescription_id)
|
1326
|
1326
|
patient, err := service.GetPatientByID(adminUserInfo.CurrentOrgId, patient_id)
|
|
1327
|
+ hisPatient, err := service.GetHisPatientById(patient_id)
|
1327
|
1328
|
if err != nil {
|
1328
|
1329
|
this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeUpdateConfig)
|
1329
|
1330
|
return
|
|
@@ -1332,6 +1333,7 @@ func (this *HisProjectApiController) GetChargePrint() {
|
1332
|
1333
|
"list": chargePrint,
|
1333
|
1334
|
"prescription": prescription,
|
1334
|
1335
|
"patient": patient,
|
|
1336
|
+ "hisPatient": hisPatient,
|
1335
|
1337
|
})
|
1336
|
1338
|
}
|
1337
|
1339
|
|