傅行帆 5 年之前
父節點
當前提交
93120e05e0
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/main/java/com/huiju/estateagents/sample/controller/TaH5DemandController.java

+ 1
- 1
src/main/java/com/huiju/estateagents/sample/controller/TaH5DemandController.java 查看文件

149
             if (sampleContactList.size() > 0) {
149
             if (sampleContactList.size() > 0) {
150
                 List<TaContact> taContactList = taContactService.list(new QueryWrapper<TaContact>().in("contact_id", sampleContactList.stream().map(TaSampleContact::getContactId).collect(Collectors.toList())));
150
                 List<TaContact> taContactList = taContactService.list(new QueryWrapper<TaContact>().in("contact_id", sampleContactList.stream().map(TaSampleContact::getContactId).collect(Collectors.toList())));
151
                 taH5Sample.setTaContactList(taContactList);
151
                 taH5Sample.setTaContactList(taContactList);
152
-                String[] smsParams = {taH5Sample.getSampleName(), taH5Demand.getOrgName() + taH5Demand.getOrderer() + taH5Demand.getPhone()};
152
+                String[] smsParams = {taH5Sample.getSampleName(), taH5Demand.getOrderer() + taH5Demand.getPhone()};
153
                 for (TaContact taContact : taContactList){
153
                 for (TaContact taContact : taContactList){
154
                     sendSmsMessage(taContact.getPhone(), CommConstant.MESSAGE_CONTENT_OF_DEMAND, smsParams);
154
                     sendSmsMessage(taContact.getPhone(), CommConstant.MESSAGE_CONTENT_OF_DEMAND, smsParams);
155
                 }
155
                 }