|
|
|
|
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
|
|