X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fcust_bill.cgi;h=8884ddea4404f5d16dc5d4a0f6f348bed68433de;hb=78908b703c8a24a89fabbcd7d8fb38a4175a859d;hp=2ff3ca8834983ef3270e117aee868f08c4c77370;hpb=d3016d1b54fdc46a10a2dfd6b78ad65c2dc71e5e;p=freeside.git diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index 2ff3ca883..8884ddea4 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -19,7 +19,6 @@ function areyousure(href, message) { % } % if ( $cust_bill->owed > 0 -% && scalar( grep $payby{$_}, qw(BILL CASH WEST MCRD MCHK) ) % && $curuser->access_right(['Post payment', 'Post check payment', 'Post cash payment']) % && ! $conf->exists('pkg-balances') % ) @@ -28,30 +27,30 @@ function areyousure(href, message) { <% mt('Post') |h %> -% if ( $payby{'BILL'} && $curuser->access_right(['Post payment', 'Post check payment']) ) { +% if ( $curuser->access_right(['Post payment', 'Post check payment']) ) { <% $s++ ? ' | ' : '' %> <% mt('check') |h %> % } -% if ( $payby{'CASH'} && $curuser->access_right(['Post payment', 'Post cash payment']) ) { +% if ( $curuser->access_right(['Post payment', 'Post cash payment']) ) { <% $s++ ? ' | ' : '' %> <% mt('cash') |h %> % } -% if ( $payby{'WEST'} && $curuser->access_right(['Post payment']) ) { - <% $s++ ? ' | ' : '' %> - <% mt('Western Union') |h %> -% } - -% if ( $payby{'MCRD'} && $curuser->access_right(['Post payment']) ) { - <% $s++ ? ' | ' : '' %> - <% mt('manual credit card') |h %> -% } - -% if ( $payby{'MCHK'} && $curuser->access_right(['Post payment']) ) { - <% $s++ ? ' | ' : '' %> - <% mt('manual electronic check') |h %> -% } +%# % if ( $payby{'WEST'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('Western Union') |h %> +%# % } +%# +%# % if ( $payby{'MCRD'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('manual credit card') |h %> +%# % } +%# +%# % if ( $payby{'MCHK'} && $curuser->access_right(['Post payment']) ) { +%# <% $s++ ? ' | ' : '' %> +%# <% mt('manual electronic check') |h %> +%# % } <% mt('payment against this invoice') |h %>

@@ -167,11 +166,6 @@ my %opt = ( $opt{'barcode_img'} = 1 if $conf->exists('invoice-barcode'); -my @payby = grep /\w/, $conf->config('payby'); -@payby = (qw( CARD DCRD CHEK DCHK BILL CASH )) - unless @payby; -my %payby = map { $_=>1 } @payby; - my $cust_bill = qsearchs({ 'select' => 'cust_bill.*', 'table' => 'cust_bill',