Commit 3d7e4654 by 周晓航

删除无效日志

parent 2109f919
......@@ -95,8 +95,6 @@ public class SaasOrderMangerServiceImpl implements OrderManagerService {
@Autowired
private ConsoleApiClient consoleApiClient;
@Autowired
LogUtil logUtil;
/**
* 接单
*
......@@ -108,7 +106,6 @@ public class SaasOrderMangerServiceImpl implements OrderManagerService {
public BaseResponse<OrderManagerResponse> orderConfirm(OrderManagerRequest request, OrderBeanV1 orderBean) {
QueryFlag query = QueryFlag.builder().queryBusinessInfo(true).queryStoreInfo(true).build();
ConsoleResponseDTO<BizDTO> storeMix = this.getStoreMix(query, orderBean.getCompanyId(), orderBean.getShopId());
logUtil.info("fisherman -> 接单", JSON.toJSONString(request),JSON.toJSONString(storeMix));
boolean idAutoCreate = false;
if (storeMix!=null && ObjectUtils.equals(ResponseResult.SUCCESS.getCode(), storeMix.getStatusCode())) {
BizDTO bizVO = storeMix.getBizVO();
......
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