|
|
|
|
3894
|
record_date, _ := c.GetInt64("record_date")
|
3894
|
record_date, _ := c.GetInt64("record_date")
|
3895
|
orgId := c.GetAdminUserInfo().CurrentOrgId
|
3895
|
orgId := c.GetAdminUserInfo().CurrentOrgId
|
3896
|
list, err := service.GetInitPrintData(patient_id, record_date, orgId)
|
3896
|
list, err := service.GetInitPrintData(patient_id, record_date, orgId)
|
|
|
3897
|
+ assessmentAfterDislysis, _ := service.GetLastWeightAfter(patient_id, record_date, orgId)
|
3897
|
if err == nil {
|
3898
|
if err == nil {
|
3898
|
c.ServeSuccessJSON(map[string]interface{}{
|
3899
|
c.ServeSuccessJSON(map[string]interface{}{
|
3899
|
- "list": list,
|
|
|
|
|
3900
|
+ "list": list,
|
|
|
3901
|
+ "assessmentAfterDislysis": assessmentAfterDislysis,
|
3900
|
})
|
3902
|
})
|
3901
|
return
|
3903
|
return
|
3902
|
|
3904
|
|