fix bug 41826 对接人修改参会人信息时,负责人收到的信息
This commit is contained in:
-1
@@ -255,7 +255,6 @@ public class PayMeetingSituation implements Serializable {
|
||||
|
||||
/**邮寄联系人*/
|
||||
@Excel(name = "邮寄联系人", width = 15, dictTable = "pay_contacts_management", dicText = "name", dicCode = "id")
|
||||
@ApiModelProperty(value = "邮寄联系人")
|
||||
private String postContactId;
|
||||
|
||||
/**
|
||||
|
||||
+6
-1
@@ -811,8 +811,13 @@ public class PayMeetingSituationServiceImpl extends ServiceImpl<PayMeetingSituat
|
||||
}
|
||||
//如果是对接人修改的
|
||||
if (sysUserId.equals(dockId)) {
|
||||
PayMeetingSituation newObject = new PayMeetingSituation();
|
||||
BeanUtils.copyProperties(payMeetingSituation1, newObject);
|
||||
|
||||
newObject.setPhone(PasswordUtil.decrypt(newObject.getPhone()));
|
||||
oldObject.setPhone(PasswordUtil.decrypt(oldObject.getPhone()));
|
||||
//判断修改了那些字段
|
||||
ObjRecordUtilModule objRecordUtilModule = ObjRecordUtil.addRecord(oldObject, payMeetingSituation1);
|
||||
ObjRecordUtilModule objRecordUtilModule = ObjRecordUtil.addRecord(oldObject, newObject);
|
||||
String record = objRecordUtilModule.getInfo();
|
||||
if (StringUtils.isNotBlank(record)) {
|
||||
// 给负责人发送消息
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
</resultMap>
|
||||
|
||||
<select id="queryPageList" resultMap="TbMemberProjectResultMap">
|
||||
select tmp.* from tb_member_project tmp
|
||||
select distinct tmp.* from tb_member_project tmp
|
||||
left join pay_meeting pm on tmp.id = pm.standards_id
|
||||
${ew.customSqlSegment}
|
||||
</select>
|
||||
|
||||
Reference in New Issue
Block a user