Commit 6933bdc6 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.8' into MVP1.7.8

parents 89a02a4c 28377cae
......@@ -207,5 +207,17 @@ public class TInsuranceAlert extends BaseEntity {
@Schema(description = "消息提醒备注")
private String expireRemark;
/**
* 消息提醒人
*/
@Schema(description = "消息提醒人")
private String alerter;
/**
* 消息提醒人ID
*/
@Schema(description = "消息提醒人ID")
private String alertId;
private static final long serialVersionUID = 1L;
}
\ No newline at end of file
......@@ -42,4 +42,16 @@ public class InsuranceSearchVo extends TBusinessInsuranceVo{
* 导出选择的ID
**/
private String idStr;
/**
* @Author fxj
* 新增到期提醒人
**/
private String alerter;
/**
* 消息提醒人ID
*/
@Schema(description = "消息提醒人ID")
private String alertId;
}
......@@ -363,4 +363,10 @@ public class TBusinessInsuranceVo implements Serializable {
*/
@Schema(description = "有忽略提醒 0:忽略 1:不忽略")
private String expireIgnoreFlag;
/**
* @Author fxj
* 新增到期提醒人
**/
private String alerter;
}
......@@ -7818,9 +7818,9 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
long roleId = 1851541100126863362L;
boolean isSsc = this.haveRole(user, roleId);
if (isSsc) {
condition.setCreateBy(null);
condition.setAlertId(null);
} else {
condition.setCreateBy(user.getId());
condition.setAlertId(user.getId());
}
// R<TSettleDomainListVo> sdRes = archivesDaprUtil.getPermissionByUserId(user.getId());
// List<TInsuranceAreaRes> areaRes = insuranceAreaResMapper.selectList(Wrappers.<TInsuranceAreaRes>query().lambda()
......
......@@ -155,6 +155,8 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
for (TInsuranceAlert alert: list){
userId = null;
nickName = null;
alert.setAlertId(alert.getCreateBy());
alert.setAlerter(alert.getCreateName());
if (Common.isNotNull(userMap.get(alert.getCreateBy()))){
domain = domainHashMap.get(alert.getDeptNo());
if (Common.isNotNull(domain)){
......@@ -173,8 +175,8 @@ public class TInsuranceWarnServiceImpl extends ServiceImpl<TInsuranceWarnMapper,
nickName= sysConfig.getConfigValue1();
}
if (Common.isNotNull(nickName) && Common.isNotNull(userId)){
alert.setCreateBy(userId);
alert.setCreateName(nickName);
alert.setAlerter(nickName);
alert.setAlertId(userId);
}
}
}
......
......@@ -1854,8 +1854,11 @@
<if test="param.isOverdue != null and param.isOverdue.trim() != ''">
AND a.IS_OVERDUE = #{param.isOverdue}
</if>
<if test="param.createBy != null and param.createBy.trim() != ''">
and a.CREATE_BY = #{param.createBy}
<if test="param.alerter != null and param.alerter.trim() != ''">
and a.ALERTER = #{param.alerter}
</if>
<if test="param.alertId != null and param.alertId.trim() != ''">
and a.ALERT_ID = #{param.alertId}
</if>
<if test="param.idList != null and param.idList.size() > 0">
and a.id in
......@@ -2003,13 +2006,14 @@
<select id="pageDiy" resultType="com.yifu.cloud.plus.v1.yifu.insurances.vo.TBusinessInsuranceVo">
<include refid="expire_sql_param"/>
,a.INSURANCE_HANDLE_CITY_NAME
,a.INSURANCE_HANDLE_CITY_NAME,a.ALERTER
from
t_insurance_alert a
LEFT JOIN view_insurance_replace r on a.id=r.TO_INSURANCE_DETAIL_ID
LEFT JOIN view_insurance_replace r2 on a.id=r2.FROM_INSURANCE_DETAIL_ID
LEFT JOIN t_insurance_refund rf on rf.INS_DETAIL_ID=a.id
<include refid="expire_sql_where"/>
group by a.id
order by a.POLICY_END asc
<if test="param != null and param.limitStart != null">
limit #{param.limitStart},#{param.limitEnd}
......
......@@ -43,6 +43,8 @@
<result property="unitNo" column="UNIT_NO" jdbcType="VARCHAR"/>
<result property="expireIgnoreFlag" column="EXPIRE_IGNORE_FLAG" jdbcType="VARCHAR"/>
<result property="expireRemark" column="EXPIRE_REMARK" jdbcType="VARCHAR"/>
<result property="alerter" column="ALERTER" jdbcType="VARCHAR"/>
<result property="alertId" column="ALERT_ID" jdbcType="VARCHAR"/>
</resultMap>
......
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