生成-物料收发明细

This commit is contained in:
tongfei
2023-11-17 11:07:39 +08:00
parent e41f1b16aa
commit ae21319ef3
11 changed files with 289 additions and 0 deletions

View File

@@ -36,7 +36,14 @@ namespace WMS.Web.Domain.Mappers
//箱库存映射
CreateMap<BoxInventoryGenerateDto, BoxInventory>();
CreateMap<BoxInventoryGenerateDetailsDto, BoxInventoryDetails>();
//物料收发明细-映射
CreateMap<InventoryInOutDetailsGenerateDto, InventoryInOutDetails>()
.ForMember(x => x.OrderType, ops => ops.MapFrom(x => x.OrderType))
.ForMember(x => x.Type, ops => ops.MapFrom(x => x.InventoryInOutType));
}
}
}