|
|
@ -24,5 +24,10 @@ public partial class BasedataApplicationAutoMapperProfile : Profile |
|
|
|
CreateMap<SupplierItem, SupplierItemImportInput>() |
|
|
|
.Ignore(x => x.ReportStatus) |
|
|
|
.Ignore(x => x.ReportReason); |
|
|
|
CreateMap<SupplierItemEditInput, SupplierItem>() |
|
|
|
.IgnoreAuditedObjectProperties() |
|
|
|
//.ForMember(x => x.SupplierPackQty, y => y.MapFrom(d => new UomQty(d.SupplierPackUom, d.SupplierPackQty)))
|
|
|
|
.Ignore(x => x.ConcurrencyStamp) |
|
|
|
.Ignore(x => x.Id); |
|
|
|
} |
|
|
|
} |
|
|
|