瀏覽代碼

Merge branch 'master' of http://git.shengws.com/csx/XT_New into 20200710_xt_api_new_branch

csx 4 年之前
父節點
當前提交
9c8b28c2dd
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4 1
      controllers/pc_index_evaluation_api_controller.go

+ 4 - 1
controllers/pc_index_evaluation_api_controller.go 查看文件

@@ -206,8 +206,11 @@ func (this *PCIndexEvaluationApiController) GetPatientInspectionChartData() {
206 206
 	}
207 207
 
208 208
 	data, _ := statistics_service.GetPatientInspectionChartData(adminUserInfo.CurrentOrgId, theStartTIme, theEndtTIme, project_id, item_id, patient_id)
209
+	references, _ := statistics_service.FindOrgQualityControlStandardInspectionReferenceById(adminUserInfo.CurrentOrgId, project_id, item_id)
210
+
209 211
 	this.ServeSuccessJSON(map[string]interface{}{
210
-		"data": data,
212
+		"data":       data,
213
+		"references": references,
211 214
 	})
212 215
 
213 216
 }