|
@@ -122,6 +122,7 @@ public class WxController extends ApiBaseController {
|
|
|
String shipmentNumber = obj.getString("shipmentNumber");
|
|
|
String orderNumber = obj.getString("orderNumber");
|
|
|
String belongToName = obj.getString("belongToName");
|
|
|
+ logger.info("收到需要通知收货的请求参数:"+obj.toString());
|
|
|
if(belongToName==null){
|
|
|
belongToName = "经销商";
|
|
|
}
|
|
@@ -148,9 +149,11 @@ public class WxController extends ApiBaseController {
|
|
|
})
|
|
|
@PostMapping("sendTextMessageByCustomerCode")
|
|
|
public Object sendTextMessage(){
|
|
|
+
|
|
|
ParameterObject obj = getParameterObject();
|
|
|
JSONObject jobj = obj.getJSONObject();
|
|
|
Set<String> customerCodes = jobj.keySet();
|
|
|
+ logger.info("收到需要通知过信息的请求参数:"+jobj.toString());
|
|
|
logger.info("收到需要通知的经销商组织代码:"+customerCodes.toString());
|
|
|
Map<String,Map<String,Object>> maps = sysUserService.selectLoginNamesByCostumerCode(customerCodes);
|
|
|
String temple =configService.selectConfigByKey("wx.notification.time");
|