|
|
@ -35,7 +35,7 @@ public partial class StoreEventAutoMapperProfile : Profile |
|
|
|
; |
|
|
|
|
|
|
|
CreateMap<ThirdLocationRequestDetail, ThirdLocationJobDetailInput>() |
|
|
|
.ForMember(x => x.RequestLocationCode, y => y.MapFrom(d => d.ToLocationCode)) |
|
|
|
.ForMember(x => x.FromLocationCode, y => y.MapFrom(d => d.FromLocationCode)) |
|
|
|
.Ignore(x => x.RecommendFromLocationArea) |
|
|
|
.Ignore(x => x.RecommendFromLocationGroup) |
|
|
|
.Ignore(x => x.HandledFromLocationArea) |
|
|
@ -99,7 +99,7 @@ public partial class StoreEventAutoMapperProfile : Profile |
|
|
|
.Ignore(x => x.ToLocationArea) |
|
|
|
.Ignore(x => x.ToLocationGroup) |
|
|
|
.Ignore(x => x.HandledFromWarehouseCode) |
|
|
|
.Ignore(x => x.RequestLocationCode) |
|
|
|
.Ignore(x => x.FromLocationCode) |
|
|
|
.Ignore(x => x.ToLocationCode) |
|
|
|
.Ignore(x => x.ProdLine) |
|
|
|
.Ignore(x => x.WorkStation) |
|
|
@ -123,12 +123,13 @@ public partial class StoreEventAutoMapperProfile : Profile |
|
|
|
.Ignore(x => x.PlanBeginTime) |
|
|
|
.Ignore(x => x.PlannedSplitRule) |
|
|
|
.Ignore(x => x.DeliveryQty) |
|
|
|
.Ignore(x => x.RequestLocationCode) |
|
|
|
.Ignore(x => x.FromLocationCode) |
|
|
|
.Ignore(x => x.ToLocationCode) |
|
|
|
.Ignore(x => x.ProdLine) |
|
|
|
.Ignore(x => x.WorkStation) |
|
|
|
.Ignore(x => x.PositionCode) |
|
|
|
.Ignore(x => x.RecommendType) |
|
|
|
.Ignore(x => x.FromLocationArea) |
|
|
|
.IgnoreIHasRecommendAndHandledFrom(); |
|
|
|
|
|
|
|
} |
|
|
|