Browse Source

成品发运修改

dev_DY_CC
lvzb 1 year ago
parent
commit
fde3192486
  1. 2
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/ProductRecycleJobs/ProductRecycleJobAutoMapperProfile.cs
  2. 6
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Event/Requests/Note/ProductReceiptNoteEventHandler.cs

2
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Jobs/ProductRecycleJobs/ProductRecycleJobAutoMapperProfile.cs

@ -13,7 +13,7 @@ public partial class StoreApplicationAutoMapperProfile : Profile
.ReverseMap();
CreateMap<ProductRecycleJobDetail, ProductRecycleJobDetailDTO>()
;
.ReverseMap();
CreateMap<ProductRecycleJobEditInput, ProductRecycleJob>();

6
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Event/Requests/Note/ProductReceiptNoteEventHandler.cs

@ -15,6 +15,7 @@ public class ProductReceiptNoteEventHandler
: StoreEventHandlerBase
, ILocalEventHandler<SfsCreatedEntityEventData<ProductReceiptNote>>
, ILocalEventHandler<SfsCreatedEntityEventData<List<ProductReceiptNote>>>
,ILocalEventHandler<SfsHandledEntityEventData<ProductReceiptNote>>
{
private readonly IPutawayJobAppService _putawayJobAppService;
@ -91,4 +92,9 @@ public class ProductReceiptNoteEventHandler
dto.JobStatus = EnumJobStatus.Open;
return dto;
}
public virtual async Task HandleEventAsync(SfsHandledEntityEventData<ProductReceiptNote> eventData)
{
throw new System.NotImplementedException();
}
}

Loading…
Cancel
Save