Authored by qinchao

fix提示

... ... @@ -609,7 +609,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService {
BuyerOrder buyerOrder = checkForPlatformExpress(req);
String args = "orderAppraise.deliveryGoodsToBuyer";
if( Constant.BUYER_ORDER_STATUS_JUDGE_PASS.getByteVal()!=buyerOrder.getStatus().byteValue()){
throw new ServiceException(400,"错误:订单状态变化,不允许发货,请重新刷新列表");
throw new ServiceException(400,"错误:订单状态变化,不允许平台发货");
}
//重新设置mobile
restMobileFromBuyer(req,buyerOrder.getOrderCode());
... ... @@ -671,7 +671,7 @@ public class BuyerOrderServiceImpl implements IBuyerOrderService {
||buyerOrder.getStatus().byteValue()==Constant.CANCEL_MINI_FAULT_OUT_TIME_REJECT.getByteVal()){
args = "orderAppraise.returnBackOrderCauseOfJudgeFailure";
}else{
throw new ServiceException(400,"错误:订单状态不合法,不允许平台发货或寄回");
throw new ServiceException(400,"错误:订单状态不合法,不允许平台寄回");
}
//记录操作日志
... ...