Kaynağa Gözat

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

csx 4 yıl önce
ebeveyn
işleme
9c8b28c2dd

+ 4 - 1
controllers/pc_index_evaluation_api_controller.go Dosyayı Görüntüle

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