|
@@ -962,14 +962,17 @@ public class ZhcxInsideInspectionServiceImpl extends ServiceImpl<ZhcxInsideInspe
|
|
|
//获取执行派单对象
|
|
|
ZhcxInsideInspectionDispatchDo dispatch = dispatchService.getExecute(inOper, req);
|
|
|
|
|
|
+ List<String> descList = new ArrayList();
|
|
|
//核心检验指标
|
|
|
- insideInspectionCoreIndicatorsService.saveAndLog(insideId, req, descMap);
|
|
|
-
|
|
|
+ insideInspectionCoreIndicatorsService.saveAndLog(insideId, req, descList);
|
|
|
//细节完善项
|
|
|
- insideInspectionDetailImprovementItemService.saveAndLog(insideId, req, descMap);
|
|
|
-
|
|
|
+ insideInspectionDetailImprovementItemService.saveAndLog(insideId, req, descList);
|
|
|
//标书要点
|
|
|
- insideInspectionBiddingDocPointService.saveAndLog(insideId, req, descMap);
|
|
|
+ insideInspectionBiddingDocPointService.saveAndLog(insideId, req, descList);
|
|
|
+
|
|
|
+ if(ObjectUtil.isNotEmpty(descList)) {
|
|
|
+ descMap.put(insideId, StringUtils.join(descList, ";"));
|
|
|
+ }
|
|
|
|
|
|
//报验完成,只能修改时间
|
|
|
if("30".equals(inOper.getInspection().getInspectionstatus())) {
|