Browse Source

Merge branch '20230223_xt_api_new_branch' of http://git.shengws.com/csx/XT_New into 20230223_xt_api_new_branch

28169 7 months ago
parent
commit
72b98cf8ad
1 changed files with 3 additions and 0 deletions
  1. 3 0
      controllers/his_api_controller.go

+ 3 - 0
controllers/his_api_controller.go View File

@@ -9830,6 +9830,8 @@ func (c *HisApiController) GetHisChargePatientInfo() {
9830 9830
 	//获取所有科室信息
9831 9831
 	department, _ := service.GetAllDepartMent(admin.CurrentOrgId)
9832 9832
 
9833
+	sch, _ := service.GetScheduleByDate(c.GetAdminUserInfo().CurrentOrgId, recordDateTime, patient_id)
9834
+
9833 9835
 	c.ServeSuccessJSON(map[string]interface{}{
9834 9836
 		"his_info":     his_patient_info,
9835 9837
 		"xt_info":      xt_patient_info,
@@ -9840,6 +9842,7 @@ func (c *HisApiController) GetHisChargePatientInfo() {
9840 9842
 		"order":        order,
9841 9843
 		"doctors":      doctors,
9842 9844
 		"department":   department,
9845
+		"sch":          sch,
9843 9846
 	})
9844 9847
 	return
9845 9848
 }