|
|
@ -1,7 +1,6 @@ |
|
|
|
package com.epmet.modules.partyOrg.service.impl; |
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
import com.epmet.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
|
import com.epmet.commons.rocketmq.messages.PartyMeetingMessageMQMsg; |
|
|
|
import com.epmet.commons.tools.constant.FieldConstant; |
|
|
@ -18,11 +17,9 @@ import com.epmet.feign.EpmetMessageOpenFeignClient; |
|
|
|
import com.epmet.modules.partyOrg.dao.IcScheduleDao; |
|
|
|
import com.epmet.modules.partyOrg.entity.IcScheduleEntity; |
|
|
|
import com.epmet.modules.partyOrg.service.IcScheduleService; |
|
|
|
import com.epmet.resi.partymember.dto.IcPartyActSignInRecordDTO; |
|
|
|
import com.epmet.resi.partymember.dto.IcScheduleDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.form.AddOrEditScheduleFormDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.form.IcScheduleFormDTO; |
|
|
|
import com.epmet.resi.partymember.dto.partyOrg.form.PartyActSignFormDTO; |
|
|
|
import com.epmet.send.SendMqMsgUtil; |
|
|
|
import com.github.pagehelper.PageHelper; |
|
|
|
import com.github.pagehelper.PageInfo; |
|
|
@ -120,7 +117,7 @@ public class IcScheduleServiceImpl extends BaseServiceImpl<IcScheduleDao, IcSche |
|
|
|
IcScheduleEntity e = ConvertUtils.sourceToTarget(formDTO, IcScheduleEntity.class); |
|
|
|
e.setOrgId(staffInfo.getAgencyId()); |
|
|
|
e.setPid(agencyInfo.getPid()); |
|
|
|
e.setOrgIdPath("".equals(agencyInfo.getPids()) ? "" : agencyInfo.getPids().concat(":").concat(agencyInfo.getId())); |
|
|
|
e.setOrgIdPath("".equals(agencyInfo.getPids()) ? agencyInfo.getId() : agencyInfo.getPids().concat(":").concat(agencyInfo.getId())); |
|
|
|
baseDao.insert(e); |
|
|
|
PartyMeetingMessageMQMsg msg = new PartyMeetingMessageMQMsg(); |
|
|
|
msg.setCustomerId(formDTO.getCustomerId()); |
|
|
|