|
@@ -2401,6 +2401,7 @@ func (c *GobalConfigApiController) GetDrugFlow() {
|
2401
|
2401
|
dealerList, _ := service.GetAllDealerList(orgId)
|
2402
|
2402
|
medical, _ := service.GetBaseDrugMedical(drug_id)
|
2403
|
2403
|
houseList, _ := service.GetAllStoreHouseList(orgId)
|
|
2404
|
+ patientList, _ := service.GetAllPatientListSix(orgId)
|
2404
|
2405
|
c.ServeSuccessJSON(map[string]interface{}{
|
2405
|
2406
|
"list": list,
|
2406
|
2407
|
"total": total,
|
|
@@ -2408,6 +2409,7 @@ func (c *GobalConfigApiController) GetDrugFlow() {
|
2408
|
2409
|
"dealerList": dealerList,
|
2409
|
2410
|
"drug": medical,
|
2410
|
2411
|
"houseList": houseList,
|
|
2412
|
+ "patientList": patientList,
|
2411
|
2413
|
})
|
2412
|
2414
|
}
|
2413
|
2415
|
|