webc查询线索参加会销信息增加非空判断

This commit is contained in:
feng.li
2024-01-08 10:30:43 +08:00
parent 593a531f0a
commit 5c78fb7c24
2 changed files with 4 additions and 1 deletions

View File

@@ -742,6 +742,9 @@ public class ExhibitionServiceImpl implements ExhibitionService {
@Override
public PartnerExhibitionInfoVO getExhibitionInfo(Integer exhibitionGroupId, Long partnerLineId) {
PartnerExhibitionInfoVO partnerExhibitionInfo = hyExhibitionDAO.getPartnerExhibitionInfo(exhibitionGroupId, partnerLineId);
if (partnerExhibitionInfo == null) {
return null;
}
partnerExhibitionInfo.setWhetherIntentionApply(Boolean.TRUE);
HyPartnerIntentInfoDO intentInfo = hyPartnerIntentInfoDAO.selectByLineId(partnerLineId);
if (intentInfo == null) {

View File

@@ -63,7 +63,7 @@ class EventRequestTest extends AbstractJUnit4SpringContextTests {
@Test
void testSMSNotice() throws ApiException {
String testPhone = "13739417741";
String testPhone = "15735114608";
String testDate = "2023-11-05 10:00:00";
String randomStr = RandomUtil.randomString(12);
String wxUrlPrefix = "https://wxaurl.cn/";