summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2017-11-29 19:46:05 +0000
committerMitch Jackson <mitch@freeside.biz>2017-12-07 22:01:21 +0000
commit5827bcb469ef14c527356e785e981abf4254789d (patch)
tree1a86a3c06872b32701b5a598c22fad5e428e8b13
parent86c44e629af36d91031bf0ba1d770b703e09b888 (diff)
Add crednum (id) field to Credit Report RT#73200
-rwxr-xr-xhttemplate/search/cust_credit.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/httemplate/search/cust_credit.html b/httemplate/search/cust_credit.html
index 4de50a035..1ffa302c8 100755
--- a/httemplate/search/cust_credit.html
+++ b/httemplate/search/cust_credit.html
@@ -43,6 +43,15 @@ $show_voided_credits = $cgi->param('show_voided_credits')
my (@header, @fields, @sort_fields, $align, @links, @color, @style);
$align = '';
+# Report Column: crednum
+push @header, emt('Ref No');
+push @fields, sub { shift->crednum };
+push @sort_fields, '';
+$align .= 'l';
+push @links, '';
+push @color, '';
+push @style, '';
+
# Report Column: Amount
push @header, emt('Amount');
push @fields, sub { $money_char .sprintf('%.2f', shift->amount) };