|
@@ -9,14 +9,14 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
import com.xkcoding.http.util.StringUtil;
|
|
|
-
|
|
|
import jakarta.annotation.Resource;
|
|
|
-
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
+import org.jeecg.common.api.dto.message.MessageDTO;
|
|
|
import org.jeecg.common.constant.CacheConstant;
|
|
|
+import org.jeecg.common.constant.CommonConstant;
|
|
|
+import org.jeecg.common.constant.enums.SysAnnmentTypeEnum;
|
|
|
import org.jeecg.common.system.vo.DictModel;
|
|
|
import org.jeecg.common.system.vo.DictPropertyModel;
|
|
|
import org.jeecg.common.util.FastJsonUtil;
|
|
@@ -38,12 +38,11 @@ import org.jeecg.modules.adweb.system.entity.SysException;
|
|
|
import org.jeecg.modules.adweb.system.service.IMasterSubAccountRelationService;
|
|
|
import org.jeecg.modules.adweb.system.service.ISysExceptionService;
|
|
|
import org.jeecg.modules.adweb.system.service.impl.SysAdwebApiImpl;
|
|
|
-import org.jeecg.modules.message.websocket.WebSocket;
|
|
|
+import org.jeecg.modules.message.handle.impl.SystemSendMsgHandle;
|
|
|
import org.jeecg.modules.system.entity.SysDictItem;
|
|
|
import org.jeecg.modules.system.entity.SysUser;
|
|
|
import org.jeecg.modules.system.service.ISysDictService;
|
|
|
import org.jeecg.modules.system.service.ISysUserService;
|
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.context.annotation.Lazy;
|
|
|
import org.springframework.http.HttpEntity;
|
|
@@ -132,7 +131,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
private SysAdwebApiImpl sysAdwebApiImpl;
|
|
|
|
|
|
@Resource
|
|
|
- private WebSocket webSocket;
|
|
|
+ private SystemSendMsgHandle systemSendMsgHandle;
|
|
|
|
|
|
private static final byte[] redisKey = EnquiryConstants.ENQUIRY_EMAIL.getBytes();
|
|
|
|
|
@@ -264,13 +263,18 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
this.save(target);
|
|
|
adwebEnquiryFormService.save(form);
|
|
|
|
|
|
- //创建业务消息信息
|
|
|
- JSONObject obj = new JSONObject();
|
|
|
- obj.put("cmd", "user");//业务类型
|
|
|
- obj.put("msgId", target.getId());//消息id
|
|
|
- obj.put("msgTxt", target.getEmail());//消息内容
|
|
|
- //单个用户发送 (userId为用户id)
|
|
|
- webSocket.sendMessage("e9ca23d68d884d4ebb19d07889727dae", obj.toJSONString());
|
|
|
+ MessageDTO messageDTO = new MessageDTO();
|
|
|
+ String title = "您已经收到询盘 ";
|
|
|
+ messageDTO.setTitle(title);
|
|
|
+ Map<String, Object> data = new HashMap<>();
|
|
|
+ //update-begin---author:wangshuai---date:2024-03-11---for:【QQYUN-8425】用户导入成功后 消息提醒 跳转至同意页面---
|
|
|
+ data.put(CommonConstant.NOTICE_MSG_BUS_TYPE, SysAnnmentTypeEnum.BPM.getType());
|
|
|
+ //update-end---author:wangshuai---date:2024-03-11---for:【QQYUN-8425】用户导入成功后 消息提醒 跳转至同意页面---
|
|
|
+ messageDTO.setData(data);
|
|
|
+ messageDTO.setContent("您已经收到询盘 您已经收到询盘 您已经收到询盘 您已经收到询盘 ");
|
|
|
+ messageDTO.setToUser("admin");
|
|
|
+ messageDTO.setFromUser("system");
|
|
|
+ systemSendMsgHandle.sendMessage(messageDTO);
|
|
|
} catch (Exception e) {
|
|
|
log.error("站点为:{}, recordId为:{} 保存询盘到数据库失败,原因是:{}", adwebSite.getName(), enquiryDto.getRecordId(), e.getMessage());
|
|
|
}
|
|
@@ -661,7 +665,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
// 外部编号暂无作用,且多查询一次数据库,暂时注释
|
|
|
// adwebEnquiry.setNoOut(DateUtil.dateToString(new Date(), DateUtil.DATE_FORMAT_THREE) + adwebOpenApiService.loadOutNoByUser(adwebSite.getUid()));
|
|
|
adwebEnquiry.setWasteEnquiry(0);
|
|
|
- adwebEnquiry.setRequestTime( new Date());
|
|
|
+ adwebEnquiry.setRequestTime(new Date());
|
|
|
adwebEnquiry.setAcquireMessageTime(adwebSite.getEnquiryMessageTime());
|
|
|
adwebEnquiry.setIsEnquirySync("enquirySync");
|
|
|
|
|
@@ -1752,16 +1756,16 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void returnSalesperson(String siteCode,String inquiryId,String sales) {
|
|
|
+ public void returnSalesperson(String siteCode, String inquiryId, String sales) {
|
|
|
log.info("返回跟进人名称开始");
|
|
|
//获取站点
|
|
|
QueryWrapper<AdwebSite> queryWrapper = new QueryWrapper<>();
|
|
|
- queryWrapper.eq("code",siteCode);
|
|
|
+ queryWrapper.eq("code", siteCode);
|
|
|
AdwebSite adwebSite = adwebSiteService.getOne(queryWrapper);
|
|
|
|
|
|
RestTemplate restTemplate = new RestTemplate();
|
|
|
String url = adwebSite.getDomain() + "/wp-json/inquiry/v1/add-sales";
|
|
|
- log.info("请求地址{}",url);
|
|
|
+ log.info("请求地址{}", url);
|
|
|
// 如果需要传递参数
|
|
|
HttpHeaders headers = new HttpHeaders();
|
|
|
headers.set("Content-Type", "application/json");
|
|
@@ -1814,19 +1818,19 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
updateWrapper.set("waste_enquiry_type", wasteEnquiryType);
|
|
|
|
|
|
//特殊处理垃圾询盘是邮箱或者ip
|
|
|
- if(wasteEnquiryType.equals("ip")){
|
|
|
+ if (wasteEnquiryType.equals("ip")) {
|
|
|
updateWrapper.set("effective_reason", "人工操作-ip-" + wasteEnquirySeason);
|
|
|
adwebSiteBlackIpService.addBlackIpByContent(effectiveEnquiryParamDto);
|
|
|
}
|
|
|
- if(wasteEnquiryType.equals("email")){
|
|
|
+ if (wasteEnquiryType.equals("email")) {
|
|
|
updateWrapper.set("effective_reason", "人工操作-邮箱-" + wasteEnquirySeason);
|
|
|
enquirySiteBlackEmailService.addBlackEmailByContent(effectiveEnquiryParamDto);
|
|
|
}
|
|
|
- if(wasteEnquiryType.equals("keyword")){
|
|
|
+ if (wasteEnquiryType.equals("keyword")) {
|
|
|
updateWrapper.set("effective_reason", "人工操作-关键词-" + wasteEnquirySeason);
|
|
|
adwebSiteEnquiryRuleService.addBlackKeywordByContent(effectiveEnquiryParamDto);
|
|
|
}
|
|
|
- if(wasteEnquiryType.equals("other")){
|
|
|
+ if (wasteEnquiryType.equals("other")) {
|
|
|
updateWrapper.set("effective_reason", "人工操作-其他-" + wasteEnquirySeason);
|
|
|
}
|
|
|
} else { // 有效询盘
|
|
@@ -1851,7 +1855,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
|
|
|
//判断是否为产品询盘
|
|
|
for (AdwebEnquiry adwebEnquiry : enquiryList) {
|
|
|
- if(StringUtils.isNotBlank(adwebEnquiry.getCartItems())){
|
|
|
+ if (StringUtils.isNotBlank(adwebEnquiry.getCartItems())) {
|
|
|
adwebEnquiry.setExistProductEnquiry(1); // 产品询盘
|
|
|
}
|
|
|
}
|
|
@@ -1872,7 +1876,7 @@ public class AdwebEnquiryServiceImpl extends ServiceImpl<AdwebEnquiryMapper, Adw
|
|
|
log.info("获取的子账户id:{}", FastJsonUtil.toJSONString(subAccountIdList));
|
|
|
if (CollectionUtils.isNotEmpty(subAccountIdList)) {
|
|
|
subAccountIdList.add(String.valueOf(adwebSite.getUid()));
|
|
|
- List<SysUser> principalEmailList = sysUserService.list(new QueryWrapper<SysUser>().in("id", subAccountIdList).eq("del_flag", 0).isNotNull("email").ne("email","").select("id", "email"));
|
|
|
+ List<SysUser> principalEmailList = sysUserService.list(new QueryWrapper<SysUser>().in("id", subAccountIdList).eq("del_flag", 0).isNotNull("email").ne("email", "").select("id", "email"));
|
|
|
if (CollectionUtils.isNotEmpty(principalEmailList)) {
|
|
|
principalEmailMap = principalEmailList.stream().collect(Collectors.toMap(SysUser::getId, SysUser::getEmail));
|
|
|
|