瀏覽代碼

耗材参数

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