From 0c33b7a5060150f9fd7f0f1b10178bf555e92fab Mon Sep 17 00:00:00 2001
From: wanggang <76527413@qq.com>
Date: Thu, 10 Aug 2023 10:35:17 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AF=84=E5=94=AE=E5=BA=93=E8=A1=A5=E8=B4=A7?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AF=BC=E5=87=BA=E6=8E=A5=E5=8F=A3?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../Entities/BQ/VmiAppService.cs | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs
index 2eb091e0..1fbedb52 100644
--- a/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs
+++ b/code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/VmiAppService.cs
@@ -423,10 +423,18 @@ public class VmiAppService : ApplicationService, IVmiService, IJobService, ITran
return fileName;
}
- [HttpGet]
- public void VmiLogInsertTest()
+ ///
+ /// 补货数据导出
+ ///
+ [HttpPost]
+ public async Task ReplenishedExportAsync(RequestDto input)
{
- new InfluxHelper(_cfg).Insert(new VmiLog(GuidGenerator.Create()));
+ var entities = await _logRepository.WhereIf(input.Filters?.Count != 0, input.Filters.ToLambda())
+ .ToListAsync().ConfigureAwait(false);
+ var fileName = $"补货数据_{DateTime.Now.ToString("yyyy-MM-dd_HH:mm:ss")}.xlsx";
+ var content = this.GetContent(entities, "补货数据_");
+ await _fileContainer.SaveAsync(fileName, content, true).ConfigureAwait(false);
+ return fileName;
}
///