调整出库任务单结构

This commit is contained in:
18942506660
2023-11-15 17:00:53 +08:00
parent a98ecfff21
commit 2dd79daff4
6 changed files with 46 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ 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 }));
}
}