|
@@ -25,6 +25,7 @@ using System.Data.OleDb;
|
|
|
using System.Diagnostics;
|
|
|
using System.Globalization;
|
|
|
using System.IO.Compression;
|
|
|
+using NPOI.SS.Formula.Functions;
|
|
|
|
|
|
namespace OASystem.API.Controllers
|
|
|
{
|
|
@@ -4274,6 +4275,23 @@ Group by PriceType ", dto.diId);
|
|
|
return dtTest;
|
|
|
}
|
|
|
|
|
|
+ /// <summary>
|
|
|
+ /// 信用卡对账--基础数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="file"></param>
|
|
|
+ /// <param name="cardType"></param>
|
|
|
+ /// <param name="beginDt"></param>
|
|
|
+ /// <param name="endDt"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost]
|
|
|
+ [ProducesResponseType(typeof(JsonView), StatusCodes.Status200OK)]
|
|
|
+ public async Task<IActionResult> PostCreditCardBillInit()
|
|
|
+ {
|
|
|
+ var data = await _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0 && x.STid == 15).Select(x => new { x.Id,x.Name}).ToListAsync();
|
|
|
+
|
|
|
+ return Ok(JsonView(true, "操作成功!", data));
|
|
|
+ }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 信用卡对账
|
|
|
/// </summary>
|