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.
51 lines
1.5 KiB
C#
51 lines
1.5 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.WMS.Core.Fee.Dtos;
|
|
using DS.WMS.Core.Flow.Dtos;
|
|
using DS.WMS.Core.Invoice.Dtos;
|
|
using DS.WMS.Core.Invoice.Entity;
|
|
using DS.WMS.Core.Invoice.Interface;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DS.WMS.FeeApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 进项发票API
|
|
/// </summary>
|
|
public class InInvoicetController : ApiController
|
|
{
|
|
readonly IInInvoiceService _ininvoice;
|
|
|
|
/// <summary>
|
|
/// 初始化
|
|
/// </summary>
|
|
/// <param name="auditService"></param>
|
|
public InInvoicetController(IInInvoiceService InvoiceService)
|
|
{
|
|
_ininvoice = InvoiceService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取进项发票列表
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("GetInInvoicet")]
|
|
public async Task<DataResult<List<GetInInvoiceListOutPut>>> GetInInvoicetList(PageRequest<GetInInvoicetInput> model)
|
|
{
|
|
return await _ininvoice.GetInInvoicetList(model);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取进项发票详情
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("GetInInvoicetDetail")]
|
|
public async Task<DataResult<GetDetailInfo>> GetInInvoicetDetailInfo(GetDetailInfoInput model)
|
|
{
|
|
return await _ininvoice.GetInInvoicetDetailInfo(model);
|
|
}
|
|
}
|
|
}
|