Browse Source

导出退拆导出

dev_DY_CC
lvzb 1 year ago
parent
commit
1771934d5a
  1. 4
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/ProductRecycleNotes/IProductRecycleNoteAppService.cs
  2. 6
      be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/ProductRecycleNotes/ProductRecycleNoteAppService.cs

4
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/ProductRecycleNotes/IProductRecycleNoteAppService.cs

@ -1,4 +1,6 @@
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Win_in.Sfs.Shared.Application.Contracts;
namespace Win_in.Sfs.Wms.Store.Application.Contracts;
@ -6,5 +8,5 @@ public interface IProductRecycleNoteAppService :
ISfsStoreMasterReadOnlyAppServiceBase<ProductRecycleNoteDTO, SfsStoreRequestInputBase, ProductRecycleNoteDetailDTO, SfsStoreRequestInputBase>
{
Task<ProductRecycleNoteDTO> CreateAsync(ProductRecycleNoteEditInput input);
Task<IActionResult> ExportProductRecycleAsync(SfsExportRequestInput requestInput);
}

6
be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application/Notes/ProductRecycleNotes/ProductRecycleNoteAppService.cs

@ -94,10 +94,10 @@ public class ProductRecycleNoteAppService :
/// <summary>
/// 导出报废
/// 导出退拆导出
/// </summary>
[HttpPost("export-scrap")]
public virtual async Task<IActionResult> ExportScrapAsync(SfsExportRequestInput requestInput)
[HttpPost("export-product-recycle")]
public virtual async Task<IActionResult> ExportProductRecycleAsync(SfsExportRequestInput requestInput)
{
try
{

Loading…
Cancel
Save