Commit 2d100692 authored by fangxinjiang's avatar fangxinjiang

商险提醒优化-fxj

parent d4ea6ff6
...@@ -83,10 +83,15 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu ...@@ -83,10 +83,15 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
@Autowired @Autowired
private TAutoInsurRuleInfoMapper autoInsurRuleInfoMapper; private TAutoInsurRuleInfoMapper autoInsurRuleInfoMapper;
@Autowired
private TAutoInsurStandardMapper autoInsurStandardMapper;
public static final String itemsLabel = "label,description,disable"; public static final String itemsLabel = "label,description,disable";
public static final String itemsLabelRepeat = "同一项目岗位名称不可重复"; public static final String itemsLabelRepeat = "同一项目岗位名称不可重复";
public static final String buyStandardRepeat = "同一保险公司+险种+购买标准+购买地不可重复";
/** /**
* 项目配置表主表简单分页查询 * 项目配置表主表简单分页查询
* @param tAutoMainRel 项目配置表主表 * @param tAutoMainRel 项目配置表主表
...@@ -286,6 +291,21 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu ...@@ -286,6 +291,21 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
return R.failed(errorMessage.getMessage()); return R.failed(errorMessage.getMessage());
} }
} }
//校验商险购买标准
List<TAutoInsurStandard> insurStandards = entity.getInsurStandards();
if (Common.isNotNull(insurStandards)){
ExcelUtil<TAutoInsurStandard> excelUtil = new ExcelUtil<>(TAutoInsurStandard.class);
ErrorMessage errorMessage;
for (TAutoInsurStandard standard:insurStandards){
errorMessage = excelUtil.checkEntity(standard,0);
if (Common.isNotNull(errorMessage)){
return R.failed(errorMessage.getMessage());
}
}
}
if (!checkInsurStandardsForDuplicates(insurStandards)){
return R.failed(buyStandardRepeat);
}
// 校验字典项是否有重复标签 // 校验字典项是否有重复标签
List<SysAutoDictItem> autoDictItems = entity.getAutoDictItems(); List<SysAutoDictItem> autoDictItems = entity.getAutoDictItems();
if (!checkDictItemsForDuplicates(autoDictItems)) { if (!checkDictItemsForDuplicates(autoDictItems)) {
...@@ -316,19 +336,40 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu ...@@ -316,19 +336,40 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
autoEmpRuleInfo.setMainId(autoMainRel.getId()); autoEmpRuleInfo.setMainId(autoMainRel.getId());
autoEmpRuleInfoMapper.insert(autoEmpRuleInfo); autoEmpRuleInfoMapper.insert(autoEmpRuleInfo);
} }
//新增档案规则 //新增商险规则
if (Common.isNotNull(autoInsurRuleInfo)){ if (Common.isNotNull(autoInsurRuleInfo)){
autoInsurRuleInfo.setDeptNo(autoMainRel.getDeptNo()); autoInsurRuleInfo.setDeptNo(autoMainRel.getDeptNo());
autoInsurRuleInfo.setDeptId(autoMainRel.getDeptId()); autoInsurRuleInfo.setDeptId(autoMainRel.getDeptId());
autoInsurRuleInfo.setMainId(autoMainRel.getId()); autoInsurRuleInfo.setMainId(autoMainRel.getId());
autoInsurRuleInfoMapper.insert(autoInsurRuleInfo); autoInsurRuleInfoMapper.insert(autoInsurRuleInfo);
} }
//新增商险购买标准
if (Common.isNotNull(insurStandards)){
for (TAutoInsurStandard standard:insurStandards){
standard.setMainId(autoInsurRuleInfo.getId());
autoInsurStandardMapper.insert(standard);
}
}
return R.ok(); return R.ok();
}catch (Exception e){ }catch (Exception e){
// 捕获异常并返回友好提示 // 捕获异常并返回友好提示
return R.failed("系统异常:" + e.getMessage()); return R.failed("系统异常:" + e.getMessage());
} }
} }
private boolean checkInsurStandardsForDuplicates(List<TAutoInsurStandard> insurStandards) {
if (Common.isNotNull(insurStandards)) {
Map<String,String> map = new HashMap<>();
for (TAutoInsurStandard standard : insurStandards) {
if (map.put(standard.getCompany() + standard.getRiskType() + standard.getStandard(), "") != null){
return true;
}
}
map.clear();
}
return false;
}
/** /**
* 检查字典项是否有重复标签 * 检查字典项是否有重复标签
*/ */
...@@ -407,6 +448,41 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu ...@@ -407,6 +448,41 @@ public class TAutoMainRelServiceImpl extends ServiceImpl<TAutoMainRelMapper, TAu
return R.failed(errorMessage.getMessage()); return R.failed(errorMessage.getMessage());
} }
} }
//校验商险规则信息
TAutoInsurRuleInfo autoInsurRuleNew = entity.getAutoInsurRuleInfo();
TAutoInsurRuleInfo autoInsurRuleOld = null;
if (Common.isNotNull(autoInsurRuleNew)){
// 如果商险规则信息的ID为空,则返回参数错误的响应
if (!Common.isNotNull(autoInsurRuleNew.getId())){
return R.failed(CommonConstants.PARAM_IS_NOT_ERROR);
}
// 检查商险规则信息的有效性
ExcelUtil<TAutoInsurRuleInfo> excelUtil = new ExcelUtil<>(TAutoInsurRuleInfo.class);
ErrorMessage errorMessage = excelUtil.checkEntity(autoInsurRuleNew,0);
if (Common.isNotNull(errorMessage)){
return R.failed(errorMessage.getMessage());
}
// 根据ID查询原有的商险规则信息
autoInsurRuleOld = autoInsurRuleInfoMapper.selectById(autoEmpRuleNew.getId());
}
//校验商险购买标准
List<TAutoInsurStandard> insurStandards = entity.getInsurStandards();
if (Common.isNotNull(insurStandards)){
ExcelUtil<TAutoInsurStandard> excelUtil = new ExcelUtil<>(TAutoInsurStandard.class);
ErrorMessage errorMessage;
for (TAutoInsurStandard standard:insurStandards){
errorMessage = excelUtil.checkEntity(standard,0);
if (Common.isNotNull(errorMessage)){
return R.failed(errorMessage.getMessage());
}
}
}
if (!checkInsurStandardsForDuplicates(insurStandards)){
return R.failed(buyStandardRepeat);
}
// 获取旧的商险标准
List<TAutoInsurStandard> insurStandardsOld = autoInsurStandardMapper.selectList(Wrappers
.<TAutoInsurStandard>query().lambda().eq(TAutoInsurStandard::getMainId,autoInsurRuleNew.getId()));
// 更新岗位字典 // 更新岗位字典
List<SysAutoDictItem> autoDictItems = entity.getAutoDictItems(); List<SysAutoDictItem> autoDictItems = entity.getAutoDictItems();
Map<String,SysAutoDictItem> repeatItems = new HashMap<>(); Map<String,SysAutoDictItem> repeatItems = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment