出库信息导出

This commit is contained in:
18942506660
2024-04-23 11:15:42 +08:00
parent 7f110d3dfd
commit 1cfe4e0c93
11 changed files with 303 additions and 10 deletions

View File

@@ -7,6 +7,7 @@ using WMS.Web.Core.Dto.Erp.OutStock;
using WMS.Web.Core.Dto.Login;
using WMS.Web.Core.Dto.OutStockTask;
using WMS.Web.Core.Internal.Results;
using Microsoft.Extensions.DependencyInjection;
namespace WMS.Web.Domain.IService.Public
{
@@ -62,6 +63,12 @@ namespace WMS.Web.Domain.IService.Public
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
Task<Result<OutStockTaskInfoResponse>> GetInfo(int id, LoginInDto loginInfo);
Task<Result<OutStockTaskInfoResponse>> GetInfo(int id, LoginInDto loginInfo, IServiceScope scope = null);
/// <summary>
/// 导出详情
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
Task ExportInfo(OperateRequest dto,string fileName, LoginInDto loginInfo);
}
}