|
@@ -182,7 +182,7 @@ public class WebsitSalesController {
|
|
|
@ApiOperation(value = "网点销售订单-辅材库存分类")
|
|
|
public ResponseHelper<List<WebsitSalesCategoryVO>> existStockCategory(
|
|
|
@ApiParam(value = "网点编号", required = true) @RequestParam String websitId,
|
|
|
- @ApiParam(value = "仓库id", required = true) @RequestParam String storageId
|
|
|
+ @ApiParam(value = "仓库id", required = false) @RequestParam(required = false) String storageId
|
|
|
) throws RemoteServiceException {
|
|
|
List<WebsitSalesCategoryVO> list = websitSalesLogic.existStockCategory(websitId, storageId);
|
|
|
return ResponseHelper.success(list);
|