移箱支持多个

This commit is contained in:
18942506660
2023-11-15 15:28:39 +08:00
parent b5af69bb1a
commit 1736096743
13 changed files with 224 additions and 27 deletions

View File

@@ -25,7 +25,8 @@ namespace WMS.Web.Domain.Mappers
CreateMap<OutStockTaskDetails, GetOutStockTaskByNoDetailsResponse>();
CreateMap<ErpDeliveryNoticeOutStockResultDto, OutStockTaskDetails>()
.ForPath(x => x.SourceBillNos, ops => ops.MapFrom(x =>new List<string>() { x.SourceBillNo }));
.ForPath(x => x.SourceBillNos, ops => ops.MapFrom(x =>new List<string>() { x.SourceBillNo }))
.ForPath(x => x.SaleBillNos, ops => ops.MapFrom(x => new List<string>() { x.SaleBillNo }));
}
}
}