调整出库操作

This commit is contained in:
18942506660
2023-11-02 17:44:04 +08:00
parent 0fe1d17de4
commit bcb2cda25c
13 changed files with 131 additions and 73 deletions

View File

@@ -12,6 +12,11 @@ namespace WMS.Web.Domain.Mappers
public OutStockMapper()
{
CreateMap<SaveOutStockRequest, OutStockDetails>();
CreateMap<OutStockTaskDetails, OutStockDetails>()
.ForMember(x => x.Id, ops => ops.Ignore())
.ForMember(x => x.Fid, ops => ops.Ignore())
.ForMember(x => x.Qty, ops => ops.Ignore());
}
}
}