|
|
@ -11,13 +11,17 @@ using SettleAccount.Domain.BQ; |
|
|
|
using Win.Sfs.SettleAccount.Repository.SettleAccountJob.Report; |
|
|
|
using Shouldly; |
|
|
|
using Volo.Abp.BlobStoring; |
|
|
|
using Win.Sfs.SettleAccount.Reports; |
|
|
|
using Newtonsoft.Json.Schema; |
|
|
|
using Win.Sfs.SettleAccount; |
|
|
|
using Win.Sfs.SettleAccount.Entities.Prices; |
|
|
|
|
|
|
|
namespace SettleAccount.Job.Services.Report |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// Pub结算发运对比导出服务
|
|
|
|
/// </summary>
|
|
|
|
public class PubSaSeCompareExportService: ITransientDependency, IExportJob |
|
|
|
public class PubSaSeCompareExportService : ITransientDependency, IExportJob |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// Pub结算明细仓储
|
|
|
@ -29,6 +33,11 @@ namespace SettleAccount.Job.Services.Report |
|
|
|
/// </summary>
|
|
|
|
private readonly INormalEfCoreRepository<PUB_SE_DETAIL, Guid> _pubSeDetailRepository; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 替换件关系仓储
|
|
|
|
/// </summary>
|
|
|
|
private readonly INormalEfCoreRepository<TB_RePartsRelationship, Guid> _tbRePartsRelationshipRepository; |
|
|
|
|
|
|
|
private readonly PubSaSeCompareDapperRepository _pubSaSeCompareDapperRepository; |
|
|
|
|
|
|
|
private readonly IBlobContainer<MyFileContainer> _fileContainer; |
|
|
@ -38,11 +47,13 @@ namespace SettleAccount.Job.Services.Report |
|
|
|
/// </summary>
|
|
|
|
public PubSaSeCompareExportService(INormalEfCoreRepository<PUB_SA_DETAIL, Guid> pubSaDetailRepository, |
|
|
|
INormalEfCoreRepository<PUB_SE_DETAIL, Guid> pubSeDetailRepository, |
|
|
|
INormalEfCoreRepository<TB_RePartsRelationship, Guid> tbRePartsRelationshipRepository, |
|
|
|
PubSaSeCompareDapperRepository pubSaSeCompareDapperRepository, |
|
|
|
IBlobContainer<MyFileContainer> fileContainer) |
|
|
|
{ |
|
|
|
_pubSaDetailRepository = pubSaDetailRepository; |
|
|
|
_pubSeDetailRepository = pubSeDetailRepository; |
|
|
|
_tbRePartsRelationshipRepository = tbRePartsRelationshipRepository; |
|
|
|
_pubSaSeCompareDapperRepository = pubSaSeCompareDapperRepository; |
|
|
|
_fileContainer = fileContainer; |
|
|
|
} |
|
|
@ -55,21 +66,71 @@ namespace SettleAccount.Job.Services.Report |
|
|
|
var version = property.Where(p => p.Name == "Version").FirstOrDefault().Value; |
|
|
|
var businessType = property.Where(t => t.Name == "BusinessType").FirstOrDefault().Value; |
|
|
|
var filename = exportName.FirstOrDefault(); |
|
|
|
var pubSaSeCompareDiffs = _pubSaSeCompareDapperRepository.GetDetailDiffReportList(version, businessType); |
|
|
|
var pubSaSeCompareDiffs = _pubSaSeCompareDapperRepository.GetDetailDiffReportList(businessType); |
|
|
|
|
|
|
|
//有结算有发运
|
|
|
|
var haveSaHaveSe = new List<PubSaSeCompareDiff>(); |
|
|
|
//有结算无发运
|
|
|
|
var haveSaNotHaveSe = new List<PubSaSeCompareDiff>(); |
|
|
|
//无结算有发运
|
|
|
|
var notHaveSaHaveSe = new List<PubSaSeCompareDiff>(); |
|
|
|
|
|
|
|
haveSaHaveSe = pubSaSeCompareDiffs.FindAll(t => !string.IsNullOrEmpty(t.SaLU) && !string.IsNullOrEmpty(t.SeLU)); |
|
|
|
haveSaNotHaveSe = pubSaSeCompareDiffs.FindAll(t => !string.IsNullOrEmpty(t.SaLU) && string.IsNullOrEmpty(t.SeLU)); |
|
|
|
notHaveSaHaveSe = pubSaSeCompareDiffs.FindAll(t => string.IsNullOrEmpty(t.SaLU) && !string.IsNullOrEmpty(t.SeLU)); |
|
|
|
|
|
|
|
//二次对比(替换零件号)
|
|
|
|
var repLUs = notHaveSaHaveSe.Select(t => t.SeLU).Distinct().ToList(); |
|
|
|
var tbRePartsRelationships = _tbRePartsRelationshipRepository.GetListAsync(t => repLUs.Contains(t.RepLU) && ((int)t.BusinessType).ToString() == businessType).Result; |
|
|
|
|
|
|
|
tbRePartsRelationships.ForEach(tbRePartsRelationship => |
|
|
|
{ |
|
|
|
notHaveSaHaveSe.FindAll(t => t.SeLU == tbRePartsRelationship.RepLU).ForEach(t => |
|
|
|
{ |
|
|
|
t.RepLU = t.SeLU; |
|
|
|
t.SeLU = tbRePartsRelationship.LU; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pubSaSeCompareDiffs.Join() |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ExcelExporter excelExporter = new ExcelExporter(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//var add = from item1 in haveSaNotHaveSe
|
|
|
|
// join item2 in notHaveSaHaveSe
|
|
|
|
// on new { item1.SaLU, item1.SaPN }
|
|
|
|
// equals new { item2.SeLU, item2.SePN }
|
|
|
|
// into temp
|
|
|
|
// from itm3 in temp.DefaultIfEmpty()
|
|
|
|
// where itm3 == null
|
|
|
|
// select item1;
|
|
|
|
|
|
|
|
//var query = BlobProviderSelectorExtensions
|
|
|
|
|
|
|
|
ExcelExporter excelExporter = new ExcelExporter(); |
|
|
|
var result = excelExporter |
|
|
|
.Append(pubSaSeCompareDiffs, "差异明细表") |
|
|
|
.Append(pubSaSeCompareDiffs, "汇总表") |
|
|
|
.SeparateBySheet() |
|
|
|
.Append(pubSaSeCompareDiffs, "数量差异汇总表") |
|
|
|
.Append(haveSaHaveSe, "有结算有发运") |
|
|
|
.SeparateBySheet() |
|
|
|
.Append(pubSaSeCompareDiffs, "按物料价格差异明细表") |
|
|
|
.Append(haveSaNotHaveSe, "有结算无发运") |
|
|
|
.SeparateBySheet() |
|
|
|
.Append(pubSaSeCompareDiffs, "差异汇总验证表") |
|
|
|
.Append(notHaveSaHaveSe, "无结算有发运") |
|
|
|
.ExportAppendDataAsByteArray(); |
|
|
|
result.ShouldNotBeNull(); |
|
|
|
_fileContainer.SaveAsync(filename, result.Result, true); |
|
|
|
//_fileContainer.SaveAsync(filename, result.Result, true);
|
|
|
|
|
|
|
|
return id.ToString(); |
|
|
|
|
|
|
@ -148,141 +209,141 @@ namespace SettleAccount.Job.Services.Report |
|
|
|
public string ExportFile333(Guid id, List<string> exportName, List<CustomCondition> property) |
|
|
|
{ |
|
|
|
return ""; |
|
|
|
// var version = property.Where(p => p.Name == "Version").FirstOrDefault().Value;
|
|
|
|
|
|
|
|
// var _filename = exportName.FirstOrDefault();
|
|
|
|
|
|
|
|
// var _ls = _dapperRepository.GetDetailDiffReportList(version, materialCode, begin, end, cp7begin, cp7end, kenncode, chassisNumber, materialGroup);
|
|
|
|
// var diffList = _erpdapperRepository.GetSettleInvoiceDiff(version);
|
|
|
|
// foreach (var itm in _ls)
|
|
|
|
// {
|
|
|
|
// itm.InvoiceAmt = Math.Round(itm.InvoiceQty * itm.InvoicePrice, 2);
|
|
|
|
// itm.DiffPrice = itm.Price - itm.InvoicePrice;
|
|
|
|
// itm.DiffSettleFisQty = itm.SettledQty;
|
|
|
|
// }
|
|
|
|
// _ls = _ls.OrderBy(p => p.ChassisNumber).ThenBy(p => p.KENNCode).ThenBy(p => p.SapMaterialCode).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (!string.IsNullOrEmpty(materialGroup))
|
|
|
|
// {
|
|
|
|
// var _groupList = materialGroup.Split(new char[] { ',' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.MaterialGroup)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(kenncode))
|
|
|
|
// {
|
|
|
|
// var _groupList = kenncode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.KENNCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(chassisNumber))
|
|
|
|
// {
|
|
|
|
// var _groupList = chassisNumber.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.ChassisNumber)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(sapCode))
|
|
|
|
// {
|
|
|
|
// var _groupList = sapCode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.SapMaterialCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(materialCode))
|
|
|
|
// {
|
|
|
|
// var _groupList = materialCode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.MaterialCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// var _checkList = _erpdapperRepository.GetErrorBillList();
|
|
|
|
|
|
|
|
// var query = from itm in _ls
|
|
|
|
// join itm1 in _checkList on new { ChassisNumber = itm.ChassisNumber, MaterialCode = itm.MaterialCode, WmsBillNum = itm.WmsBillNum }
|
|
|
|
//equals new { ChassisNumber = itm1.BillNum, MaterialCode = itm1.MaterialCode, WmsBillNum = itm1.WmsBillNum } into temp1
|
|
|
|
// from tm1 in temp1.DefaultIfEmpty()
|
|
|
|
// where tm1 == null
|
|
|
|
// select itm;
|
|
|
|
|
|
|
|
|
|
|
|
// _ls = query.ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var _lsSum = _ls.GroupBy(p => new { p.MaterialCode, p.SapMaterialCode, p.MaterialGroup, p.InvoicePrice }).Select(p => new UnInvoiceSettledDetailSum
|
|
|
|
// {
|
|
|
|
// MaterialCode = p.Key.MaterialCode,
|
|
|
|
// SapMaterailCode = p.Key.SapMaterialCode,
|
|
|
|
// MaterialGroup = p.Key.MaterialGroup,
|
|
|
|
// SettleQty = p.Sum(itm => itm.SettledQty),
|
|
|
|
// FisQty = 0,
|
|
|
|
// DiffQty = -p.Sum(itm => itm.SettledQty),
|
|
|
|
// Price = p.Key.InvoicePrice,
|
|
|
|
// DiffAmt = p.Sum(itm => itm.SettledQty) * p.Key.InvoicePrice
|
|
|
|
// }).ToList();
|
|
|
|
|
|
|
|
// var _sumTotal = new UnInvoiceSettledDetailSum()
|
|
|
|
// {
|
|
|
|
|
|
|
|
// SettleQty = _lsSum.Sum(p => p.SettleQty),
|
|
|
|
// DiffQty = _lsSum.Sum(p => p.DiffQty),
|
|
|
|
// Price = _lsSum.Sum(p => p.Price),
|
|
|
|
// DiffAmt = _lsSum.Sum(p => p.DiffAmt)
|
|
|
|
|
|
|
|
|
|
|
|
// };
|
|
|
|
// _lsSum.Add(_sumTotal);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var _ls1 = DiffPrice(id, exportName, p_list);
|
|
|
|
|
|
|
|
// var report1List = _ls1.Where(p => p.DiffPrice != 0).GroupBy(p => new { p.MaterialGroup, p.MaterialCode, p.MaterialDesc, p.Price, p.InvoicePrice, p.DiffPrice, p.SapMaterialCode })
|
|
|
|
// .Select(t => new SettleDoorPanelExport { MaterialGroup = t.FirstOrDefault().MaterialGroup, MaterialCode = t.FirstOrDefault().MaterialCode, MaterialDesc = t.FirstOrDefault().MaterialDesc, Price = t.FirstOrDefault().Price, InvoicePrice = t.FirstOrDefault().InvoicePrice, InvoiceDiffPrice = t.FirstOrDefault().DiffPrice, SAPCode = t.FirstOrDefault().SapMaterialCode }).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var report2List = _ls1.Where(p => p.DiffPrice != 0).Select(p => new { p.MaterialGroup, DiffAmt = p.DiffPrice * p.Qty }).GroupBy(p => new { p.MaterialGroup }).Select(p => new SettleDoorPanelSumExport { MaterialGroup = p.Key.MaterialGroup, InvoiceDiffPrice = p.Sum(itm => itm.DiffAmt), Version = version });
|
|
|
|
|
|
|
|
// var list1 = LSettleSum(id, exportName, p_list);
|
|
|
|
|
|
|
|
// var report1 = report2List.ToList();
|
|
|
|
|
|
|
|
// foreach (var itm in list1)
|
|
|
|
// {
|
|
|
|
// itm.MaterialGroup = itm.MaterialGroup + "(漏结)";
|
|
|
|
// }
|
|
|
|
|
|
|
|
// report1.AddRange(list1);
|
|
|
|
|
|
|
|
// ExcelExporter _exporter = new ExcelExporter();//导出Excel
|
|
|
|
|
|
|
|
// var result = _exporter
|
|
|
|
// .Append(_ls, "差异明细表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(_lsSum, "数量差异汇总表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(report1List, "按物料价格差异明细表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(report1, "差异汇总验证表")
|
|
|
|
// .ExportAppendDataAsByteArray();
|
|
|
|
// result.ShouldNotBeNull();
|
|
|
|
// _fileContainer.SaveAsync(_filename, result.Result, true);
|
|
|
|
// var version = property.Where(p => p.Name == "Version").FirstOrDefault().Value;
|
|
|
|
|
|
|
|
// var _filename = exportName.FirstOrDefault();
|
|
|
|
|
|
|
|
// var _ls = _dapperRepository.GetDetailDiffReportList(version, materialCode, begin, end, cp7begin, cp7end, kenncode, chassisNumber, materialGroup);
|
|
|
|
// var diffList = _erpdapperRepository.GetSettleInvoiceDiff(version);
|
|
|
|
// foreach (var itm in _ls)
|
|
|
|
// {
|
|
|
|
// itm.InvoiceAmt = Math.Round(itm.InvoiceQty * itm.InvoicePrice, 2);
|
|
|
|
// itm.DiffPrice = itm.Price - itm.InvoicePrice;
|
|
|
|
// itm.DiffSettleFisQty = itm.SettledQty;
|
|
|
|
// }
|
|
|
|
// _ls = _ls.OrderBy(p => p.ChassisNumber).ThenBy(p => p.KENNCode).ThenBy(p => p.SapMaterialCode).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// if (!string.IsNullOrEmpty(materialGroup))
|
|
|
|
// {
|
|
|
|
// var _groupList = materialGroup.Split(new char[] { ',' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.MaterialGroup)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(kenncode))
|
|
|
|
// {
|
|
|
|
// var _groupList = kenncode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.KENNCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(chassisNumber))
|
|
|
|
// {
|
|
|
|
// var _groupList = chassisNumber.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.ChassisNumber)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(sapCode))
|
|
|
|
// {
|
|
|
|
// var _groupList = sapCode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.SapMaterialCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(materialCode))
|
|
|
|
// {
|
|
|
|
// var _groupList = materialCode.Split(new char[] { '\n' }).Distinct().ToList();
|
|
|
|
// if (_groupList.Count() > 0)
|
|
|
|
// {
|
|
|
|
// _ls = _ls.Where(p => _groupList.Contains(p.MaterialCode)).ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
// var _checkList = _erpdapperRepository.GetErrorBillList();
|
|
|
|
|
|
|
|
// var query = from itm in _ls
|
|
|
|
// join itm1 in _checkList on new { ChassisNumber = itm.ChassisNumber, MaterialCode = itm.MaterialCode, WmsBillNum = itm.WmsBillNum }
|
|
|
|
//equals new { ChassisNumber = itm1.BillNum, MaterialCode = itm1.MaterialCode, WmsBillNum = itm1.WmsBillNum } into temp1
|
|
|
|
// from tm1 in temp1.DefaultIfEmpty()
|
|
|
|
// where tm1 == null
|
|
|
|
// select itm;
|
|
|
|
|
|
|
|
|
|
|
|
// _ls = query.ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var _lsSum = _ls.GroupBy(p => new { p.MaterialCode, p.SapMaterialCode, p.MaterialGroup, p.InvoicePrice }).Select(p => new UnInvoiceSettledDetailSum
|
|
|
|
// {
|
|
|
|
// MaterialCode = p.Key.MaterialCode,
|
|
|
|
// SapMaterailCode = p.Key.SapMaterialCode,
|
|
|
|
// MaterialGroup = p.Key.MaterialGroup,
|
|
|
|
// SettleQty = p.Sum(itm => itm.SettledQty),
|
|
|
|
// FisQty = 0,
|
|
|
|
// DiffQty = -p.Sum(itm => itm.SettledQty),
|
|
|
|
// Price = p.Key.InvoicePrice,
|
|
|
|
// DiffAmt = p.Sum(itm => itm.SettledQty) * p.Key.InvoicePrice
|
|
|
|
// }).ToList();
|
|
|
|
|
|
|
|
// var _sumTotal = new UnInvoiceSettledDetailSum()
|
|
|
|
// {
|
|
|
|
|
|
|
|
// SettleQty = _lsSum.Sum(p => p.SettleQty),
|
|
|
|
// DiffQty = _lsSum.Sum(p => p.DiffQty),
|
|
|
|
// Price = _lsSum.Sum(p => p.Price),
|
|
|
|
// DiffAmt = _lsSum.Sum(p => p.DiffAmt)
|
|
|
|
|
|
|
|
|
|
|
|
// };
|
|
|
|
// _lsSum.Add(_sumTotal);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var _ls1 = DiffPrice(id, exportName, p_list);
|
|
|
|
|
|
|
|
// var report1List = _ls1.Where(p => p.DiffPrice != 0).GroupBy(p => new { p.MaterialGroup, p.MaterialCode, p.MaterialDesc, p.Price, p.InvoicePrice, p.DiffPrice, p.SapMaterialCode })
|
|
|
|
// .Select(t => new SettleDoorPanelExport { MaterialGroup = t.FirstOrDefault().MaterialGroup, MaterialCode = t.FirstOrDefault().MaterialCode, MaterialDesc = t.FirstOrDefault().MaterialDesc, Price = t.FirstOrDefault().Price, InvoicePrice = t.FirstOrDefault().InvoicePrice, InvoiceDiffPrice = t.FirstOrDefault().DiffPrice, SAPCode = t.FirstOrDefault().SapMaterialCode }).ToList();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// var report2List = _ls1.Where(p => p.DiffPrice != 0).Select(p => new { p.MaterialGroup, DiffAmt = p.DiffPrice * p.Qty }).GroupBy(p => new { p.MaterialGroup }).Select(p => new SettleDoorPanelSumExport { MaterialGroup = p.Key.MaterialGroup, InvoiceDiffPrice = p.Sum(itm => itm.DiffAmt), Version = version });
|
|
|
|
|
|
|
|
// var list1 = LSettleSum(id, exportName, p_list);
|
|
|
|
|
|
|
|
// var report1 = report2List.ToList();
|
|
|
|
|
|
|
|
// foreach (var itm in list1)
|
|
|
|
// {
|
|
|
|
// itm.MaterialGroup = itm.MaterialGroup + "(漏结)";
|
|
|
|
// }
|
|
|
|
|
|
|
|
// report1.AddRange(list1);
|
|
|
|
|
|
|
|
// ExcelExporter _exporter = new ExcelExporter();//导出Excel
|
|
|
|
|
|
|
|
// var result = _exporter
|
|
|
|
// .Append(_ls, "差异明细表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(_lsSum, "数量差异汇总表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(report1List, "按物料价格差异明细表")
|
|
|
|
// .SeparateBySheet()
|
|
|
|
// .Append(report1, "差异汇总验证表")
|
|
|
|
// .ExportAppendDataAsByteArray();
|
|
|
|
// result.ShouldNotBeNull();
|
|
|
|
// _fileContainer.SaveAsync(_filename, result.Result, true);
|
|
|
|
|
|
|
|
// //_outputService.Export<InvoiceSettledDetailDiff>(id, string.Format("大众结算未发运核对明细表_{0}.xlsx", Guid.NewGuid().ToString()), _ls);
|
|
|
|
// //_outputService.Export<InvoiceSettledDetailDiff>(id, string.Format("大众结算未发运核对明细表_{0}.xlsx", Guid.NewGuid().ToString()), _ls);
|
|
|
|
|
|
|
|
// return id.ToString();
|
|
|
|
// return id.ToString();
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|