Showing
2 changed files
with
5 additions
and
1 deletions
@@ -373,7 +373,8 @@ public class SellerOrderController { | @@ -373,7 +373,8 @@ public class SellerOrderController { | ||
373 | public ApiResponse refresh(@RequestParam("type") int type, | 373 | public ApiResponse refresh(@RequestParam("type") int type, |
374 | @RequestParam("uid") int uid, | 374 | @RequestParam("uid") int uid, |
375 | @RequestParam("tabType") String tabType, | 375 | @RequestParam("tabType") String tabType, |
376 | - @RequestParam(value = "orderCode") long orderCode) { | 376 | + @RequestParam(value = "orderCode") long orderCode, |
377 | + @RequestParam(value = "app_version", required = false)String appVersion) { | ||
377 | 378 | ||
378 | 379 | ||
379 | TabType actor = TabType.getTabType(tabType); | 380 | TabType actor = TabType.getTabType(tabType); |
@@ -387,6 +388,7 @@ public class SellerOrderController { | @@ -387,6 +388,7 @@ public class SellerOrderController { | ||
387 | .tabType(tabType) | 388 | .tabType(tabType) |
388 | .actor(actor) | 389 | .actor(actor) |
389 | .orderCode(orderCode) | 390 | .orderCode(orderCode) |
391 | + .appVersion(appVersion) | ||
390 | .build(); | 392 | .build(); |
391 | logger.info("in ufo.order.refresh, req {}", orderRequest); | 393 | logger.info("in ufo.order.refresh, req {}", orderRequest); |
392 | SellerOrderListResp orderListInfoRsp = null; | 394 | SellerOrderListResp orderListInfoRsp = null; |
-
Please register or login to post a comment