Browse Source

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

csx 4 years ago
parent
commit
9c8b28c2dd
1 changed files with 4 additions and 1 deletions
  1. 4 1
      controllers/pc_index_evaluation_api_controller.go

+ 4 - 1
controllers/pc_index_evaluation_api_controller.go View File

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