Commit e3924593 authored by huyuchen's avatar huyuchen

huych-入职登记商险待办提交

parent 84aa8b76
...@@ -648,6 +648,8 @@ public interface CommonConstants { ...@@ -648,6 +648,8 @@ public interface CommonConstants {
List<String> socialInfoStatus = Stream.of("1","3","5","7").collect(Collectors.toList()); List<String> socialInfoStatus = Stream.of("1","3","5","7").collect(Collectors.toList());
List<String> processInsurancesStatus = Stream.of("1","2","5").collect(Collectors.toList());
List<String> deptList = Stream.of("安徽一册档案管理有限公司","安徽顾合企业管理咨询有限公司","安徽赤道线数字传媒科技有限公司","劳务业务中心","易服智享&研究院").collect(Collectors.toList()); List<String> deptList = Stream.of("安徽一册档案管理有限公司","安徽顾合企业管理咨询有限公司","安徽赤道线数字传媒科技有限公司","劳务业务中心","易服智享&研究院").collect(Collectors.toList());
String USER_DIR = "user.dir"; String USER_DIR = "user.dir";
......
...@@ -92,6 +92,9 @@ public class TEmployeeInsurancePre extends BaseEntity { ...@@ -92,6 +92,9 @@ public class TEmployeeInsurancePre extends BaseEntity {
@Schema(description = "保单结束时间") @Schema(description = "保单结束时间")
private Date policyEnd; private Date policyEnd;
@Schema(description = "保单号")
private String policyNo;
@Schema(description = "是否地市自购0是 1 否") @Schema(description = "是否地市自购0是 1 否")
private String isAddress; private String isAddress;
......
package com.yifu.cloud.plus.v1.yifu.insurances.vo;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.io.Serializable;
import java.time.LocalDate;
/**
* @author licancan
* @description 商险办理批增入参
* @date 2022-07-20 08:43:31
*/
@Data
@Schema(description = "商险办理单个/批量批增入参")
public class InsuranceAutoParam implements Serializable {
private static final long serialVersionUID = -2689686777914935788L;
/**
* 项目id
*/
@Schema(description = "项目id")
private String deptId;
/**
* 项目编码
*/
@Schema(description = "项目编码")
private String deptNo;
/**
* 员工姓名
*/
@Schema(description = "员工姓名")
private String empName;
/**
* 员工身份证号
*/
@Schema(description = "员工身份证号")
private String empIdcardNo;
/**
* 岗位
*/
@Schema(description = "岗位")
private String post;
/**
* 保单号
*/
@Schema(description = "保单号")
private String policyNo;
/**
* 保险公司名称
*/
@Schema(description = "保险公司名称")
private String insuranceCompanyName;
/**
* 险种名称
*/
@Schema(description = "险种名称")
private String insuranceTypeName;
/**
* 购买标准
*/
@Schema(description = "购买标准")
private String buyStandard;
/**
* 商险购买地省名称
*/
@Schema(description = "商险购买地省名称")
private String insuranceProvinceName;
/**
* 商险购买地市名称
*/
@Schema(description = "商险购买地市名称")
private String insuranceCityName;
/**
* 商险办理省名称
*/
@Schema(description = "商险办理省名称")
private String insuranceHandleProvinceName;
/**
* 商险办理城市名称
*/
@Schema(description = "商险办理城市名称")
private String insuranceHandleCityName;
/**
* 结算月
*/
@Schema(description = "结算月")
private String settleMonth;
/**
* 备注
*/
@Schema(description = "备注")
private String remark;
/**
* 错误信息
*/
@Schema(description = "错误信息")
private String errorMessage;
/**
* 结算类型 (1、单独结算 2、合并结算-和工资一起结算)
*/
@Schema(description = "结算类型")
private Integer settleType;
/**
* 保单开始时间
*/
@Schema(description = "保单开始时间")
private LocalDate policyStart;
/**
* 保单结束时间
*/
@Schema(description = "保单结束时间")
private LocalDate policyEnd;
/**
* 替换员工姓名
*/
@Schema(description = "替换员工姓名")
private String replaceEmpName;
/**
* 替换员工身份证号
*/
@Schema(description = "替换员工身份证号")
private String replaceEmpIdcardNo;
/**
* 替换员工项目编码
*/
@Schema(description = "替换员工项目编码")
private String replaceDeptNo;
}
...@@ -110,7 +110,7 @@ public class TEmployeeInsurancePreController { ...@@ -110,7 +110,7 @@ public class TEmployeeInsurancePreController {
} }
/** /**
* 商险待办任务表 批量导出 * 商险派单信息单个/批量确认
* @author huych * @author huych
* @date 2025-03-31 12:25:13 * @date 2025-03-31 12:25:13
**/ **/
...@@ -119,4 +119,16 @@ public class TEmployeeInsurancePreController { ...@@ -119,4 +119,16 @@ public class TEmployeeInsurancePreController {
public R confirm(@RequestBody List<String> idList) { public R confirm(@RequestBody List<String> idList) {
return tEmployeeInsurancePreService.confirm(idList); return tEmployeeInsurancePreService.confirm(idList);
} }
/**
* 商险派单信息批量派单
* @author huych
* @date 2025-03-31 12:25:13
**/
@Operation(description = "商险派单信息单个/批量派单")
@PostMapping("/batchDispatcherInsurance")
public R batchDispatcherInsurance(@RequestBody List<String> idList) {
return tEmployeeInsurancePreService.batchDispatcherInsurance(idList);
}
} }
...@@ -49,10 +49,17 @@ public interface TEmployeeInsurancePreService extends IService<TEmployeeInsuranc ...@@ -49,10 +49,17 @@ public interface TEmployeeInsurancePreService extends IService<TEmployeeInsuranc
void listExport(HttpServletResponse response, TEmployeeInsurancePreSearchVo searchVo); void listExport(HttpServletResponse response, TEmployeeInsurancePreSearchVo searchVo);
/** /**
* 商险待办任务表简单分页查询 * 商险派单信息单个/批量确认
* @param idList id集合 * @param idList id集合
* @return * @return
*/ */
R confirm(List<String> idList); R confirm(List<String> idList);
/**
* 商险派单信息批量派单
* @param idList id集合
* @return
*/
R batchDispatcherInsurance(List<String> idList);
} }
...@@ -20,8 +20,9 @@ import com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils; ...@@ -20,8 +20,9 @@ import com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils;
import com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePre; import com.yifu.cloud.plus.v1.yifu.insurances.entity.TEmployeeInsurancePre;
import com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreMapper; import com.yifu.cloud.plus.v1.yifu.insurances.mapper.insurances.TEmployeeInsurancePreMapper;
import com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TEmployeeInsurancePreService; import com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TEmployeeInsurancePreService;
import com.yifu.cloud.plus.v1.yifu.insurances.vo.TEmployeeInsurancePreExportVo; import com.yifu.cloud.plus.v1.yifu.insurances.service.insurance.TInsuranceDetailService;
import com.yifu.cloud.plus.v1.yifu.insurances.vo.TEmployeeInsurancePreSearchVo; import com.yifu.cloud.plus.v1.yifu.insurances.util.LocalDateUtil;
import com.yifu.cloud.plus.v1.yifu.insurances.vo.*;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import lombok.extern.log4j.Log4j2; import lombok.extern.log4j.Log4j2;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
...@@ -32,6 +33,8 @@ import javax.servlet.http.HttpServletResponse; ...@@ -32,6 +33,8 @@ import javax.servlet.http.HttpServletResponse;
import java.net.URLEncoder; import java.net.URLEncoder;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.Stream;
/** /**
* 商险待办任务表 * 商险待办任务表
...@@ -47,6 +50,8 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur ...@@ -47,6 +50,8 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
@Autowired @Autowired
private ArchivesDaprUtil archivesDaprUtil; private ArchivesDaprUtil archivesDaprUtil;
private final TInsuranceDetailService detailService;
/** /**
* 商险待办任务表简单分页查询 * 商险待办任务表简单分页查询
* *
...@@ -123,6 +128,104 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur ...@@ -123,6 +128,104 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
return R.ok(); return R.ok();
} }
@Override
public R batchDispatcherInsurance(List<String> idList) {
List<TEmployeeInsurancePre> insurancePreList = baseMapper.selectList(Wrappers.<TEmployeeInsurancePre>query()
.lambda().in(TEmployeeInsurancePre::getId, idList)
.in(TEmployeeInsurancePre::getProcessStatus, CommonConstants.processInsurancesStatus));
if (Common.isEmpty(insurancePreList)) {
return R.failed(CommonConstants.NO_DATA_TO_HANDLE);
}
List<InsuranceAddParam> addParamList = new ArrayList<>();
List<InsuranceBatchParam> batchAddParamList = new ArrayList<>();
List<InsuranceReplaceParam> replaceAddParamList = new ArrayList<>();
for (TEmployeeInsurancePre insurancePre : insurancePreList) {
//新增、批增、替换
if (CommonConstants.ONE_INT == insurancePre.getBuyType()) {
InsuranceAddParam addParam = new InsuranceAddParam();
addParam.setEmpName(insurancePre.getEmployeeName());
addParam.setEmpIdcardNo(insurancePre.getEmpIdcard());
addParam.setDeptNo(insurancePre.getDeptNo());
addParam.setInsuranceCompanyName(insurancePre.getInsuranceCompanyName());
addParam.setInsuranceTypeName(insurancePre.getInsuranceTypeName());
addParam.setPolicyStart(DateUtil.dateToString(insurancePre.getPolicyStart(),DateUtil.ISO_EXPANDED_DATE_FORMAT));
addParam.setPolicyEnd(DateUtil.dateToString(insurancePre.getPolicyEnd(),DateUtil.ISO_EXPANDED_DATE_FORMAT));
addParam.setBuyStandard(insurancePre.getBuyStandard());
addParam.setInsuranceProvinceName(insurancePre.getFileProvince());
addParam.setInsuranceCityName(insurancePre.getFileCity());
addParam.setSettleMonth(CommonConstants.EMPTY_STRING);
addParam.setPost(insurancePre.getPosition());
addParam.setRemark(CommonConstants.EMPTY_STRING);
addParamList.add(addParam);
}
if (CommonConstants.TWO_INT == insurancePre.getBuyType()) {
InsuranceBatchParam addParam = new InsuranceBatchParam();
addParam.setEmpName(insurancePre.getEmployeeName());
addParam.setEmpIdcardNo(insurancePre.getEmpIdcard());
addParam.setDeptNo(insurancePre.getDeptNo());
addParam.setInsuranceCompanyName(insurancePre.getInsuranceCompanyName());
addParam.setInsuranceTypeName(insurancePre.getInsuranceTypeName());
addParam.setPolicyNo(insurancePre.getPolicyNo());
addParam.setBuyStandard(insurancePre.getBuyStandard());
addParam.setInsuranceProvinceName(insurancePre.getFileProvince());
addParam.setInsuranceCityName(insurancePre.getFileCity());
addParam.setSettleMonth(CommonConstants.EMPTY_STRING);
addParam.setPost(insurancePre.getPosition());
addParam.setRemark(CommonConstants.EMPTY_STRING);
batchAddParamList.add(addParam);
}
if (CommonConstants.THREE_INT == insurancePre.getBuyType()) {
InsuranceReplaceParam addParam = new InsuranceReplaceParam();
addParam.setEmpName(insurancePre.getEmployeeName());
addParam.setEmpIdcardNo(insurancePre.getEmpIdcard());
addParam.setDeptNo(insurancePre.getDeptNo());
addParam.setInsuranceCompanyName(insurancePre.getInsuranceCompanyName());
addParam.setInsuranceTypeName(insurancePre.getInsuranceTypeName());
addParam.setBuyStandard(insurancePre.getBuyStandard());
addParam.setPolicyStart(DateUtil.dateToString(insurancePre.getPolicyStart(),DateUtil.ISO_EXPANDED_DATE_FORMAT));
addParam.setPolicyEnd(DateUtil.dateToString(insurancePre.getPolicyEnd(),DateUtil.ISO_EXPANDED_DATE_FORMAT));
addParam.setPost(insurancePre.getPosition());
addParam.setReplaceEmpName(insurancePre.getReplaceEmployeeName());
addParam.setReplaceDeptNo(insurancePre.getReplaceDeptNo());
addParam.setReplaceEmpIdcardNo(insurancePre.getReplaceEmpIdcard());
//todo
// addParam.setRemark(CommonConstants.EMPTY_STRING);
replaceAddParamList.add(addParam);
}
}
//组装返回给前端
List<InsuranceAddParam> paramList = new ArrayList<>();
List<InsuranceBatchParam> batchParamList = new ArrayList<>();
List<InsuranceReplaceParam> replaceParamList = new ArrayList<>();
if (!addParamList.isEmpty()) {
R<List<InsuranceAddParam>> listR = detailService.addInsurance(addParamList,null);
if (Common.isNotNull(listR) && !listR.getData().isEmpty()) {
paramList = listR.getData();
}
}
if (!batchAddParamList.isEmpty()) {
R<List<InsuranceBatchParam>> listR = detailService.batchInsurance(batchAddParamList,null);
if (Common.isNotNull(listR) && !listR.getData().isEmpty()) {
batchParamList = listR.getData();
}
}
if (!replaceAddParamList.isEmpty()) {
R<List<InsuranceReplaceParam>> listR = detailService.replaceInsurance(replaceAddParamList,null);
if (Common.isNotNull(listR) && !listR.getData().isEmpty()) {
replaceParamList = listR.getData();
}
}
// 使用Stream合并三个列表
List<InsuranceAutoParam> autoAddParamList = Stream.concat(
paramList.stream().map(this::convertAddParam),
Stream.concat(
batchParamList.stream().map(this::convertBatchParam),
replaceParamList.stream().map(this::convertReplaceParam)
)
).collect(Collectors.toList());
return R.ok(autoAddParamList);
}
/** /**
* @Description: 获取前端客服的所有项目权限 * @Description: 获取前端客服的所有项目权限
...@@ -160,4 +263,59 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur ...@@ -160,4 +263,59 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
return false; return false;
} }
private InsuranceAutoParam convertAddParam(InsuranceAddParam addParam) {
InsuranceAutoParam autoParam = new InsuranceAutoParam();
// 复制InsuranceAddParam的字段
autoParam.setEmpName(addParam.getEmpName());
autoParam.setEmpIdcardNo(addParam.getEmpIdcardNo());
autoParam.setDeptNo(addParam.getDeptNo());
autoParam.setInsuranceCompanyName(addParam.getInsuranceCompanyName());
autoParam.setInsuranceTypeName(addParam.getInsuranceTypeName());
autoParam.setPolicyStart(LocalDateUtil.parseLocalDate(addParam.getPolicyStart()));
autoParam.setPolicyEnd(LocalDateUtil.parseLocalDate(addParam.getPolicyEnd()));
autoParam.setBuyStandard(addParam.getBuyStandard());
autoParam.setInsuranceProvinceName(addParam.getInsuranceProvinceName());
autoParam.setInsuranceCityName(addParam.getInsuranceCityName());
autoParam.setSettleMonth(addParam.getSettleMonth());
autoParam.setPost(addParam.getPost());
autoParam.setRemark(addParam.getRemark());
return autoParam;
}
private InsuranceAutoParam convertBatchParam(InsuranceBatchParam batchParam) {
InsuranceAutoParam autoParam = new InsuranceAutoParam();
// 复制InsuranceBatchParam的字段
autoParam.setEmpName(batchParam.getEmpName());
autoParam.setEmpIdcardNo(batchParam.getEmpIdcardNo());
autoParam.setDeptNo(batchParam.getDeptNo());
autoParam.setInsuranceCompanyName(batchParam.getInsuranceCompanyName());
autoParam.setInsuranceTypeName(batchParam.getInsuranceTypeName());
autoParam.setPolicyNo(batchParam.getPolicyNo());
autoParam.setBuyStandard(batchParam.getBuyStandard());
autoParam.setInsuranceProvinceName(batchParam.getInsuranceProvinceName());
autoParam.setInsuranceCityName(batchParam.getInsuranceCityName());
autoParam.setSettleMonth(batchParam.getSettleMonth());
autoParam.setPost(batchParam.getPost());
autoParam.setRemark(batchParam.getRemark());
return autoParam;
}
private InsuranceAutoParam convertReplaceParam(InsuranceReplaceParam replaceParam) {
InsuranceAutoParam autoParam = new InsuranceAutoParam();
// 复制InsuranceReplaceParam的字段
autoParam.setEmpName(replaceParam.getEmpName());
autoParam.setEmpIdcardNo(replaceParam.getEmpIdcardNo());
autoParam.setDeptNo(replaceParam.getDeptNo());
autoParam.setInsuranceCompanyName(replaceParam.getInsuranceCompanyName());
autoParam.setInsuranceTypeName(replaceParam.getInsuranceTypeName());
autoParam.setBuyStandard(replaceParam.getBuyStandard());
autoParam.setPolicyStart(LocalDateUtil.parseLocalDate(replaceParam.getPolicyStart()));
autoParam.setPolicyEnd(LocalDateUtil.parseLocalDate(replaceParam.getPolicyEnd()));
autoParam.setPost(replaceParam.getPost());
autoParam.setReplaceEmpName(replaceParam.getReplaceEmpName());
autoParam.setReplaceDeptNo(replaceParam.getReplaceDeptNo());
autoParam.setReplaceEmpIdcardNo(replaceParam.getReplaceEmpIdcardNo());
return autoParam;
}
} }
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
<result property="buyType" column="buy_type"/> <result property="buyType" column="buy_type"/>
<result property="policyStart" column="policy_start"/> <result property="policyStart" column="policy_start"/>
<result property="policyEnd" column="policy_end"/> <result property="policyEnd" column="policy_end"/>
<result property="policyNo" column="policy_no"/>
<result property="isAddress" column="is_address"/> <result property="isAddress" column="is_address"/>
<result property="position" column="position"/> <result property="position" column="position"/>
<result property="dataSource" column="data_source"/> <result property="dataSource" column="data_source"/>
...@@ -100,7 +101,7 @@ ...@@ -100,7 +101,7 @@
a.create_name, a.create_name,
a.create_time, a.create_time,
a.update_by, a.update_by,
a.update_time a.update_time,a.policy_no
</sql> </sql>
<sql id="tEmployeeInsurancePre_where"> <sql id="tEmployeeInsurancePre_where">
<if test="tEmployeeInsurancePre != null"> <if test="tEmployeeInsurancePre != null">
......
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