// Admin.NET 项目的版权、商标、专利和其他相关权利均受相应法律法规的保护。使用本项目应遵守相关法律法规和许可证的要求。 // // 本项目主要遵循 MIT 许可证和 Apache 许可证(版本 2.0)进行分发和使用。许可证位于源代码树根目录中的 LICENSE-MIT 和 LICENSE-APACHE 文件。 // // 不得利用本项目从事危害国家安全、扰乱社会秩序、侵犯他人合法权益等法律法规禁止的活动!任何基于本项目二次开发而产生的一切法律纠纷和责任,我们不承担任何责任! using Admin.NET.Core; using Admin.NET.Core.Service; using Furion.Schedule; using Microsoft.Extensions.DependencyInjection; using Newtonsoft.Json; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Vistar.Application.Entity; using Vistar.Application.Service.MaterialManagement; using Vistar.Application.Util; namespace Vistar.Application.Job.ProductManagement; [JobDetail("job_SyncProductManagementBomToSap", Description = "产品管理同步bom到SAP", GroupName = "default", Concurrent = false)] [PeriodMinutes(5, TriggerId = "trigger_SyncProductManagementBomToSapJob", Description = "产品管理同步bom到SAP", RunOnStart = false)] public class SyncProductManagementBomToSap : IJob { private readonly IServiceScopeFactory _scopeFactory; public ProductManagementService _productManagement; public SyncProductManagementBomToSap(IServiceScopeFactory scopeFactory, ProductManagementService productManagement) { _scopeFactory = scopeFactory; _productManagement = productManagement; } public async Task ExecuteAsync(JobExecutingContext context, CancellationToken stoppingToken) { DateTime startTime = DateTime.Now; using var serviceScope = _scopeFactory.CreateScope(); var db = serviceScope.ServiceProvider.GetRequiredService().AsTenant().GetConnectionScope("启威星 1.94.4.74").CopyNew(); var syncData = db.CopyNew().Queryable() .InnerJoin((x, y) => x.RecordGuid == y.ParentGuid && x.VersionIndex == y.ParentVersion) .Where((x, y) => (x.CheckedStatus == 0 || x.CheckedStatus == 1) && x.fld005324 == "发布" && x.deleted == false && x.IsLatestVersion == true && x.fld004311 == "成功" && x.fld004312 == "N" && (x.fld004316 == "A" || x.fld004316 == "M") && y.ConfigId == 1 && y.isDeleted == false && (y.fld005586 != "不包含" || y.fld005586 == null)) .Select((x, y) => new { x.idRecord, x.VersionIndex, x._System_objNBS, x.RecordGuid, x.fld004944_Rec, x.fld005288, x.fld004942, x.fld004325, x.fld004945, y.ParentGuid, y.ParentVersion, y.ChildGuid, y.ChildObjID, y.childVersion, y.ConfigId, y.Quantity, y.PartNumber, y.fld004936, y.fld004937, y.fld004938, y.fld004939, y.fld004940, y.fld004492, y.fld004941 }).ToList(); var syncList = syncData.GroupBy(record => record.RecordGuid) .Select(group => new SyncBomData { Id = group.FirstOrDefault()?.idRecord, MaterialCode = group.FirstOrDefault()?._System_objNBS, RecordGuid = group.FirstOrDefault()?.RecordGuid, SyncVersion = group.FirstOrDefault()?.fld005288, Bmeng = group.FirstOrDefault()?.fld004942 != null ? (int?)(float)group.FirstOrDefault()?.fld004942 : null, Werks = group.FirstOrDefault()?.fld004325, Datuv = group.FirstOrDefault()?.fld004945, VersionIndex = group.FirstOrDefault()?.VersionIndex, //Ecn = group.FirstOrDefault()?.ecn, ecnGuid = group.FirstOrDefault()?.fld004944_Rec, Bom = group.Select(g => new BomData { PartNumber = g.PartNumber, ParentGuid = g.ParentGuid, ChildGuid = g.ChildGuid, ChildObjID = g.ChildObjID, ConfigId = g.ConfigId, childVersion = g.childVersion, ParentVersion = g.VersionIndex, Quantity = g.Quantity, SORTF = g.fld004936, ITISOB = g.fld004937, ALPGR = g.fld004938, ALPRF = g.fld004939, ZDELETE = g.fld004940, POSTP = g.fld004492, ZYFMK = g.fld004941 }).ToList() }); List sapOutputs = new List(); int batchSize = 20; // 每批的大小 int totalCount = syncList.ToList().Count; for (int i = 0; i < totalCount; i += batchSize) { var batch = syncList.Skip(i).Take(batchSize); // 分批获取数据 // 处理当前批次的数据 var tasks = batch.Select(async item => { var output = await _productManagement.SyncBomToSap(item); return output; }).ToList(); var bomStockInquiryOutput = await Task.WhenAll(tasks); // 等待当前批次的所有任务完成 // 合并当前批次的结果 sapOutputs.AddRange(bomStockInquiryOutput); // 如果需要暂停或者处理频率,可以在此处插入适当的延迟。 // await Task.Delay(1000); // 如果需要等待1秒,可以启用此行代码。 } var json = JsonConvert.SerializeObject(sapOutputs); //var tasks = syncList.Select(async item => //{ // var output = await _productDesignLibrary.SyncBomToSap(item); // return output; //}); //var bomStockInquiryOutput = await Task.WhenAll(tasks); //var json = JsonConvert.SerializeObject(bomStockInquiryOutput.ToList()); var dbMain = serviceScope.ServiceProvider.GetRequiredService().AsTenant().GetConnectionScope("1300000000001").CopyNew(); string output = json; var elapsedMilliseconds = (DateTime.Now - startTime).TotalMilliseconds; if (totalCount == 0) { output = "未查询到符合条件的记录"; } dbMain.CopyNew().Insertable(new { TaskName = "产品管理同步bom到SAP", LogDateTime = DateTime.Now, ReturnResult = output, Elapsed = elapsedMilliseconds.ToLong() }).ExecuteCommand(); } }