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