From: Mitch Jackson Date: Wed, 29 Nov 2017 19:46:05 +0000 (+0000) Subject: Add crednum (id) field to Credit Report RT#73200 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=6e7c716aed5b6b7d6477e767131b23ba69021a3c Add crednum (id) field to Credit Report RT#73200 --- 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) };