|
|
@@ -539,6 +539,7 @@ public class ConstructionManage { |
|
|
|
vo.setPreliminaryInspectionMaterials(w.getPreliminaryInspectionMaterials()); |
|
|
|
vo.setIsCompletedLogCollection(w.getIsCompletedLogCollection()); |
|
|
|
vo.setActualPerformanceIndicators(w.getActualPerformanceIndicators()); |
|
|
|
vo.setUnitOnePlatformImages(w.getUnitOnePlatformImages()); |
|
|
|
List<PreInsAcceptancePerson> persons = personMap.get(w.getId()); |
|
|
|
if (persons != null) { |
|
|
|
vo.setAcceptancePersons(convertPersons(persons)); |
|
|
@@ -558,7 +559,7 @@ public class ConstructionManage { |
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public synchronized void submitFirstInspectedFiles(PreInsSaveDTO req) { |
|
|
|
UserInfoDetails user = LoginUserUtil.userDetail(); |
|
|
|
UserInfoDetails user = LoginUserUtil.userDetailNotNull(); |
|
|
|
Purchase purchase = purchaseService.getById(req.getBidId()); |
|
|
|
if (!TenderMainStatus.TO_BE_SUBMIT_FIRST_INSPECTED_INFO.eq(purchase.getStatus())) { |
|
|
|
throw BizException.wrap("该标段无法上传初验材料"); |
|
|
@@ -589,6 +590,7 @@ public class ConstructionManage { |
|
|
|
purchase.setPreliminaryInspectionMaterials(req.getPreliminaryInspectionMaterials()); |
|
|
|
purchase.setIsCompletedLogCollection(req.getIsCompletedLogCollection()); |
|
|
|
purchase.setActualPerformanceIndicators(req.getActualPerformanceIndicators()); |
|
|
|
purchase.setUnitOnePlatformImages(req.getUnitOnePlatformImages()); |
|
|
|
purchaseService.updateById(purchase); |
|
|
|
// 判断是否所有标段都上传了初验材料 |
|
|
|
LambdaQueryWrapper<Purchase> purchaseQuery = Wrappers.lambdaQuery(Purchase.class) |
|
|
@@ -668,7 +670,7 @@ public class ConstructionManage { |
|
|
|
VUtils.isTrue(CollUtil.isNotEmpty(tasks)).throwMessage("此信创符合性已经发起过审核 并且还没审核完!"); |
|
|
|
} |
|
|
|
|
|
|
|
UserInfoDetails user = LoginUserUtil.userDetail(); |
|
|
|
UserInfoDetails user = LoginUserUtil.userDetailNotNull(); |
|
|
|
WflowModels model = processModelManage.getWflowModelsNoNull(ProjectProcessType.XC_APPROVAL_PROCESS, |
|
|
|
user.getMhUnitId()); |
|
|
|
|
|
|
|