瀏覽代碼

耗材参数

XMLWAN 4 年之前
父節點
當前提交
7eb13e2f59
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      controllers/new_mobile_api_controllers/new_common_api_controller.go

+ 2 - 0
controllers/new_mobile_api_controllers/new_common_api_controller.go 查看文件

@@ -196,6 +196,7 @@ func (this *NewCommonApiController) GetPrescriptionlist() {
196 196
 	count, _ := service.TotalDialysisCount(statime, entime, orgId)
197 197
 	prescriptionList, _ := service.GetAllDialysisList(statime, entime, orgId)
198 198
 	list, totallist, err := service.GetDialysisPatientList(statime, entime, page, limit, orgId)
199
+	modeIdCount, parseDateErr := service.GetModeIdCount(statime, entime, orgId, page, limit)
199 200
 	if err != nil {
200 201
 		this.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeSystemError)
201 202
 		return
@@ -205,6 +206,7 @@ func (this *NewCommonApiController) GetPrescriptionlist() {
205 206
 		"totallist":        totallist,
206 207
 		"prescriptionList": prescriptionList,
207 208
 		"count":            count,
209
+		"modeIdCount":      modeIdCount,
208 210
 	})
209 211
 }
210 212