Merge branch 'master' into dev
Showing
3 changed files
with
6 additions
and
0 deletions
@@ -39,6 +39,10 @@ public enum ButtonShow { | @@ -39,6 +39,10 @@ public enum ButtonShow { | ||
39 | } | 39 | } |
40 | 40 | ||
41 | public ButtonShowBo getBo(CancelType cancelType) { | 41 | public ButtonShowBo getBo(CancelType cancelType) { |
42 | + if(cancelType == null){ | ||
43 | + return bo; | ||
44 | + } | ||
45 | + | ||
42 | switch (cancelType){ | 46 | switch (cancelType){ |
43 | case SELF_BEFORE_PAY: | 47 | case SELF_BEFORE_PAY: |
44 | bo.setConfirmTips("您确定不卖此商品吗?"); | 48 | bo.setConfirmTips("您确定不卖此商品吗?"); |
@@ -98,6 +98,7 @@ public class AppraiseService { | @@ -98,6 +98,7 @@ public class AppraiseService { | ||
98 | .skup(skup); | 98 | .skup(skup); |
99 | try { | 99 | try { |
100 | paymentService.refund(req); | 100 | paymentService.refund(req); |
101 | + | ||
101 | }catch (Exception ex){ | 102 | }catch (Exception ex){ |
102 | LOGGER.warn("in appraiseSuccess, refund fail, req {}", req, ex); | 103 | LOGGER.warn("in appraiseSuccess, refund fail, req {}", req, ex); |
103 | BillLogEvent sellerBillLogEvent = bleb.tradeStatus(200) | 104 | BillLogEvent sellerBillLogEvent = bleb.tradeStatus(200) |
@@ -46,6 +46,7 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde | @@ -46,6 +46,7 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde | ||
46 | @Autowired | 46 | @Autowired |
47 | private SellerOrderGoodsMapper sellerOrderGoodsMapper; | 47 | private SellerOrderGoodsMapper sellerOrderGoodsMapper; |
48 | 48 | ||
49 | + | ||
49 | @Override | 50 | @Override |
50 | public PageResp<OrderListInfo> getOrderList(OrderListRequest request){ | 51 | public PageResp<OrderListInfo> getOrderList(OrderListRequest request){ |
51 | int type; | 52 | int type; |
-
Please register or login to post a comment