...
|
...
|
@@ -2085,14 +2085,12 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
}
|
|
|
|
|
|
JSONObject jsonObject = updateBuyerReceiveInfo(req, buyerMeta.getMetaValue(), buyerOrder.getUid());
|
|
|
if(jsonObject.getIntValue("code") != 200) {
|
|
|
LOGGER.warn("updateReceiveInfo buyer update address not successful response, req {} result is {}",req, jsonObject);
|
|
|
return 0;
|
|
|
}
|
|
|
LOGGER.info("updateReceiveInfo buyer update address successful response, req {} result is {}",req, jsonObject);
|
|
|
|
|
|
oldInfo = buyerMeta.getMetaValue();
|
|
|
}
|
|
|
}else if(buyerOrder.getStatus().byteValue() == Constant.BUYER_ORDER_STATUS_PLATFORM_RECEIVE.getByteVal()) {
|
|
|
}else if(buyerOrder.getStatus().byteValue() == Constant.BUYER_ORDER_STATUS_BUYER_PAYED.getByteVal()
|
|
|
||buyerOrder.getStatus().byteValue() == Constant.BUYER_ORDER_STATUS_PLATFORM_RECEIVE.getByteVal()) {
|
|
|
//平台鉴定前,更新收货人信息
|
|
|
LOGGER.info("updateReceiveInfo change address before judge ,buyerOrder = {}",buyerOrder);
|
|
|
operateType = OperateTypeEnum.OPERATE_TYPE_UPDATE_RECEIVE_INFO.getCode();
|
...
|
...
|
@@ -2102,10 +2100,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService { |
|
|
}
|
|
|
|
|
|
JSONObject jsonObject = updateBuyerReceiveInfo(req, buyerMeta.getMetaValue(), buyerOrder.getUid());
|
|
|
if(jsonObject.getIntValue("code") != 200) {
|
|
|
LOGGER.warn("updateReceiveInfo update buyer address not successful response, req {} result is {}",req, jsonObject);
|
|
|
return 0;
|
|
|
}
|
|
|
LOGGER.info("updateReceiveInfo buyer update address successful response, req {} result is {}",req, jsonObject);
|
|
|
|
|
|
oldInfo = buyerMeta.getMetaValue();
|
|
|
}
|
...
|
...
|
|