金蝶数据导入出库单

This commit is contained in:
18942506660
2023-11-06 16:23:52 +08:00
parent c4e4b1a59b
commit 3b67d95f1c
10 changed files with 749 additions and 11 deletions

View File

@@ -99,7 +99,7 @@ namespace WMS.Web.Repositories
if (!string.IsNullOrEmpty(dto.SourceBillNo))
query = query.Where(w => EF.Functions.Like(w.order.SourceBillNo, "%" + dto.SourceBillNo + "%"));
if (dto.Type != null)
query = query.Where(w => w.order.Type == (OrderType)dto.Type);
query = query.Where(w => w.order.Type == (OutStockType)dto.Type);
if (dto.SuccessSync != null)
query = query.Where(w => w.order.SuccessSync == dto.SuccessSync);
if (dto.DeliveryOrgId != null)