X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fmisc%2Fpayment.cgi;h=7afdfd1598d56c79e068ae9c5485fc575635d9b6;hb=768ab093771b3305a67c9d929b461ef777ecdad8;hp=b83ad7166f5c41b281f6700ae99f1ad1160e52b8;hpb=ad3bcb39580173f0ac1b6357cb49515d48af7ddf;p=freeside.git diff --git a/httemplate/misc/payment.cgi b/httemplate/misc/payment.cgi index b83ad7166..7afdfd159 100644 --- a/httemplate/misc/payment.cgi +++ b/httemplate/misc/payment.cgi @@ -1,5 +1,7 @@ <& /elements/header.html, mt("Process [_1] payment",$type{$payby}) &> <& /elements/small_custview.html, $cust_main, '', '', popurl(2) . "view/cust_main.cgi" &> +
+
@@ -8,7 +10,7 @@ <& /elements/init_overlib.html &> -<% ntable('#cccccc') %> + <& /elements/tr-amount_fee.html, 'amount' => $amount, @@ -17,7 +19,11 @@ 'process-display' => scalar($conf->config('manual_process-display')), 'process-skip_first' => $conf->exists('manual_process-skip_first'), 'num_payments' => scalar($cust_main->cust_pay), - 'surcharge_percentage' => scalar($conf->config('credit-card-surcharge-percentage')), + 'surcharge_percentage' => + ( $payby eq 'CARD' + ? scalar($conf->config('credit-card-surcharge-percentage')) + : 0 + ), &> % if ( $conf->exists('part_pkg-term_discounts') ) { @@ -27,15 +33,22 @@ &> % } +% my $auto = 0; % if ( $payby eq 'CARD' ) { % % my( $payinfo, $paycvv, $month, $year ) = ( '', '', '', '' ); % my $payname = $cust_main->first. ' '. $cust_main->getfield('last'); -% if ( $cust_main->payby =~ /^(CARD|DCRD)$/ ) { -% $payinfo = $cust_main->paymask; -% $paycvv = $cust_main->paycvv; -% ( $month, $year ) = $cust_main->paydate_monthyear; -% $payname = $cust_main->payname if $cust_main->payname; +% my $location = $cust_main->bill_location; +% +% #auto-fill with the highest weighted match +% my ($cust_payby) = $cust_main->cust_payby('CARD','DCRD'); +% if ($cust_payby) { +% $payinfo = $cust_payby->paymask; +% $paycvv = $cust_payby->paycvv; +% ( $month, $year ) = $cust_payby->paydate_monthyear; +% $payname = $cust_payby->payname if $cust_payby->payname; +% $location = $cust_payby->cust_location || $location; +% $auto = 1 if $cust_payby->payby eq 'CARD'; % } @@ -81,7 +94,7 @@ <& /elements/location.html, - 'object' => $cust_main->bill_location, + 'object' => $location, 'no_asterisks' => 1, 'address1_label' => emt('Card billing address'), &> @@ -91,16 +104,19 @@ % my( $account, $aba, $branch, $payname, $ss, $paytype, $paystate, % $stateid, $stateid_state ) % = ( '', '', '', '', '', '', '', '', '' ); -% if ( $cust_main->payby =~ /^(CHEK|DCHK)$/ ) { -% $cust_main->paymask =~ /^([\dx]+)\@([\d\.x]*)$/i -% or die "unparsable payinfo ". $cust_main->payinfo; +% my ($cust_payby) = $cust_main->cust_payby('CHEK','DCHK'); +% if ($cust_payby) { +% $cust_payby->paymask =~ /^([\dx]+)\@([\d\.x]*)$/i +% or die "unparsable paymask ". $cust_payby->paymask; % ($account, $aba) = ($1, $2); % ($branch,$aba) = split('\.',$aba) % if $conf->config('echeck-country') eq 'CA'; -% $payname = $cust_main->payname; +% $payname = $cust_payby->payname; +% $paytype = $cust_payby->getfield('paytype'); +% $paystate = $cust_payby->getfield('paystate'); +% $auto = 1 if $cust_payby->payby eq 'CHEK'; +% # these values aren't in cust_payby, but maybe should be... % $ss = $cust_main->ss; -% $paytype = $cust_main->getfield('paytype'); -% $paystate = $cust_main->getfield('paystate'); % $stateid = $cust_main->getfield('stateid'); % $stateid_state = $cust_main->getfield('stateid_state'); % } @@ -118,7 +134,7 @@ - + @@ -222,7 +238,7 @@ @@ -254,10 +270,6 @@ my $custnum = $1; my $cust_main = qsearchs( 'cust_main', { 'custnum'=>$custnum } ); die "unknown custnum $custnum" unless $cust_main; -my $location = $cust_main->bill_location; -# no proper error handling on this anyway, but when we have it, -# remember to repopulate fields in $location - my $balance = $cust_main->balance; my $payinfo = ''; @@ -273,6 +285,8 @@ my @states = sort { $a cmp $b } keys %states; my $amount = ''; if ( $balance > 0 ) { + # when configured to do so, amount will only auto-fill with balance + # if balance represents a single invoice $amount = $balance unless $conf->exists('manual_process-single_invoice_amount') && ($cust_main->open_cust_bill != 1);
<% mt('Account number') |h %> <% mt('Type') |h %>
<% mt($routing_label) |h %>
- payby ne 'DCRD' ) || ( $payby eq 'CHEK' && $cust_main->payby eq 'CHEK' ) ) ? ' CHECKED' : '' %> NAME="auto" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.save.checked=true; }"> + NAME="auto" VALUE="1" onClick="if (this.checked) { document.OneTrueForm.save.checked=true; }"> <% mt("Charge future payments to this [_1] automatically",$type{$payby}) |h %>