|
|
|
@ -42,6 +42,7 @@ import lombok.AllArgsConstructor;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.jetbrains.annotations.NotNull; |
|
|
|
|
import org.springblade.common.constant.DictBizConstant; |
|
|
|
|
import org.springblade.common.constant.aftersales.ProcessorTypesOfStatusConstant; |
|
|
|
|
import org.springblade.common.constant.aftersales.WorkOrderStatusConstant; |
|
|
|
|
import org.springblade.common.constant.aftersales.WorkOrderTypesOfStatusConstant; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
@ -264,6 +265,20 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
packageEntity.setProcessingStatus("1");//待处理
|
|
|
|
|
packageEntity.setWarehouseId(myCurrentWarehouse.getId()); |
|
|
|
|
list.add(packageEntity); |
|
|
|
|
//添加记录
|
|
|
|
|
if(ProcessorTypesOfStatusConstant.chulifang.getValue().equals(i.getProcessingStatus())){ |
|
|
|
|
//处理方
|
|
|
|
|
AftersaleSurveyRecordDTO surveyRecordDTO = changName(aftersalesWorkOrder, user); |
|
|
|
|
surveyRecordDTO.setWorkOrderId(aftersalesWorkOrder.getId()); |
|
|
|
|
surveyRecordDTO.setContent(aftersalesWorkOrder.getSurveyRecordDTO().getContent());//内容
|
|
|
|
|
surveyRecordDTO.setTypesOf("1"); |
|
|
|
|
surveyRecordDTO.setDifference("2"); |
|
|
|
|
surveyRecordDTO.setFollowWarehouseName(i.getBusinessName()); |
|
|
|
|
surveyRecordDTO.setFollowWarehouseId(i.getBusinessId()); |
|
|
|
|
|
|
|
|
|
aftersaleSurveyRecordService.saveOrUpdateOwn(surveyRecordDTO); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
if(!list.isEmpty()){ |
|
|
|
|
aftersalesProcessorService.saveBatch(list); |
|
|
|
@ -285,10 +300,67 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//添加调查记录
|
|
|
|
|
if(ObjectUtils.isNotNull(aftersalesWorkOrder.getSurveyRecordDTO())){ |
|
|
|
|
AftersaleSurveyRecordDTO surveyRecordDTO = changName(aftersalesWorkOrder, user); |
|
|
|
|
AftersaleSurveyRecordEntity aftersaleSurveyRecord = new AftersaleSurveyRecordEntity(); |
|
|
|
|
BeanUtil.copyProperties(surveyRecordDTO,aftersaleSurveyRecord); |
|
|
|
|
aftersaleSurveyRecord.setTypesOf("1"); |
|
|
|
|
aftersaleSurveyRecord.setDifference("1"); |
|
|
|
|
aftersaleSurveyRecord.setWorkOrderId(aftersalesWorkOrder.getId()); |
|
|
|
|
aftersaleSurveyRecordService.save(aftersaleSurveyRecord); |
|
|
|
|
} |
|
|
|
|
//添加责任人信息
|
|
|
|
|
if(ObjectUtils.isNotNull(aftersalesWorkOrder.getPersonResponsibleDTO()) && !aftersalesWorkOrder.getPersonResponsibleDTO().isEmpty()){ |
|
|
|
|
List<AftersalesPersonResponsibleEntity> personResponsibleList = getAftersalesPersonResponsibleEntities(aftersalesWorkOrder); |
|
|
|
|
if(!personResponsibleList.isEmpty()){ |
|
|
|
|
aftersalesPersonResponsibleService.saveBatch(personResponsibleList); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//添加完结受款方数据
|
|
|
|
|
if(ObjectUtils.isNotNull(aftersalesWorkOrder.getCompletionRecipientEntities())){ |
|
|
|
|
completionRecordService.saveBatch(aftersalesWorkOrder.getCompletionRecordEntities()); |
|
|
|
|
} |
|
|
|
|
//添加完结赔款方数据
|
|
|
|
|
if(ObjectUtils.isNotNull(aftersalesWorkOrder.getCompletionRecordEntities())){ |
|
|
|
|
completionRecordService.saveBatch(aftersalesWorkOrder.getCompletionRecordEntities()); |
|
|
|
|
} |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询调查记录的部分信息 |
|
|
|
|
* @param aftersalesWorkOrder |
|
|
|
|
* @param user |
|
|
|
|
* @return |
|
|
|
|
*/ |
|
|
|
|
private AftersaleSurveyRecordDTO changName(AftersalesWorkOrderDTO aftersalesWorkOrder, BladeUser user) { |
|
|
|
|
AftersaleSurveyRecordDTO surveyRecordDTO = aftersalesWorkOrder.getSurveyRecordDTO(); |
|
|
|
|
surveyRecordDTO.setAddPeople(user.getUserName()); |
|
|
|
|
R<List<String>> deptNames = sysClient.getDeptNames(user.getDeptId()); |
|
|
|
|
if(ObjectUtils.isNotNull(deptNames)){ |
|
|
|
|
String collect = deptNames.getData().stream().collect(Collectors.joining(",")); |
|
|
|
|
surveyRecordDTO.setAddDepartment(collect); |
|
|
|
|
} |
|
|
|
|
return surveyRecordDTO; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
|
//添加责任人信息
|
|
|
|
|
@NotNull |
|
|
|
|
private static List<AftersalesPersonResponsibleEntity> getAftersalesPersonResponsibleEntities(AftersalesWorkOrderDTO aftersalesWorkOrder) { |
|
|
|
|
List<AftersalesPersonResponsibleDTO> personResponsibleDTO = aftersalesWorkOrder.getPersonResponsibleDTO(); |
|
|
|
|
List<AftersalesPersonResponsibleEntity> personResponsibleList = new ArrayList<>(); |
|
|
|
|
|
|
|
|
|
personResponsibleDTO.forEach( i ->{ |
|
|
|
|
AftersalesPersonResponsibleEntity personResponsibleEntity = new AftersalesPersonResponsibleEntity(); |
|
|
|
|
BeanUtil.copyProperties(i , personResponsibleEntity); |
|
|
|
|
personResponsibleEntity.setDifference("1"); |
|
|
|
|
personResponsibleEntity.setTypesOf("1"); |
|
|
|
|
personResponsibleEntity.setWordOrderId(aftersalesWorkOrder.getId()); |
|
|
|
|
personResponsibleList.add(personResponsibleEntity); |
|
|
|
|
}); |
|
|
|
|
return personResponsibleList; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -348,23 +420,22 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
throw new ServiceException("注意,注意!售后访问字典未配置!请配置!"); |
|
|
|
|
} else { |
|
|
|
|
Optional<DictBiz> first = warehouseType.stream().filter(i -> { |
|
|
|
|
if (i.getDictKey().equals(roleName)) { |
|
|
|
|
if (i.getDictValue().equals(roleName)) { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
return false; |
|
|
|
|
}).findFirst(); |
|
|
|
|
if(first.isPresent()){ |
|
|
|
|
//存在
|
|
|
|
|
DictBiz dictBiz = first.get(); |
|
|
|
|
String dictValue = dictBiz.getDictValue(); |
|
|
|
|
String dictValue = first.get().getDictKey(); |
|
|
|
|
switch (dictValue){ |
|
|
|
|
case "1": //客服经理 查询全部待处理工单
|
|
|
|
|
|
|
|
|
|
aftersalesWorkOrder.put("customerIdentification", "1"); |
|
|
|
|
break; |
|
|
|
|
case "2": // 营业部客服
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(ObjectUtils.isNotNull(myCurrentWarehouse)){ |
|
|
|
|
aftersalesWorkOrder.put("warehouseId", myCurrentWarehouse.getId()); |
|
|
|
|
aftersalesWorkOrder.put("businessId", myCurrentWarehouse.getId()); |
|
|
|
|
}else{ |
|
|
|
|
throw new ServiceException("请选择仓库!"); |
|
|
|
|
} |
|
|
|
@ -378,7 +449,7 @@ public class AftersalesWorkOrderServiceImpl extends BaseServiceImpl<AftersalesWo
|
|
|
|
|
//不存在
|
|
|
|
|
BasicdataWarehouseEntity myCurrentWarehouse = warehouseClient.getMyCurrentWarehouse(); |
|
|
|
|
if(ObjectUtils.isNotNull(myCurrentWarehouse)){ |
|
|
|
|
aftersalesWorkOrder.put("warehouseId", myCurrentWarehouse.getId()); |
|
|
|
|
aftersalesWorkOrder.put("businessId", myCurrentWarehouse.getId()); |
|
|
|
|
}else{ |
|
|
|
|
throw new ServiceException("请选择仓库!"); |
|
|
|
|
} |
|
|
|
|