|
@@ -142,7 +142,12 @@ public class WxSendMessageServiceImpl implements IWxSendMessageService
|
|
}
|
|
}
|
|
String empName=userMapper.selectLoginNameByCustomerCode(customerId);
|
|
String empName=userMapper.selectLoginNameByCustomerCode(customerId);
|
|
if(empName !=null){
|
|
if(empName !=null){
|
|
- user=maps.get(customerId).get("touser").toString()+"|"+empName;
|
|
|
|
|
|
+ if(maps.get(customerId).get("touser").toString() !=null){
|
|
|
|
+ user=maps.get(customerId).get("touser").toString()+"|"+empName;
|
|
|
|
+ }else{
|
|
|
|
+ user=empName;
|
|
|
|
+ }
|
|
|
|
+
|
|
}else{
|
|
}else{
|
|
user=maps.get(customerId).get("touser").toString();
|
|
user=maps.get(customerId).get("touser").toString();
|
|
}
|
|
}
|