|
|
|
@ -389,6 +389,10 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
if(ObjectUtils.isNull(v.getCompletionRecordEntities()) ){ |
|
|
|
|
throw new ServiceException("赔款方数据不能为空"); |
|
|
|
|
} |
|
|
|
|
AftersalesWorkOrderEntity workOrderEntity1 = baseMapper.selectById(v.getId()); |
|
|
|
|
if(workOrderEntity1.getWorkOrderStatus().equals(WorkOrderStatusConstant.yiwanjei.getValue())){ |
|
|
|
|
throw new ServiceException(" 包含已完结的异常工单!"); |
|
|
|
|
} |
|
|
|
|
//添加赔付方信息
|
|
|
|
|
completionRecordService.saveBatch(v.getCompletionRecordEntities()); |
|
|
|
|
//添加受款方信息,可以为空
|
|
|
|
@ -1003,6 +1007,9 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
if(byId.getWorkOrderStatus().equals(WorkOrderStatusConstant.yichuli.getValue())){ |
|
|
|
|
throw new ServiceException("当前异常工单已处理!"); |
|
|
|
|
} |
|
|
|
|
if(byId.getWorkOrderStatus().equals(WorkOrderStatusConstant.yiwanjei.getValue())){ |
|
|
|
|
throw new ServiceException("当前异常工单已完结!!"); |
|
|
|
|
} |
|
|
|
|
AftersalesProcessingResultsDTO aftersalesProcessingResultsDTO = aftersalesWorkOrder.getAftersalesProcessingResultsDTO(); |
|
|
|
|
aftersalesProcessingResultsService.ownSaveOrUpdate(aftersalesProcessingResultsDTO); |
|
|
|
|
//添加完结数据
|
|
|
|
|