|
|
@ -1,3 +1,5 @@ |
|
|
|
using Microsoft.EntityFrameworkCore; |
|
|
|
using Microsoft.Extensions.Logging; |
|
|
|
using SettleAccount.Bases; |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
@ -52,6 +54,31 @@ namespace Win.Sfs.SettleAccount.Bases.DomainServices |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static async Task DoWorkBulkWithTransaction(DbContext dbContext, Action p_dowork) |
|
|
|
{ |
|
|
|
using (var transaction = await dbContext.Database.BeginTransactionAsync()) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
|
// 执行批量数据操作
|
|
|
|
p_dowork(); |
|
|
|
// 提交事务
|
|
|
|
await transaction.CommitAsync(); |
|
|
|
} |
|
|
|
catch (Exception) |
|
|
|
{ |
|
|
|
// 回滚事务
|
|
|
|
await transaction.RollbackAsync(); |
|
|
|
|
|
|
|
|
|
|
|
throw; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public async Task<List<string>> CheckBase(List<string> p_list, BASE_CONF p_config) |
|
|
|
{ |
|
|
@ -67,7 +94,6 @@ namespace Win.Sfs.SettleAccount.Bases.DomainServices |
|
|
|
from tm in temp.DefaultIfEmpty() |
|
|
|
where tm == null |
|
|
|
select itm; |
|
|
|
|
|
|
|
foreach (var itm1 in query.ToList()) |
|
|
|
{ |
|
|
|
errorList.Add(itm1); |
|
|
@ -75,7 +101,6 @@ namespace Win.Sfs.SettleAccount.Bases.DomainServices |
|
|
|
} |
|
|
|
if (p_config.IsMaterial == true) |
|
|
|
{ |
|
|
|
|
|
|
|
var materialList = await _materialRepository.ToListAsync(); |
|
|
|
var query = from itm in partList |
|
|
|
join itm1 in materialList on itm equals itm1.MaterialCode |
|
|
|