更新
This commit is contained in:
@@ -2975,7 +2975,8 @@ public class EntrustmentServiceImpl extends ServiceImpl<EntrustmentMapper, Entru
|
||||
entrustmentIdentificationMaterialQuantity += entrustmentIdentificationMaterialList.size();
|
||||
}
|
||||
|
||||
markersVOS.add(new MarkersVO("案件委托", entrustmentIdentificationMaterialQuantity, "", "EntrustmentCreate"));
|
||||
markersVOS.add(new MarkersVO("案件委托检材", entrustmentIdentificationMaterialQuantity, "", "EntrustmentCreate"));
|
||||
|
||||
R<Integer> imQuantity = remoteSewageJobService.getIMQuantity(dlpUser.getOrgId());
|
||||
if (imQuantity.getCode() == CommonConstants.SUCCESS) {
|
||||
sewageJobIdentificationMaterialQuantity = imQuantity.getData();
|
||||
@@ -2983,14 +2984,14 @@ public class EntrustmentServiceImpl extends ServiceImpl<EntrustmentMapper, Entru
|
||||
log.error("查询这个账户(机构)下面所送检且已受理的所有污水检材的数量 失败!失败原因:{}", imQuantity.getMsg());
|
||||
sewageJobIdentificationMaterialQuantity = 0;
|
||||
}
|
||||
markersVOS.add(new MarkersVO("污水送检", sewageJobIdentificationMaterialQuantity, "", "SewageJobGet"));
|
||||
markersVOS.add(new MarkersVO("污水送检检材", sewageJobIdentificationMaterialQuantity, "", "SewageJobGet"));
|
||||
|
||||
|
||||
try {
|
||||
R<Integer> sampleQuantity = remoteHairJobService.getSampleQuantity(orgId, 2);
|
||||
if (sampleQuantity.getCode() == 0) {
|
||||
hairJobIdentificationMaterialQuantity = sampleQuantity.getData();
|
||||
markersVOS.add(new MarkersVO("毛发送检", hairJobIdentificationMaterialQuantity, "", "HairJobGet"));
|
||||
markersVOS.add(new MarkersVO("毛发送检检材", hairJobIdentificationMaterialQuantity, "", "HairJobGet"));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
@@ -3000,7 +3001,7 @@ public class EntrustmentServiceImpl extends ServiceImpl<EntrustmentMapper, Entru
|
||||
R<Integer> data = remoteAcceptanceService.getEventByUser(dlpUser.getId());
|
||||
if (data.getCode() == 0) {
|
||||
acceptanceIdentificationMaterialQuantity = data.getData();
|
||||
markersVOS.add(new MarkersVO("事件送检", acceptanceIdentificationMaterialQuantity, "", "ima_event"));
|
||||
markersVOS.add(new MarkersVO("事件送检检材", acceptanceIdentificationMaterialQuantity, "", "ima_event"));
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
|
||||
Reference in New Issue
Block a user