|
@ -21,7 +21,6 @@ using Microsoft.AspNetCore.SignalR; |
|
|
using Microsoft.EntityFrameworkCore; |
|
|
using Microsoft.EntityFrameworkCore; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
using Microsoft.OpenApi.Extensions; |
|
|
|
|
|
using RestSharp.Extensions; |
|
|
using RestSharp.Extensions; |
|
|
using SettleAccount.Job.SignalR; |
|
|
using SettleAccount.Job.SignalR; |
|
|
using SqlSugar; |
|
|
using SqlSugar; |
|
@ -37,6 +36,7 @@ using Win.Sfs.SettleAccount.Entities.BQ.Dtos; |
|
|
using Win.Sfs.SettleAccount.Entities.BQ.Vmi; |
|
|
using Win.Sfs.SettleAccount.Entities.BQ.Vmi; |
|
|
using Win.Sfs.Shared.Filter; |
|
|
using Win.Sfs.Shared.Filter; |
|
|
using Win.Sfs.Shared.RepositoryBase; |
|
|
using Win.Sfs.Shared.RepositoryBase; |
|
|
|
|
|
using Win.Sfs.Shared; |
|
|
|
|
|
|
|
|
namespace Win.Sfs.SettleAccount.Entities.BQ; |
|
|
namespace Win.Sfs.SettleAccount.Entities.BQ; |
|
|
|
|
|
|
|
@ -295,7 +295,7 @@ public class VmiAppService : Controller, IApplicationService, IJobService, ITran |
|
|
[HttpPost] |
|
|
[HttpPost] |
|
|
public async Task<string> LogExport(RequestDto input) |
|
|
public async Task<string> LogExport(RequestDto input) |
|
|
{ |
|
|
{ |
|
|
var entities = await _logRepository.GetListByFilterAsync(input.Filters, input.Sorting, input.MaxResultCount, input.SkipCount).ConfigureAwait(false); |
|
|
var entities = await _logRepository.GetListByFilterAsync(input.Filters, input.Sorting).ConfigureAwait(false); |
|
|
var fileName = $"库存事务_{DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss")}.xlsx"; |
|
|
var fileName = $"库存事务_{DateTime.Now.ToString("yyyy-MM-dd_HH-mm-ss")}.xlsx"; |
|
|
var content = this.GetContent(entities, "库存事务_"); |
|
|
var content = this.GetContent(entities, "库存事务_"); |
|
|
await _fileContainer.SaveAsync(fileName, content, true).ConfigureAwait(false); |
|
|
await _fileContainer.SaveAsync(fileName, content, true).ConfigureAwait(false); |
|
@ -514,7 +514,7 @@ public class VmiAppService : Controller, IApplicationService, IJobService, ITran |
|
|
} |
|
|
} |
|
|
else if (propertyType.IsEnum) |
|
|
else if (propertyType.IsEnum) |
|
|
{ |
|
|
{ |
|
|
cell.Value = (Enum.Parse(propertyType, value) as Enum)?.GetDisplayName(); |
|
|
cell.Value = (Enum.Parse(propertyType, value) as Enum)?.GetDisplayName(); |
|
|
} |
|
|
} |
|
|
else if (propertyType == typeof(DateTime)) |
|
|
else if (propertyType == typeof(DateTime)) |
|
|
{ |
|
|
{ |
|
|