Browse Source

更新版本

master
zhaoxinyu 9 months ago
parent
commit
def7eb037a
  1. 6
      code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs
  2. 1
      code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs

6
code/src/Modules/SettleAccount/src/SettleAccount.Application.Contracts/Entities/BQ/Dtos/INVOICE_GRP_DTO.cs

@ -219,9 +219,9 @@ namespace Win.Sfs.SettleAccount.Entities.BQ.Dtos
[Required(ErrorMessage = "{0}是必填项")]
public DateTime InvoiceDate { get; set; }
//[ImporterHeader(Name = "税后金额", FixAllSpace = true)]
//[Required(ErrorMessage = "{0}是必填项")]
//public decimal RealAmt { get; set; }
[ImporterHeader(Name = "备注", FixAllSpace = true)]
public string FileName { get; set; }
}

1
code/src/Modules/SettleAccount/src/SettleAccount.Application/Entities/BQ/INVOICE_SERVICE.cs

@ -1206,6 +1206,7 @@ namespace Win.Sfs.SettleAccount.Entities.BQ
inv.RealnvBillNum = newinv.RealnvBillNum;
inv.TaxDiff = newinv.PreTaxDiff;
inv.CreationTime = newinv1.InvoiceDate;
inv.FileName=newinv1.FileName;
}
await _repository.DbContext.BulkUpdateAsync(invlist).ConfigureAwait(false);
await _repository.DbContext.BulkUpdateAsync(invdetail).ConfigureAwait(false);

Loading…
Cancel
Save