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.
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Application.Dtos;
|
|
using DS.WMS.Core.Fee.Dtos;
|
|
|
|
namespace DS.WMS.Core.Invoice.Interface
|
|
{
|
|
/// <summary>
|
|
/// 自由开票
|
|
/// </summary>
|
|
public interface IFreeInvoiceService : IInvoiceService<Entity.Invoice>
|
|
{
|
|
/// <summary>
|
|
/// 获取待开票的业务列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<BizInvoiceApplication>>> GetBizListAsync(PageRequest<FeeRange?> request);
|
|
|
|
/// <summary>
|
|
/// 根据业务编号及类型获取费用记录
|
|
/// </summary>
|
|
/// <param name="items">业务ID与业务类型</param>
|
|
/// <returns></returns>
|
|
Task<DataResult<InvoiceApplicaitonBiz>> GetFeesAsync(params FeeClient[] items);
|
|
|
|
/// <summary>
|
|
/// 根据业务编号及类型获取该票业务的币别
|
|
/// </summary>
|
|
/// <param name="items">业务ID与业务类型</param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<FeeClient>>> GetCurrenciesAsync(params FeeClient[] items);
|
|
|
|
}
|
|
}
|