盘点-库存

This commit is contained in:
tongfei
2023-11-23 15:24:40 +08:00
parent 8cf8dab210
commit a49c85752a
7 changed files with 343 additions and 3 deletions

View File

@@ -37,6 +37,11 @@ namespace WMS.Web.Domain.Mappers
CreateMap<BoxInventoryGenerateDto, BoxInventory>();
CreateMap<BoxInventoryGenerateDetailsDto, BoxInventoryDetails>();
//盘点
CreateMap<BoxInventoryTakeGenerateDto, BoxInventory>();
CreateMap<BoxInventoryTakeDetailsGenerateDto, BoxInventoryDetails>();
//物料收发明细-映射
CreateMap<InventoryInOutDetailsGenerateDto, InventoryInOutDetails>()
.ForMember(x => x.OrderType, ops => ops.MapFrom(x => x.OrderType))