Commit fd717f52 by guojuxing

日志

parent 1b8e0dd4
......@@ -711,6 +711,7 @@ public class ClerkApiServiceImpl implements ClerkApiService {
String wmMallStoreId = jsonObject.getString("wmMallStoreId");
String wmGuiderDTOStr = (String) jsonObject.get("wmGuiderDTO");
WeimobGuiderSynDTO wmGuiderDTO = JSONObject.parseObject(wmGuiderDTOStr, WeimobGuiderSynDTO.class);
logger.info("异步导购微盟放入参数:{}", JSONObject.toJSONString(wmGuiderDTO));
ServiceResponse<Void> result = weimobStoreSiteService.addWeimobGuider(Integer.parseInt(wmMallStoreId),
Integer.parseInt(enterpriseId), wmGuiderDTO);
logger.info("异步导购结果:code:{}, message:{}", result.getCode(), result.getMessage());
......@@ -803,7 +804,6 @@ public class ClerkApiServiceImpl implements ClerkApiService {
params.put("wmMallStoreId", wmMallStoreId);
params.put("wmGuiderDTO", JSONObject.toJSONString(wmGuiderDTO));
logger.info("异步导购微盟放入参数:{}", JSONObject.toJSONString(params));
try {
client.sendMessage("tmpClerkToWeimob", JSONObject.toJSONString(params));
} catch (Exception e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment