Skip to content

Commit

Permalink
Rfx Do not send IsOpened and ClosedBy parameters to write stored-proc
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcota committed Dec 21, 2021
1 parent c180a4b commit cfc8a1b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Vouchers/Data/VoucherData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,7 @@ static internal void WriteVoucher(Voucher o) {
o.TransactionType.Id, o.VoucherType.Id,
o.Concept, o.AccountingDate, o.RecordingDate,
o.ElaboratedBy.Id,
o.AuthorizedBy.IsEmptyInstance ? 0 : o.AuthorizedBy.Id,
1, o.ClosedBy.IsEmptyInstance ? 0 : o.ClosedBy.Id);
o.AuthorizedBy.IsEmptyInstance ? 0 : o.AuthorizedBy.Id);

DataWriter.Execute(op);
}
Expand Down

0 comments on commit cfc8a1b

Please sign in to comment.