Merge branch 'dev_6.8.4_order' into test6.8.4
Showing
2 changed files
with
7 additions
and
0 deletions
@@ -68,6 +68,9 @@ public class BuyerOrderController { | @@ -68,6 +68,9 @@ public class BuyerOrderController { | ||
68 | .tabType(tabType) | 68 | .tabType(tabType) |
69 | .actor(actor) | 69 | .actor(actor) |
70 | .build(); | 70 | .build(); |
71 | + | ||
72 | + LOG.info("in ufo.order.list, req {}", orderListRequest); | ||
73 | + | ||
71 | PageResp<OrderListInfo> orderListInfoRsp; | 74 | PageResp<OrderListInfo> orderListInfoRsp; |
72 | switch (actor){ | 75 | switch (actor){ |
73 | case BUY: | 76 | case BUY: |
@@ -106,6 +109,9 @@ public class BuyerOrderController { | @@ -106,6 +109,9 @@ public class BuyerOrderController { | ||
106 | .tabType(tabType) | 109 | .tabType(tabType) |
107 | .actor(actor) | 110 | .actor(actor) |
108 | .build(); | 111 | .build(); |
112 | + | ||
113 | + LOG.info("in ufo.order.detail, req {}", orderRequest); | ||
114 | + | ||
109 | OrderDetailInfo orderDetailInfo; | 115 | OrderDetailInfo orderDetailInfo; |
110 | switch (actor){ | 116 | switch (actor){ |
111 | case BUY: | 117 | case BUY: |
@@ -425,6 +425,7 @@ public class SellerOrderController { | @@ -425,6 +425,7 @@ public class SellerOrderController { | ||
425 | .limit(limit) | 425 | .limit(limit) |
426 | .skupList(skupList) | 426 | .skupList(skupList) |
427 | .build(); | 427 | .build(); |
428 | + logger.info("in ufo.seller.orderList, req {}", orderListRequest); | ||
428 | PageResp<OrderListInfo> orderListInfoRsp; | 429 | PageResp<OrderListInfo> orderListInfoRsp; |
429 | orderListInfoRsp = skupListService.getOrderList(orderListRequest); | 430 | orderListInfoRsp = skupListService.getOrderList(orderListRequest); |
430 | return new ApiResponse.ApiResponseBuilder().code(200).data(orderListInfoRsp).message("卖家订单列表").build(); | 431 | return new ApiResponse.ApiResponseBuilder().code(200).data(orderListInfoRsp).message("卖家订单列表").build(); |
-
Please register or login to post a comment