交叉审核报表查询
This commit is contained in:
@@ -29,6 +29,12 @@ public class SampleAnalysisAuditController {
|
|||||||
|
|
||||||
@Resource
|
@Resource
|
||||||
private SampleAnalysisAuditService sampleAnalysisAuditService;
|
private SampleAnalysisAuditService sampleAnalysisAuditService;
|
||||||
|
|
||||||
|
@GetMapping("/crossAuditByTaskId")
|
||||||
|
public CommonResult<?> crossAuditByTaskId(Long businessAssayTaskId) {
|
||||||
|
JSONObject result = sampleAnalysisAuditService.crossAuditByTaskId(businessAssayTaskId);
|
||||||
|
return success(result);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 交叉审核
|
* 交叉审核
|
||||||
|
|||||||
@@ -18,6 +18,8 @@ import com.alibaba.fastjson2.JSONObject;
|
|||||||
*/
|
*/
|
||||||
public interface SampleAnalysisAuditService {
|
public interface SampleAnalysisAuditService {
|
||||||
|
|
||||||
|
JSONObject crossAuditByTaskId(Long businessAssayTaskId);
|
||||||
|
|
||||||
void crossAuditByByTaskId(Long businessAssayTaskId, String auditStatus);
|
void crossAuditByByTaskId(Long businessAssayTaskId, String auditStatus);
|
||||||
|
|
||||||
JSONObject getSampleResultAssessmentList(Long configAssayMethodId, String assessmentStatus);
|
JSONObject getSampleResultAssessmentList(Long configAssayMethodId, String assessmentStatus);
|
||||||
@@ -32,4 +34,5 @@ public interface SampleAnalysisAuditService {
|
|||||||
|
|
||||||
JSONObject modifyParallelResultAssessment(Long businessSubSampleId, Long configAssayMethodId, Long businessSubSampleAssessmentId, List<Long> businessAssayProjectDataIds);
|
JSONObject modifyParallelResultAssessment(Long businessSubSampleId, Long configAssayMethodId, Long businessSubSampleAssessmentId, List<Long> businessAssayProjectDataIds);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -576,7 +576,7 @@ public class SampleAnalysisServiceImpl implements SampleAnalysisService {
|
|||||||
map.put("sampleName", businessQCManagementData.getSampleName());
|
map.put("sampleName", businessQCManagementData.getSampleName());
|
||||||
|
|
||||||
BusinessQCManagementProjectDataReqVO projectDataSearch2 = new BusinessQCManagementProjectDataReqVO();
|
BusinessQCManagementProjectDataReqVO projectDataSearch2 = new BusinessQCManagementProjectDataReqVO();
|
||||||
projectDataSearch2.setBusinessQCManagementDataId(businessQCManagementDataDO.getId());
|
projectDataSearch2.setBusinessQCManagementDataId(businessQCManagementData.getId());
|
||||||
List<BusinessAssayProjectAndParameterRespVO> projectAndParameterList2 = businessQCManagementProjectDataMapper.selectProjectAndParameterBy(projectDataSearch2);
|
List<BusinessAssayProjectAndParameterRespVO> projectAndParameterList2 = businessQCManagementProjectDataMapper.selectProjectAndParameterBy(projectDataSearch2);
|
||||||
for (BusinessAssayProjectAndParameterRespVO ep : projectAndParameterList2) {
|
for (BusinessAssayProjectAndParameterRespVO ep : projectAndParameterList2) {
|
||||||
map.put("e" + ep.getDicId(), ep);
|
map.put("e" + ep.getDicId(), ep);
|
||||||
|
|||||||
Reference in New Issue
Block a user