diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-02-15 23:35:12 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-02-15 23:35:12 -0800 |
commit | 0870a4c1fb02be43ea5524f58650d99c81477681 (patch) | |
tree | 9f8050ba4a9bcb76f5c094bf65770c004a4c32df /httemplate/view/cust_bill.cgi | |
parent | 2c5aa117162ef4dfce93da42ea3391dcdece4bb9 (diff) |
multiple payment options (new complimentary flag), RT#23741
Diffstat (limited to 'httemplate/view/cust_bill.cgi')
-rwxr-xr-x | httemplate/view/cust_bill.cgi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index 4ee4efbf4..6bc499a35 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -174,8 +174,7 @@ my %opt = ( $opt{'barcode_img'} = 1 if $conf->exists('invoice-barcode'); my @payby = grep /\w/, $conf->config('payby'); -#@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH WEST COMP )) -@payby = (qw( CARD DCRD CHEK DCHK LECB BILL CASH COMP )) +@payby = (qw( CARD DCRD CHEK DCHK BILL CASH )) unless @payby; my %payby = map { $_=>1 } @payby; |