修复bug

This commit is contained in:
18942506660
2023-12-09 14:51:10 +08:00
parent 8c414f7cd7
commit 5a617854d8
3 changed files with 11 additions and 5 deletions

View File

@@ -22,7 +22,8 @@ namespace WMS.Web.Domain.Mappers
CreateMap<OutStock, OutStock>()
.ForMember(x => x.Details, opt => opt.Ignore());
CreateMap<OutStockDetails, OutStockDetails>()
.ForMember(x => x.ErpDetails, opt => opt.Ignore());
.ForMember(x => x.ErpDetails, opt => opt.Ignore())
.ForMember(x => x.BoxsDetails, opt => opt.Ignore());
CreateMap<OutStockErpDetails, OutStockErpDetails>();