生产汇报单pda

This commit is contained in:
2025-06-23 15:41:12 +08:00
parent 02ba589422
commit e482a656cf
2 changed files with 110 additions and 10 deletions

View File

@@ -189,8 +189,13 @@ namespace WMS.Web.Api.Controllers
var loginInfo = _loginService.GetLoginInfo(this.HttpContext.Request.Headers["Authorization"]);
if (loginInfo == null || loginInfo.UserInfo == null)
return ResultList<SourceBillNoQueryResponse>.ReFailure(ResultCodes.Token_Invalid_Error);
////将传过来的sourceBillNo进行分割
//string[] s=sourceBillNo.Split('&');
//sourceBillNo=s[0];
//string type=s[1];
var list= await _inStockTaskRepositories.GetListBy(new InStockTaskBillNoQueryRequest() { SourceBillNo = sourceBillNo});
var list = await _inStockTaskRepositories.GetListBy(new InStockTaskBillNoQueryRequest() { SourceBillNo = sourceBillNo});
//获取物料对应的仓位
var materialNumbers = list.GroupBy(x => x.MaterialNumber).Select(x => x.Key).ToList();