|
|
@ -17,6 +17,7 @@ using Win_in.Sfs.Wms.Store.Domain.Shared; |
|
|
|
namespace Win_in.Sfs.Wms.Store.Application; |
|
|
|
|
|
|
|
using System.Linq; |
|
|
|
using Win_in.Sfs.Basedata.Application; |
|
|
|
using Win_in.Sfs.Basedata.Application.Contracts; |
|
|
|
|
|
|
|
[Authorize] |
|
|
@ -33,6 +34,7 @@ public class PutawayNoteAppService : |
|
|
|
public readonly IPurchasePriceSheetAppService _purchasePriceSheetAppService; |
|
|
|
public readonly IErpLocationItemAppService _erpLocationItemAppService; |
|
|
|
public readonly IItemBasicAppService _itemBasicAppService; |
|
|
|
public readonly ISplitPackingRecAppService _splitPackingRecAppService; |
|
|
|
|
|
|
|
public PutawayNoteAppService( |
|
|
|
IPutawayNoteRepository repository, |
|
|
@ -42,7 +44,7 @@ public class PutawayNoteAppService : |
|
|
|
IPurchaseOrderManager purchaseOrderManager, |
|
|
|
IPurchasePriceSheetAppService purchasePriceSheetAppService, |
|
|
|
IErpLocationItemAppService erpLocationItemAppService, |
|
|
|
IItemBasicAppService itemBasicAppService) : base(repository) |
|
|
|
IItemBasicAppService itemBasicAppService, ISplitPackingRecAppService splitPackingRecAppService) : base(repository) |
|
|
|
{ |
|
|
|
_putawayNoteManager = putawayNoteManager; |
|
|
|
_purchaseReceiptNoteAppService = purchaseReceiptNoteAppService; |
|
|
@ -51,6 +53,7 @@ public class PutawayNoteAppService : |
|
|
|
_purchasePriceSheetAppService = purchasePriceSheetAppService; |
|
|
|
_erpLocationItemAppService = erpLocationItemAppService; |
|
|
|
_itemBasicAppService = itemBasicAppService; |
|
|
|
_splitPackingRecAppService = splitPackingRecAppService; |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|