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