盘点-库存

This commit is contained in:
tongfei
2023-11-23 15:24:40 +08:00
parent 8cf8dab210
commit a49c85752a
7 changed files with 343 additions and 3 deletions

View File

@@ -120,7 +120,7 @@ namespace WMS.Web.Repositories
var response = _mapper.Map<BoxInventoryResponse>(entity);
if (response != null)
{
var serialNumbs = await _context.SerialNumbers.Where(x => x.BoxId == response.BoxId).ToListAsync();
//var serialNumbs = await _context.SerialNumbers.Where(x => x.BoxId == response.BoxId).ToListAsync();
response.Stock = _singleDataService.GetSingleData(SingleAction.StocksJoinOrgCode, _loginRepositories.CompanyId, response.StockCode + response.OrgCode);
response.SubStock = _singleDataService.GetSingleData(SingleAction.SubStocks, _loginRepositories.CompanyId, response.SubStockId);