You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
768 B
C#
27 lines
768 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Application.Dtos;
|
|
using DS.WMS.Core.Invoice.Dtos;
|
|
|
|
namespace DS.WMS.Core.Settlement.Interface
|
|
{
|
|
/// <summary>
|
|
/// 发票结算
|
|
/// </summary>
|
|
public interface IInvoiceSettlementService
|
|
{
|
|
/// <summary>
|
|
/// 获取待结算的发票申请列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<InvoiceDto>>> GetInvoiceListAsync(PageRequest request);
|
|
|
|
/// <summary>
|
|
/// 获取发票申请费用明细
|
|
/// </summary>
|
|
/// <param name="ids"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<ApplicationDetailDto>>> GetInvoiceDetailsAsync(params long[] ids);
|
|
}
|
|
}
|