...
|
...
|
@@ -455,16 +455,18 @@ public class SellerOrderController { |
|
|
return new ApiResponse.ApiResponseBuilder().code(200).data(orderListInfoRsp).message("刷新成功").build();
|
|
|
}
|
|
|
|
|
|
@RequestMapping(params = "method=ufo.order.isSurperEntrySeller")
|
|
|
@ResponseBody
|
|
|
public ApiResponse isSuperEntrySeller(@RequestParam("uid") int uid) {
|
|
|
|
|
|
boolean isSuper = sellerService.isSuperEntrySeller(uid);
|
|
|
return new ApiResponse.ApiResponseBuilder().code(200).data(isSuper).message("刷新成功").build();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @version 6.8.3
|
|
|
* @param type
|
|
|
* @param uid
|
|
|
* @param skupList
|
|
|
* @param page
|
|
|
* @param limit
|
|
|
* @return
|
|
|
*/
|
|
|
@RequestMapping(params = "method=ufo.seller.orderList")
|
|
|
@ResponseBody
|
|
|
@Deprecated
|
|
|
public ApiResponse getOrderList(@RequestParam("type") int type,
|
|
|
@RequestParam("uid") int uid,
|
|
|
@RequestParam(name = "skupList")String skupList,
|
...
|
...
|
@@ -514,7 +516,6 @@ public class SellerOrderController { |
|
|
* @param price
|
|
|
* @param address_id
|
|
|
* @return
|
|
|
* @throws GatewayException
|
|
|
*/
|
|
|
@RequestMapping(params = "method=ufo.seller.publishImperfectPrd")
|
|
|
@ResponseBody
|
...
|
...
|
|