|
|
@ -1014,8 +1014,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
/// <param name="p_InvGroupNum">发票分组</param>
|
|
|
|
/// <param name="p_parentInvBillNum">原发票号</param>
|
|
|
|
[UnitOfWork(false)] |
|
|
|
public async Task<List<string>> SecInvoice<TDetail>(List<TDetail> p_list, List<PUB_ADJ_DETAIL> p_ajdlist, List<TEMP_CAN_SA_DETAIL> dtos, int p_version, string p_InvGroupNum, string p_parentInvBillNum, EnumBusinessType businessType) |
|
|
|
where TDetail : SA_CAN_BASE |
|
|
|
public async Task<List<string>> SecInvoice<TDetail>(List<TDetail> p_list, List<PUB_ADJ_DETAIL> p_ajdlist, List<TEMP_CAN_SA_DETAIL> dtos, int p_version, string p_InvGroupNum, string p_parentInvBillNum, EnumBusinessType businessType, List<TEMP_NOT_SA_DETAIL> p_notlist = null) |
|
|
|
where TDetail : SA_CAN_BASE |
|
|
|
{ |
|
|
|
List<string> _invls = new List<string>(); |
|
|
|
var groups1 = dtos.GroupBy(p => new { p.PartCode, p.LU, p.Price, p.BeginDate, p.EndDate, p.ContractDocID }).Select(p => new TMEP_INV |
|
|
@ -1028,7 +1028,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
Price = p.Key.Price, |
|
|
|
BeginDate = p.Key.BeginDate, |
|
|
|
EndDate = p.Key.EndDate |
|
|
|
|
|
|
|
}).ToList();//汇总记录不出现重复值
|
|
|
|
var groups = dtos.GroupBy(p => new { p.PartCode, p.LU, p.Price, p.BeginDate, p.EndDate, p.ContractDocID }).Select(p => new TMEP_INV |
|
|
|
{ |
|
|
@ -1040,30 +1039,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
ContractDocID = p.Key.ContractDocID, |
|
|
|
BeginDate = p.Key.BeginDate, |
|
|
|
EndDate = p.Key.EndDate |
|
|
|
|
|
|
|
}).ToList();//汇总记录不出现重复值
|
|
|
|
|
|
|
|
|
|
|
|
//var t1 = groups1.GroupBy(p => p.LU).Select(p => new { LU = p.Key, Amt = p.Sum(itm => itm.Qty * itm.Price) }).OrderByDescending(p => p.Amt).ToList();
|
|
|
|
//var group= t1.Where(p => p.Amt > 10000000).ToList();
|
|
|
|
|
|
|
|
////var t1 = groups1.GroupBy(p => p.LU).Select(p => new { LU = p.Key, Amt = p.Sum(itm => itm.Qty * itm.Price) }).OrderByDescending(p => p.Amt).ToList();
|
|
|
|
////var t2 = groups.GroupBy(p => p.LU).Select(p => new { LU = p.Key, Amt = p.Sum(itm => itm.Qty * itm.Price) }).OrderByDescending(p => p.Amt).ToList();
|
|
|
|
////foreach (var itm in t1)
|
|
|
|
////{
|
|
|
|
|
|
|
|
////}
|
|
|
|
////foreach (var itm in t2)
|
|
|
|
////{
|
|
|
|
|
|
|
|
////}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Dictionary<string, List<TMEP_INV>> invoiceMap = new Dictionary<string, List<TMEP_INV>>();//发票和发票明细关系
|
|
|
|
foreach (var group in groups) |
|
|
|
{ |
|
|
@ -1086,39 +1062,45 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
&& group.BeginDate == group1.BeginDate |
|
|
|
&& group.EndDate == group1.EndDate |
|
|
|
&& group1.ContractDocID == group.ContractDocID |
|
|
|
&& group1.Price == group.Price |
|
|
|
&& group1.Qty == group.Qty |
|
|
|
&& group1.Amt == group.Amt |
|
|
|
) |
|
|
|
{ |
|
|
|
tempList.Add(group1); |
|
|
|
partCount++;//符合条件加入到零件中
|
|
|
|
continue; |
|
|
|
} |
|
|
|
partCount++; |
|
|
|
if (partCount > 30) |
|
|
|
{ |
|
|
|
continue; |
|
|
|
} |
|
|
|
sum += group1.Amt; |
|
|
|
if (sum > 10000000) |
|
|
|
{ |
|
|
|
break; |
|
|
|
} |
|
|
|
sum += group1.Amt; |
|
|
|
tempList.Add(group1); |
|
|
|
} |
|
|
|
invoiceMap.Add(invoiceBillNum, tempList); |
|
|
|
|
|
|
|
|
|
|
|
var query = from itm in groups1 //更新分组
|
|
|
|
join itm1 in tempList |
|
|
|
on new { itm.LU, itm.BeginDate, itm.EndDate, itm.ContractDocID, itm.PartCode } |
|
|
|
equals new { itm1.LU, itm1.BeginDate, itm1.EndDate, itm1.ContractDocID, itm1.PartCode } into temp |
|
|
|
from tm in temp |
|
|
|
on |
|
|
|
new { itm.LU, itm.BeginDate, itm.EndDate, itm.ContractDocID, itm.PartCode, itm.Qty, itm.Price, itm.Amt } |
|
|
|
equals |
|
|
|
new { itm1.LU, itm1.BeginDate, itm1.EndDate, itm1.ContractDocID, itm1.PartCode, itm1.Qty, itm1.Price, itm1.Amt } |
|
|
|
into temp |
|
|
|
from tm in temp.DefaultIfEmpty() |
|
|
|
where tm == null |
|
|
|
select new TMEP_INV |
|
|
|
{ |
|
|
|
LU = itm.LU, |
|
|
|
Amt = itm.Amt, |
|
|
|
Qty = itm.Qty, |
|
|
|
Price = itm.Price, |
|
|
|
BeginDate = itm.BeginDate, |
|
|
|
ContractDocID = itm.ContractDocID, |
|
|
|
EndDate = itm.EndDate |
|
|
|
EndDate = itm.EndDate, |
|
|
|
PartCode = itm.PartCode, |
|
|
|
|
|
|
|
}; |
|
|
|
groups1 = query.ToList(); |
|
|
|
} |
|
|
@ -1131,6 +1113,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
var invlist = new List<INVOICE_GRP>(); |
|
|
|
var salist = new List<TDetail>(); |
|
|
|
var adjlist = new List<PUB_ADJ_DETAIL>(); |
|
|
|
int count = invoiceMap.Keys.Count;//计算第几张发票计数器
|
|
|
|
int i = 1; |
|
|
|
foreach (var group in invoiceMap) |
|
|
|
{ |
|
|
|
var key = group.Key;//发票票号
|
|
|
@ -1138,9 +1122,9 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
//反向查找结算数据
|
|
|
|
var query = from itm in dtos |
|
|
|
join itm1 in ls |
|
|
|
on new { itm.LU, itm.PartCode, itm.BeginDate, itm.EndDate } equals new { itm1.LU, itm1.PartCode, itm1.BeginDate, itm1.EndDate } |
|
|
|
on new { itm.LU, itm.PartCode, itm.BeginDate, itm.EndDate, itm.ContractDocID } equals new { itm1.LU, itm1.PartCode, itm1.BeginDate, itm1.EndDate, itm1.ContractDocID } |
|
|
|
join itm2 in p_list on new { itm.PartCode, itm.PN, itm.SettleDate } equals new { itm2.PartCode, itm2.PN, itm2.SettleDate } |
|
|
|
select itm2; |
|
|
|
select itm2;//反向更新可计算数据
|
|
|
|
foreach (var itm in query) |
|
|
|
{ |
|
|
|
itm.InvbillNum = key; |
|
|
@ -1157,7 +1141,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
foreach (var itm in query1) |
|
|
|
{ |
|
|
|
itm.InvBillNum = key; |
|
|
|
itm.InvGroupNum = dtos.FirstOrDefault().InvGroupNum; |
|
|
|
adjlist.Add(itm); |
|
|
|
} |
|
|
|
} |
|
|
@ -1186,30 +1169,67 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
{ |
|
|
|
detailList.AddRange(_entityDetailList); |
|
|
|
} |
|
|
|
|
|
|
|
List<tempAmt1> amtList = new List<tempAmt1>(); |
|
|
|
foreach (var itm in detailList) |
|
|
|
#region 发票不能结算的明细
|
|
|
|
var innotls = new List<INVOICE_NOT_SETTLE>(); |
|
|
|
var sq = query.GroupBy(p => new { p.LU, p.GroupNum }) |
|
|
|
.Select(p => new { version = p_version, LU = p.Key.LU, Qty = p.Sum(itm => itm.Qty), InvBillNum = group.Key, GroupNum = p.Key.GroupNum }); |
|
|
|
foreach (var sitm in sq) |
|
|
|
{ |
|
|
|
amtList.Add(new tempAmt1() |
|
|
|
{ |
|
|
|
Amt = itm.Amt, |
|
|
|
Tax = Math.Round(itm.Amt * 0.13m, 2), |
|
|
|
TaxAmt = itm.Amt + Math.Round(itm.Amt * 0.13m, 2) |
|
|
|
}); |
|
|
|
innotls.Add(new INVOICE_NOT_SETTLE( |
|
|
|
guid: GuidGenerator.Create(), |
|
|
|
version: p_version, |
|
|
|
invGroupNum: p_InvGroupNum, |
|
|
|
settleGroupNum: sitm.GroupNum, |
|
|
|
lU: sitm.LU, |
|
|
|
lU1: sitm.LU, |
|
|
|
extend1: "可结算", |
|
|
|
extend2: string.Empty, |
|
|
|
qty: sitm.Qty, |
|
|
|
p_invbillnum: group.Key |
|
|
|
)); |
|
|
|
} |
|
|
|
decimal amt = amtList.Sum(k => k.Amt);//金额
|
|
|
|
decimal txtAmt = amtList.Sum(k => k.TaxAmt);//税后金额
|
|
|
|
decimal readAmt = amtList.Sum(k => k.Tax);//税额
|
|
|
|
if (innotls.Count > 0) |
|
|
|
{ |
|
|
|
notDetialList.AddRange(innotls); |
|
|
|
} |
|
|
|
if (p_notlist != null && p_notlist.Count > 0) |
|
|
|
{ |
|
|
|
var innotls1 = new List<INVOICE_NOT_SETTLE>(); |
|
|
|
|
|
|
|
//decimal amt = detailList.Sum(k => k.Amt);//金额
|
|
|
|
//decimal txtAmt = detailList.Sum(k => k.Amt) + Math.Round(detailList.Sum(k => k.Amt) * 0.13m, 2);//税后金额
|
|
|
|
//decimal readAmt = Math.Round(detailList.Sum(k => k.Amt) * 0.13m, 2);//税额
|
|
|
|
var grouplist = query.Select(p => p.GroupNum).ToList(); |
|
|
|
|
|
|
|
var contractList = ls.Select(p => p.ContractDocID).Distinct(); |
|
|
|
var _groupList = dtos.Where(p => contractList.Contains(p.ContractDocID)).GroupBy(p => new { p.GroupNum }) |
|
|
|
.Select(p => new { GroupNum = p.Key.GroupNum, Amt = p.Sum(itm => itm.Amt) }).Distinct(); |
|
|
|
List<INVOICE_MAP_GROUP> group1 = new List<INVOICE_MAP_GROUP>(); |
|
|
|
|
|
|
|
var notlist = p_notlist.Where(p => grouplist.Contains(p.GroupNum)); |
|
|
|
|
|
|
|
foreach (var nitm in notlist) |
|
|
|
{ |
|
|
|
innotls1.Add(new INVOICE_NOT_SETTLE( |
|
|
|
guid: GuidGenerator.Create(), |
|
|
|
version: p_version, |
|
|
|
invGroupNum: p_InvGroupNum, |
|
|
|
settleGroupNum: nitm.GroupNum, |
|
|
|
lU: nitm.LU, |
|
|
|
lU1: nitm.LU, |
|
|
|
extend1: "不可结算", |
|
|
|
extend2: string.Empty, |
|
|
|
qty: nitm.Qty, |
|
|
|
p_invbillnum: group.Key |
|
|
|
)); |
|
|
|
} |
|
|
|
if (innotls.Count > 0) |
|
|
|
{ |
|
|
|
notDetialList.AddRange(innotls1); |
|
|
|
} |
|
|
|
} |
|
|
|
#endregion
|
|
|
|
decimal amt = ls.Sum(k => k.Amt);//金额
|
|
|
|
decimal txtAmt = Math.Round(amt * 0.13m, 2);//税后金额
|
|
|
|
decimal readAmt = amt + Math.Round(amt * 0.13m, 2);//税额
|
|
|
|
|
|
|
|
//var contractList = ls.Select(p => p.ContractDocID).Distinct();
|
|
|
|
var _groupList = query.GroupBy(p => new { p.GroupNum }) |
|
|
|
.Select(p => new { GroupNum = p.Key.GroupNum, Amt = p.Sum(itm => Math.Round(itm.Qty * itm.Price, 2)) }).Distinct(); |
|
|
|
List<INVOICE_MAP_GROUP> group1 = new List<INVOICE_MAP_GROUP>(); |
|
|
|
foreach (var en in _groupList) |
|
|
|
{ |
|
|
|
group1.Add( |
|
|
@ -1227,7 +1247,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
{ |
|
|
|
groupList.AddRange(group1); |
|
|
|
} |
|
|
|
|
|
|
|
var lst = dtos.Where(p => !string.IsNullOrEmpty(p.Site)).ToList(); |
|
|
|
string site = lst.FirstOrDefault().Site; |
|
|
|
string clientCode = string.Empty; |
|
|
@ -1244,47 +1263,310 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
var invbill = new INVOICE_GRP |
|
|
|
(guid: GuidGenerator.Create(), |
|
|
|
realnvBillNum: string.Empty, |
|
|
|
invbillNum: key, |
|
|
|
amt: amt, |
|
|
|
taxAmt: txtAmt, |
|
|
|
fileName: string.Empty, |
|
|
|
businessType: businessType, |
|
|
|
invGroupNum: p_InvGroupNum, |
|
|
|
state: SettleBillState.已开票, |
|
|
|
invoiceBillState: InvoiceBillState.正常, |
|
|
|
tax: 0.13m, |
|
|
|
parent: p_parentInvBillNum, |
|
|
|
preTaxDiff: 0, |
|
|
|
taxDiff: 0, |
|
|
|
clientCode: string.Empty, |
|
|
|
realAmt: readAmt |
|
|
|
); |
|
|
|
var invbill = new INVOICE_GRP |
|
|
|
(guid: GuidGenerator.Create(), |
|
|
|
realnvBillNum: string.Empty, |
|
|
|
invbillNum: key, |
|
|
|
amt: amt, |
|
|
|
taxAmt: txtAmt, |
|
|
|
fileName: string.Empty, |
|
|
|
businessType: businessType, |
|
|
|
invGroupNum: p_InvGroupNum, |
|
|
|
state: SettleBillState.已开票, |
|
|
|
invoiceBillState: InvoiceBillState.正常, |
|
|
|
tax: 0.13m, |
|
|
|
parent: p_parentInvBillNum, |
|
|
|
preTaxDiff: 0, |
|
|
|
taxDiff: 0, |
|
|
|
clientCode: string.Empty, |
|
|
|
realAmt: readAmt |
|
|
|
); |
|
|
|
invbill.ClientCode = clientCode; |
|
|
|
invbill.CreationTime = DateTime.MinValue; |
|
|
|
invbill.Site = dtos.FirstOrDefault().Site; |
|
|
|
invbill.LastModificationTime = DateTime.Now; |
|
|
|
invbill.Site = dtos.FirstOrDefault().Site; |
|
|
|
invlist.Add(invbill); |
|
|
|
} |
|
|
|
await _repository.DbContext.BulkInsertAsync(invlist).ConfigureAwait(false); |
|
|
|
await _repository.DbContext.BulkInsertAsync(groupList).ConfigureAwait(false); |
|
|
|
await _repository.DbContext.BulkInsertAsync(detailList).ConfigureAwait(false); |
|
|
|
|
|
|
|
var dbcontxt = await _repository.GetDbContextAsync().ConfigureAwait(false); |
|
|
|
//_dbcontext.BulkInsert(invlist);
|
|
|
|
//_dbcontext.BulkInsert(groupList);
|
|
|
|
//_dbcontext.BulkInsert(detailList);
|
|
|
|
//_dbcontext.BulkInsert(notDetialList);
|
|
|
|
//if (salist.Count > 0)
|
|
|
|
//{
|
|
|
|
// _dbcontext.BulkUpdate(salist);
|
|
|
|
//}
|
|
|
|
//if (adjlist.Count > 0)
|
|
|
|
//{
|
|
|
|
// _dbcontext.BulkUpdate(adjlist);
|
|
|
|
//}
|
|
|
|
await dbcontxt.BulkInsertAsync(invlist).ConfigureAwait(false); |
|
|
|
await dbcontxt.BulkInsertAsync(groupList).ConfigureAwait(false); |
|
|
|
await dbcontxt.BulkInsertAsync(detailList).ConfigureAwait(false); |
|
|
|
await dbcontxt.BulkInsertAsync(notDetialList).ConfigureAwait(false); |
|
|
|
if (salist.Count > 0) |
|
|
|
{ |
|
|
|
await _repository.DbContext.BulkUpdateAsync(salist).ConfigureAwait(false); |
|
|
|
await dbcontxt.BulkUpdateAsync(salist).ConfigureAwait(false); |
|
|
|
} |
|
|
|
if (adjlist.Count > 0) |
|
|
|
{ |
|
|
|
await _repository.DbContext.BulkUpdateAsync(adjlist).ConfigureAwait(false); |
|
|
|
await dbcontxt.BulkUpdateAsync(adjlist).ConfigureAwait(false); |
|
|
|
} |
|
|
|
//await _repository.DbContext.BulkInsertAsync(notDetialList);
|
|
|
|
_invls = invlist.Select(p => p.InvbillNum).ToList(); |
|
|
|
} |
|
|
|
return _invls; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
//public async Task<List<string>> SecInvoice<TDetail>(List<TDetail> p_list, List<PUB_ADJ_DETAIL> p_ajdlist, List<TEMP_CAN_SA_DETAIL> dtos, int p_version, string p_InvGroupNum, string p_parentInvBillNum, EnumBusinessType businessType)
|
|
|
|
// where TDetail : SA_CAN_BASE
|
|
|
|
//{
|
|
|
|
// List<string> _invls = new List<string>();
|
|
|
|
// var groups1 = dtos.GroupBy(p => new { p.PartCode, p.LU, p.Price, p.BeginDate, p.EndDate, p.ContractDocID }).Select(p => new TMEP_INV
|
|
|
|
// {
|
|
|
|
// PartCode = p.Key.PartCode,
|
|
|
|
// LU = p.Key.LU,
|
|
|
|
// Amt = p.Sum(itm => itm.Amt),
|
|
|
|
// Qty = p.Sum(itm => itm.Qty),
|
|
|
|
// ContractDocID = p.Key.ContractDocID,
|
|
|
|
// Price = p.Key.Price,
|
|
|
|
// BeginDate = p.Key.BeginDate,
|
|
|
|
// EndDate = p.Key.EndDate
|
|
|
|
|
|
|
|
// }).ToList();//汇总记录不出现重复值
|
|
|
|
// var groups = dtos.GroupBy(p => new { p.PartCode, p.LU, p.Price, p.BeginDate, p.EndDate, p.ContractDocID }).Select(p => new TMEP_INV
|
|
|
|
// {
|
|
|
|
// PartCode = p.Key.PartCode,
|
|
|
|
// LU = p.Key.LU,
|
|
|
|
// Amt = p.Sum(itm => itm.Amt),
|
|
|
|
// Qty = p.Sum(itm => itm.Qty),
|
|
|
|
// Price = p.Key.Price,
|
|
|
|
// ContractDocID = p.Key.ContractDocID,
|
|
|
|
// BeginDate = p.Key.BeginDate,
|
|
|
|
// EndDate = p.Key.EndDate
|
|
|
|
// }).ToList();//汇总记录不出现重复值
|
|
|
|
// Dictionary<string, List<TMEP_INV>> invoiceMap = new Dictionary<string, List<TMEP_INV>>();//发票和发票明细关系
|
|
|
|
// foreach (var group in groups)
|
|
|
|
// {
|
|
|
|
// int i = groups1.Count(p => p.LU == group.LU
|
|
|
|
// && p.PartCode == group.PartCode
|
|
|
|
// && p.BeginDate == group.BeginDate
|
|
|
|
// && p.EndDate == group.EndDate
|
|
|
|
// && p.ContractDocID == group.ContractDocID
|
|
|
|
// );
|
|
|
|
// if (i > 0)
|
|
|
|
// {
|
|
|
|
// string invoiceBillNum = OrderNumberGenerator.GenerateOrderNumber("CINV");
|
|
|
|
// List<TMEP_INV> tempList = new List<TMEP_INV>();
|
|
|
|
// decimal sum = group.Amt;//初始合计金额
|
|
|
|
// int partCount = 0;
|
|
|
|
// foreach (var group1 in groups1)
|
|
|
|
// {
|
|
|
|
// if (group.LU == group1.LU
|
|
|
|
// && group.PartCode == group1.PartCode
|
|
|
|
// && group.BeginDate == group1.BeginDate
|
|
|
|
// && group.EndDate == group1.EndDate
|
|
|
|
// && group1.ContractDocID == group.ContractDocID
|
|
|
|
// )
|
|
|
|
// {
|
|
|
|
// tempList.Add(group1);
|
|
|
|
// partCount++;//符合条件加入到零件中
|
|
|
|
// continue;
|
|
|
|
// }
|
|
|
|
// //partCount++;
|
|
|
|
// //if (partCount > 30)
|
|
|
|
// //{
|
|
|
|
// // continue;
|
|
|
|
// //}
|
|
|
|
// if (sum > 10000000)
|
|
|
|
// {
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// sum += group1.Amt;
|
|
|
|
// tempList.Add(group1);
|
|
|
|
// }
|
|
|
|
// invoiceMap.Add(invoiceBillNum, tempList);
|
|
|
|
// var query = from itm in groups1 //更新分组
|
|
|
|
// join itm1 in tempList
|
|
|
|
// on new { itm.LU, itm.BeginDate, itm.EndDate, itm.ContractDocID, itm.PartCode }
|
|
|
|
// equals new { itm1.LU, itm1.BeginDate, itm1.EndDate, itm1.ContractDocID, itm1.PartCode } into temp
|
|
|
|
// from tm in temp
|
|
|
|
// where tm == null
|
|
|
|
// select new TMEP_INV
|
|
|
|
// {
|
|
|
|
// LU = itm.LU,
|
|
|
|
// Amt = itm.Amt,
|
|
|
|
// Qty = itm.Qty,
|
|
|
|
// BeginDate = itm.BeginDate,
|
|
|
|
// ContractDocID = itm.ContractDocID,
|
|
|
|
// EndDate = itm.EndDate
|
|
|
|
// };
|
|
|
|
// groups1 = query.ToList();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// if (invoiceMap.Count > 0)
|
|
|
|
// {
|
|
|
|
// var groupList = new List<INVOICE_MAP_GROUP>();
|
|
|
|
// var notDetialList = new List<INVOICE_NOT_SETTLE>();
|
|
|
|
// var detailList = new List<INVOICE_WAIT_DETAIL>();
|
|
|
|
// var invlist = new List<INVOICE_GRP>();
|
|
|
|
// var salist = new List<TDetail>();
|
|
|
|
// var adjlist = new List<PUB_ADJ_DETAIL>();
|
|
|
|
// foreach (var group in invoiceMap)
|
|
|
|
// {
|
|
|
|
// var key = group.Key;//发票票号
|
|
|
|
// var ls = group.Value;//发票明细
|
|
|
|
// //反向查找结算数据
|
|
|
|
// var query = from itm in dtos
|
|
|
|
// join itm1 in ls
|
|
|
|
// on new { itm.LU, itm.PartCode, itm.BeginDate, itm.EndDate } equals new { itm1.LU, itm1.PartCode, itm1.BeginDate, itm1.EndDate }
|
|
|
|
// join itm2 in p_list on new { itm.PartCode, itm.PN, itm.SettleDate } equals new { itm2.PartCode, itm2.PN, itm2.SettleDate }
|
|
|
|
// select itm2;
|
|
|
|
// foreach (var itm in query)
|
|
|
|
// {
|
|
|
|
// itm.InvbillNum = key;
|
|
|
|
// salist.Add(itm);
|
|
|
|
// }
|
|
|
|
// if (!string.IsNullOrEmpty(p_parentInvBillNum))
|
|
|
|
// {
|
|
|
|
// //反向查找调整数据
|
|
|
|
// var query1 = from itm in dtos
|
|
|
|
// join itm1 in ls
|
|
|
|
// on new { itm.LU, itm.PartCode, itm.BeginDate, itm.EndDate } equals new { itm1.LU, itm1.PartCode, itm1.BeginDate, itm1.EndDate }
|
|
|
|
// join itm2 in p_ajdlist on new { itm.PartCode, itm.PN, itm.SettleDate } equals new { itm2.PartCode, itm2.PN, itm2.SettleDate }
|
|
|
|
// select itm2;
|
|
|
|
// foreach (var itm in query1)
|
|
|
|
// {
|
|
|
|
// itm.InvBillNum = key;
|
|
|
|
// itm.InvGroupNum = dtos.FirstOrDefault().InvGroupNum;
|
|
|
|
// adjlist.Add(itm);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// List<INVOICE_WAIT_DETAIL> _entityDetailList = new List<INVOICE_WAIT_DETAIL>();
|
|
|
|
// foreach (var detail in ls)
|
|
|
|
// {
|
|
|
|
// _entityDetailList.Add(
|
|
|
|
// new INVOICE_WAIT_DETAIL(
|
|
|
|
// guid: GuidGenerator.Create(),
|
|
|
|
// version: p_version,
|
|
|
|
// invbillNum: key,
|
|
|
|
// invGroupNum: p_InvGroupNum,
|
|
|
|
// lU: detail.LU,
|
|
|
|
// qty: detail.Qty,
|
|
|
|
// bussiessType: businessType,
|
|
|
|
// amt: detail.Amt,
|
|
|
|
// pRICE: detail.Price,
|
|
|
|
// extend1: detail.ContractDocID,
|
|
|
|
// extend2: string.Empty,
|
|
|
|
// beginDate: detail.BeginDate,
|
|
|
|
// endDate: detail.EndDate,
|
|
|
|
// partcode: detail.PartCode
|
|
|
|
// ));
|
|
|
|
// }
|
|
|
|
// if (_entityDetailList.Count > 0)
|
|
|
|
// {
|
|
|
|
// detailList.AddRange(_entityDetailList);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// List<tempAmt1> amtList = new List<tempAmt1>();
|
|
|
|
// foreach (var itm in detailList)
|
|
|
|
// {
|
|
|
|
// amtList.Add(new tempAmt1()
|
|
|
|
// {
|
|
|
|
// Amt = itm.Amt,
|
|
|
|
// Tax = Math.Round(itm.Amt * 0.13m, 2),
|
|
|
|
// TaxAmt = itm.Amt + Math.Round(itm.Amt * 0.13m, 2)
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
// decimal amt = amtList.Sum(k => k.Amt);//金额
|
|
|
|
// decimal txtAmt = amtList.Sum(k => k.TaxAmt);//税后金额
|
|
|
|
// decimal readAmt = amtList.Sum(k => k.Tax);//税额
|
|
|
|
|
|
|
|
// //decimal amt = detailList.Sum(k => k.Amt);//金额
|
|
|
|
// //decimal txtAmt = detailList.Sum(k => k.Amt) + Math.Round(detailList.Sum(k => k.Amt) * 0.13m, 2);//税后金额
|
|
|
|
// //decimal readAmt = Math.Round(detailList.Sum(k => k.Amt) * 0.13m, 2);//税额
|
|
|
|
|
|
|
|
// var contractList = ls.Select(p => p.ContractDocID).Distinct();
|
|
|
|
// var _groupList = dtos.Where(p => contractList.Contains(p.ContractDocID)).GroupBy(p => new { p.GroupNum })
|
|
|
|
// .Select(p => new { GroupNum = p.Key.GroupNum, Amt = p.Sum(itm => itm.Amt) }).Distinct();
|
|
|
|
// List<INVOICE_MAP_GROUP> group1 = new List<INVOICE_MAP_GROUP>();
|
|
|
|
|
|
|
|
// foreach (var en in _groupList)
|
|
|
|
// {
|
|
|
|
// group1.Add(
|
|
|
|
// new INVOICE_MAP_GROUP(
|
|
|
|
// guid: GuidGenerator.Create(),
|
|
|
|
// version: p_version,
|
|
|
|
// invbillNum: key,
|
|
|
|
// invGroupNum: p_InvGroupNum,
|
|
|
|
// settleGroupNum: en.GroupNum,
|
|
|
|
// amt: en.Amt,
|
|
|
|
// extend1: string.Empty,
|
|
|
|
// extend2: string.Empty));
|
|
|
|
// }
|
|
|
|
// if (group1.Count > 0)
|
|
|
|
// {
|
|
|
|
// groupList.AddRange(group1);
|
|
|
|
// }
|
|
|
|
|
|
|
|
// var lst = dtos.Where(p => !string.IsNullOrEmpty(p.Site)).ToList();
|
|
|
|
// string site = lst.FirstOrDefault().Site;
|
|
|
|
// string clientCode = string.Empty;
|
|
|
|
// switch (site)
|
|
|
|
// {
|
|
|
|
// case "1040":
|
|
|
|
// clientCode = "C001";
|
|
|
|
// break;
|
|
|
|
// case "1046":
|
|
|
|
// clientCode = "C171";
|
|
|
|
// break;
|
|
|
|
// default:
|
|
|
|
// clientCode = "C004";
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// }
|
|
|
|
// var invbill = new INVOICE_GRP
|
|
|
|
// (guid: GuidGenerator.Create(),
|
|
|
|
// realnvBillNum: string.Empty,
|
|
|
|
// invbillNum: key,
|
|
|
|
// amt: amt,
|
|
|
|
// taxAmt: txtAmt,
|
|
|
|
// fileName: string.Empty,
|
|
|
|
// businessType: businessType,
|
|
|
|
// invGroupNum: p_InvGroupNum,
|
|
|
|
// state: SettleBillState.已开票,
|
|
|
|
// invoiceBillState: InvoiceBillState.正常,
|
|
|
|
// tax: 0.13m,
|
|
|
|
// parent: p_parentInvBillNum,
|
|
|
|
// preTaxDiff: 0,
|
|
|
|
// taxDiff: 0,
|
|
|
|
// clientCode: string.Empty,
|
|
|
|
// realAmt: readAmt
|
|
|
|
// );
|
|
|
|
// invbill.ClientCode = clientCode;
|
|
|
|
// invbill.CreationTime = DateTime.MinValue;
|
|
|
|
// invbill.Site = dtos.FirstOrDefault().Site;
|
|
|
|
// invbill.LastModificationTime = DateTime.Now;
|
|
|
|
// invlist.Add(invbill);
|
|
|
|
// }
|
|
|
|
// await _repository.DbContext.BulkInsertAsync(invlist).ConfigureAwait(false);
|
|
|
|
// await _repository.DbContext.BulkInsertAsync(groupList).ConfigureAwait(false);
|
|
|
|
// await _repository.DbContext.BulkInsertAsync(detailList).ConfigureAwait(false);
|
|
|
|
// if (salist.Count > 0)
|
|
|
|
// {
|
|
|
|
// await _repository.DbContext.BulkUpdateAsync(salist).ConfigureAwait(false);
|
|
|
|
// }
|
|
|
|
// if (adjlist.Count > 0)
|
|
|
|
// {
|
|
|
|
// await _repository.DbContext.BulkUpdateAsync(adjlist).ConfigureAwait(false);
|
|
|
|
// }
|
|
|
|
// //await _repository.DbContext.BulkInsertAsync(notDetialList);
|
|
|
|
// _invls = invlist.Select(p => p.InvbillNum).ToList();
|
|
|
|
// }
|
|
|
|
// return _invls;
|
|
|
|
|
|
|
|
//}
|
|
|
|
[UnitOfWork(false)] |
|
|
|
public async Task<List<string>> FirstInvoice<TDetail>(List<TDetail> p_list, List<PUB_ADJ_DETAIL> p_adjlist, List<TEMP_CAN_SA_DETAIL> dtos, List<TEMP_NOT_SA_DETAIL> p_notlist, int p_version, string p_InvGroupNum, string p_parentInvBillNum, EnumBusinessType businessType) |
|
|
|
where TDetail : SA_CAN_BASE |
|
|
|