增加盘点模式

This commit is contained in:
hehaibing-1996
2024-05-09 09:43:28 +08:00
parent 311a695498
commit cb6090bf0b
43 changed files with 2909 additions and 423 deletions

View File

@ -42,6 +42,13 @@ namespace WCS.WebApi.Controllers
return await _stockTakingService.getStockTakingOrders(request);
}
[Route("getStockTakingOrdersByStatus")]
[HttpPost(Name = "getStockTakingOrdersByStatus")]
public async Task<ResponseBase> getStockTakingOrdersByStatus(GetStockTakingOrdersRequest request)
{
return await _stockTakingService.getStockTakingOrdersByStatus(request);
}
[Route("getStockTakingOrderMatDetail")]
[HttpPost(Name = "getStockTakingOrderMatDetail")]
public async Task<ResponseBase> getStockTakingOrderMatDetail(GetStockTakingOrderMatDetailRequest request)