diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-06 01:46:31 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2015-10-06 01:46:31 -0500 |
commit | cf512ab17435a0199ae13a8faefef94600a7a61b (patch) | |
tree | 246bdd0ee130cf561c0cb038e812cd80f0a21731 /httemplate/search/elements/cust_pay_or_refund.html | |
parent | a267a869ad2f2c9b6ba4e306aea6103e3a6bfe4e (diff) |
RT#37038 Add Card Type Name to Payment Report
Diffstat (limited to 'httemplate/search/elements/cust_pay_or_refund.html')
-rwxr-xr-x | httemplate/search/elements/cust_pay_or_refund.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/httemplate/search/elements/cust_pay_or_refund.html b/httemplate/search/elements/cust_pay_or_refund.html index 5808e5f3e..1fea67c19 100755 --- a/httemplate/search/elements/cust_pay_or_refund.html +++ b/httemplate/search/elements/cust_pay_or_refund.html @@ -184,6 +184,16 @@ push @fields, 'payby_payinfo_pretty', push @link_onclicks, $sub_receipt, ''; push @sort_fields, 'paysort', $amount_field; +if ($opt{'show_card_type'}) { + push @header, emt('Card Type'); + $align .= 'r'; + push @links, ''; + push @fields, sub { + (($_[0]->payby eq 'CARD') && ($_[0]->paymask !~ /N\/A/)) ? cardtype($_[0]->paymask) : '' + }; + push @sort_fields, ''; +} + if ( $unapplied ) { push @header, emt('Unapplied'); $align .= 'r'; |