...
|
...
|
@@ -136,7 +136,7 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService { |
|
|
//是否直接鉴定通过
|
|
|
boolean isDirectPass = false;
|
|
|
|
|
|
// 急速 不管是寄存还是发货 都需要通知卖家发货
|
|
|
// 极速 不管是寄存还是发货 都需要通知卖家发货
|
|
|
if (fastDeliveryProxyService.isFastDeliveryGoods(orderInfo.getSkup())){
|
|
|
|
|
|
String wayBillCode = fastDeliveryProxyService.getVRWaybillCode(orderInfo.getOrderCode());
|
...
|
...
|
@@ -232,7 +232,7 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService { |
|
|
*/
|
|
|
private void processDepositOrder(BuyerOrder buyerOrder, SellerOrderGoods sellerOrderGoods){
|
|
|
SkupType skupType = SkupType.getSkupType(sellerOrderGoods.getAttributes());
|
|
|
//寄存订单 & 闪购商品 & 急速闪购
|
|
|
//寄存订单 & 闪购商品 & 极速闪购
|
|
|
switch (skupType){
|
|
|
case QUICK_DELIVER:
|
|
|
processDepositOrderOfQuickDeliverGoods(buyerOrder, sellerOrderGoods);
|
...
|
...
|
@@ -320,7 +320,7 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService { |
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 急速发货非寄存订单,商品:闪购
|
|
|
* 极速发货非寄存订单,商品:闪购
|
|
|
* @param buyerOrder
|
|
|
* @param sellerOrderGoods
|
|
|
*/
|
...
|
...
|
@@ -395,7 +395,7 @@ public class BuyerOrderPaymentService extends AbstractOrderPaymentService { |
|
|
case DEPOSITE:
|
|
|
processDepositOrder(buyerOrder, sellerOrderGoods);
|
|
|
break;
|
|
|
case FAST_DELIVERY: // 急速发货
|
|
|
case FAST_DELIVERY: // 极速发货
|
|
|
processFastDelivery(buyerOrder, sellerOrderGoods);
|
|
|
break;
|
|
|
}
|
...
|
...
|
|