diff options
author | Mitch Jackson <mitch@freeside.biz> | 2017-11-29 19:46:05 +0000 |
---|---|---|
committer | Mitch Jackson <mitch@freeside.biz> | 2017-12-08 20:15:53 +0000 |
commit | 5b40b86bac1a5b4e11c3a5670329711393deac79 (patch) | |
tree | 858610c33c206c9fb6461a12db980e080d05e941 | |
parent | af27dbbf7740d0c77d725de905248639637e4f8f (diff) |
Add crednum (id) field to Credit Report RT#73200
-rwxr-xr-x | httemplate/search/cust_credit.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/httemplate/search/cust_credit.html b/httemplate/search/cust_credit.html index 956f2d2e4..d6f912eaa 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) }; |