Skip to content

Commit

Permalink
Display Voucher.Id in voucher html output file
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcota committed Mar 2, 2022
1 parent 88d5901 commit c236b3e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Reporting/Exporters/Html/VoucherToHtmlExporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ internal string GetHtml() {
#region Build header methods

private StringBuilder SetHeaderFields(StringBuilder html) {
html = html.Replace("{{VOUCHER.ID}}", _voucher.Id.ToString());
html = html.Replace("{{VOUCHER.NUMBER}}", _voucher.Number);
html = html.Replace("{{VOUCHER.CONCEPT}}", _voucher.Concept);
html = html.Replace("{{ACCOUNTS_CHART.NAME}}", _voucher.AccountsChart.Name);
Expand Down

0 comments on commit c236b3e

Please sign in to comment.