Commit afa5c16d authored by fangxinjiang's avatar fangxinjiang

项目规则配置-fxj

parent 2012dc39
......@@ -29,6 +29,12 @@ public class InsuranceExportListOneVO implements Serializable {
@Schema(description = "项目名称")
private String projectName;
/**
* 客户名称
*/
@Schema(description = "客户名称")
private String unitName;
/**
* 项目编码
*/
......
......@@ -221,4 +221,15 @@ public class InsuranceRefundListVo implements Serializable {
*/
@Schema(description = "是否地市自购")
private String isAdress;
/**
* 备注
*/
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty("备注")
@Schema(description = "备注")
private String remark;
}
......@@ -139,4 +139,11 @@ public class InsuranceReplaceParam implements Serializable {
@Schema(description = "是否地市自购")
private String isAdress;
/**
* 备注
*/
@Schema(description = "备注")
private String remark;
}
......@@ -82,6 +82,15 @@ public class InsuredListVo implements Serializable {
@ExcelProperty(value = "项目")
private String projectName;
/**
* 项目编码
*/
@Schema(description = "项目编码")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "项目编码")
private String deptNo;
/**
* 投保岗位
*/
......@@ -200,13 +209,6 @@ public class InsuredListVo implements Serializable {
@ExcelIgnore
private Integer reduceHandleStatus;
/**
* 项目编码
*/
@Schema(description = "项目编码")
@ExcelIgnore
private String deptNo;
/**
* 商险购买地省code
*/
......@@ -410,4 +412,12 @@ public class InsuredListVo implements Serializable {
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "是否地市自购")
private String isAdress;
/**
* 备注
*/
@Schema(description = "备注")
@HeadFontStyle(fontHeightInPoints = 11)
@ExcelProperty(value = "备注")
private String remark;
}
......@@ -530,8 +530,8 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
newDetail.setCreateName(user.getNickname());
//替换不参与结算
newDetail.setDefaultSettleId(null);
//替换不继承备注
newDetail.setRemark(null);
//替换不继承备注 20250331 fxj 替换模板新增备注字段不用清空
//newDetail.setRemark(null);
//替换不继承保单生效日期
newDetail.setPolicyEffect(null);
//保费都默认是0
......@@ -3709,6 +3709,8 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
}
//所有校验通过后设置查到的结果
//直接用excel里面的备注覆盖既有备注
detail.setRemark(param.getRemark());
param.setDetail(detail);
listSuccess.add(param);
}
......
......@@ -506,7 +506,7 @@
a.CREATE_NAME as createName,
a.POLICY_NO as policyNo,
a.REMARK as remark,
a.IS_ADRESS as isAdress
a.IS_ADRESS as isAdress,a.UNIT_NAME as unitName
from t_insurance_detail a
where a.DELETE_FLAG = 0 and a.id in
<foreach collection="idList" index="index" item="item" open="(" separator="," close=")">
......@@ -539,7 +539,7 @@
a.CREATE_NAME as createName,
a.POLICY_NO as policyNo,
a.REMARK as remark,
a.IS_ADRESS as isAdress
a.IS_ADRESS as isAdress,a.UNIT_NAME as unitName
from t_insurance_detail a
where a.DELETE_FLAG = 0 and a.BUY_HANDLE_STATUS = #{param.buyHandleStatus}
<if test="param.empName != null and param.empName.trim() != ''">
......@@ -729,7 +729,7 @@
a.CREATE_NAME as createName,
a.UNIT_NAME as unitName,
a.UNIT_NO as unitNo,
if(a.IS_ADRESS = '0','是',if(ifnull(a.IS_ADRESS,3) = 3,'','否')) as isAdress
if(a.IS_ADRESS = '0','是',if(ifnull(a.IS_ADRESS,3) = 3,'','否')) as isAdress,a.remark
from
t_insurance_detail a
where
......@@ -1005,7 +1005,7 @@
a.CREATE_NAME as createName,
refund.CREATE_TIME as refundCreateTime,
a.IS_EFFECT as isEffect,
a.IS_ADRESS as isAdress
a.IS_ADRESS as isAdress,refund.remark as remark
from
t_insurance_detail a,
t_insurance_refund refund
......
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