|
@ -1403,7 +1403,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
); |
|
|
); |
|
|
string site = dtos.Where(p => !string.IsNullOrEmpty(p.Site)).FirstOrDefault().Site; |
|
|
string site = dtos.Where(p => !string.IsNullOrEmpty(p.Site)).FirstOrDefault().Site; |
|
|
string clientCode = string.Empty; |
|
|
string clientCode = string.Empty; |
|
|
|
|
|
|
|
|
switch (site) |
|
|
switch (site) |
|
|
{ |
|
|
{ |
|
|
case "1040": |
|
|
case "1040": |
|
@ -1434,7 +1433,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
await _repository.DbContext.BulkInsertAsync(invlist).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkInsertAsync(invlist).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkInsertAsync(groupList).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkInsertAsync(groupList).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkInsertAsync(detailList).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkInsertAsync(detailList).ConfigureAwait(false); |
|
|
|
|
|
|
|
|
if (adjlist.Count > 0) |
|
|
if (adjlist.Count > 0) |
|
|
{ |
|
|
{ |
|
|
await _repository.DbContext.BulkUpdateAsync(adjlist).ConfigureAwait(false); |
|
|
await _repository.DbContext.BulkUpdateAsync(adjlist).ConfigureAwait(false); |
|
@ -1673,7 +1671,6 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
{ |
|
|
{ |
|
|
detailList.AddRange(_entityDetailList); |
|
|
detailList.AddRange(_entityDetailList); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (p_first == true) |
|
|
if (p_first == true) |
|
|
{ |
|
|
{ |
|
|
var notsettle = _nothbpoRepository.Where(p => p.SettleBillNum == p_InvGroupNum);//一次开票时查找不可结数据,追加需求
|
|
|
var notsettle = _nothbpoRepository.Where(p => p.SettleBillNum == p_InvGroupNum);//一次开票时查找不可结数据,追加需求
|
|
@ -2206,10 +2203,8 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
groupList.AddRange(mapList); |
|
|
groupList.AddRange(mapList); |
|
|
} |
|
|
} |
|
|
List<INVOICE_WAIT_DETAIL> _entityDetailList = new List<INVOICE_WAIT_DETAIL>(); |
|
|
List<INVOICE_WAIT_DETAIL> _entityDetailList = new List<INVOICE_WAIT_DETAIL>(); |
|
|
|
|
|
|
|
|
foreach (var detail in query.ToList()) |
|
|
foreach (var detail in query.ToList()) |
|
|
{ |
|
|
{ |
|
|
|
|
|
|
|
|
var entity = new INVOICE_WAIT_DETAIL( |
|
|
var entity = new INVOICE_WAIT_DETAIL( |
|
|
guid: GuidGenerator.Create(), |
|
|
guid: GuidGenerator.Create(), |
|
|
version: p_version, |
|
|
version: p_version, |
|
@ -2226,13 +2221,12 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Managers |
|
|
endDate: detail.EndDate, |
|
|
endDate: detail.EndDate, |
|
|
partcode: detail.PartCode); |
|
|
partcode: detail.PartCode); |
|
|
entity.LineCode = detail.LineCode; |
|
|
entity.LineCode = detail.LineCode; |
|
|
entity.SetProperty("DeliveryNumber", detail.DeliveryIndexNumber);//交货号
|
|
|
entity.SetProperty("DeliveryNumber", detail.DeliveryNumber);//交货号
|
|
|
entity.SetProperty("VendorCode", detail.VendorCode);//供应商代码
|
|
|
entity.SetProperty("VendorCode", detail.VendorCode);//供应商代码
|
|
|
entity.SetProperty("VendorName", detail.VendorName);//供应商名称
|
|
|
entity.SetProperty("VendorName", detail.VendorName);//供应商名称
|
|
|
entity.SetProperty("PurchaseOrderNumber", "");//采购订单号
|
|
|
entity.SetProperty("PurchaseOrderNumber", "");//采购订单号
|
|
|
entity.SetProperty("DeliveryIndexNumber", "");//交付索引号
|
|
|
entity.SetProperty("DeliveryIndexNumber", detail.DeliveryIndexNumber);//交付索引号
|
|
|
entity.SetProperty("PartName", "");//零件名称
|
|
|
entity.SetProperty("PartName", detail.PartName);//零件名称
|
|
|
|
|
|
|
|
|
_entityDetailList.Add(entity); |
|
|
_entityDetailList.Add(entity); |
|
|
} |
|
|
} |
|
|
if (_entityDetailList.Count > 0) |
|
|
if (_entityDetailList.Count > 0) |
|
|