1 <& /elements/header-cust_main.html, view=>'payment_history', cust_main=>$cust_main &>
3 <h2><% emt("Process [_1] payment",$type{$payby}) %></h2>
5 <FORM NAME="OneTrueForm" ACTION="process/payment.cgi" METHOD="POST" onSubmit="document.OneTrueForm.process.disabled=true">
6 <INPUT TYPE="hidden" NAME="custnum" VALUE="<% $custnum %>">
7 <INPUT TYPE="hidden" NAME="payby" VALUE="<% $payby %>">
8 <INPUT TYPE="hidden" NAME="payunique" VALUE="<% $payunique %>">
9 <INPUT TYPE="hidden" NAME="balance" VALUE="<% $balance %>">
11 <& /elements/init_overlib.html &>
13 <TABLE class="fsinnerbox">
15 <& /elements/tr-select-payment_options.html,
16 'cust_main' => $cust_main,
18 scalar($conf->config('manual_process-pkgpart', $cust_main->agentnum)),
19 'process-display' => scalar($conf->config('manual_process-display')),
20 'process-skip_first' => $conf->exists('manual_process-skip_first'),
21 'num_payments' => scalar($cust_main->cust_pay),
22 'surcharge_percentage' =>
24 ? scalar($conf->config('credit-card-surcharge-percentage', $cust_main->agentnum))
27 'surcharge_flatfee' =>
29 ? scalar($conf->config('credit-card-surcharge-flatfee', $cust_main->agentnum))
32 'processing_fee' => scalar($conf->config('processing-fee', $cust_main->agentnum)),
35 % if ( $conf->exists('part_pkg-term_discounts') ) {
36 <& /elements/tr-select-discount_term.html,
37 'custnum' => $custnum,
38 'amount_id' => 'amount',
42 % my $disallow_no_auto_apply = 0;
43 % if ( $conf->exists("batch-enable")
44 % || grep $payby eq $_, $conf->config('batch-enable_payby')
47 % if ( grep $payby eq $_, $conf->config('realtime-disable_payby') ) {
48 % $disallow_no_auto_apply = 1;
50 <INPUT TYPE="hidden" NAME="batch" VALUE="1">
55 <TH ALIGN="right"> <% mt('Add to current batch') |h %></TH>
57 <INPUT TYPE="checkbox" NAME="batch" VALUE="1" ID="batch_checkbox" ONCHANGE="change_batch_checkbox()">
64 % unless ($disallow_no_auto_apply) {
65 % # false laziness with edit/cust_pay.cgi
67 <TR ID="apply_box_row">
68 <TH ALIGN="right"><% mt('Auto-apply to invoices') |h %></TH>
70 <SELECT NAME="apply" ID="apply_box">
71 <OPTION VALUE="yes" SELECTED><% mt('yes') |h %></OPTION>
72 <OPTION VALUE=""><% mt('not now') |h %></OPTION>
73 <OPTION VALUE="never"><% mt('never') |h %></OPTION>
78 % # this can go away if no_auto_apply handling gets added to batch payment processing
80 function change_batch_checkbox () {
81 if (document.getElementById('batch_checkbox').checked) {
82 document.getElementById('apply_box').disabled = true;
83 document.getElementById('apply_box_row').style.display = 'none';
85 document.getElementById('apply_box').disabled = false;
86 document.getElementById('apply_box_row').style.display = '';
93 <SCRIPT TYPE="text/javascript">
94 function cust_payby_changed (what) {
95 var custpaybynum = what.options[what.selectedIndex].value
96 if ( custpaybynum == '' || custpaybynum == '0' ) {
97 //what.form.payinfo.disabled = false;
98 $('#cust_payby').slideDown();
100 //what.form.payinfo.value = '';
101 //what.form.payinfo.disabled = true;
102 $('#cust_payby').slideUp();
106 function enableAmountField() {
107 document.getElementById('amount').disabled = false;
112 % #can't quite handle CARD/CHEK on the same page yet, but very close
113 % #does it make sense from a UI/usability perspective?
115 % my @cust_payby = ();
116 % if ( $payby eq 'CARD' ) {
117 % @cust_payby = $cust_main->cust_payby('CARD','DCRD');
118 % } elsif ( $payby eq 'CHEK' ) {
119 % @cust_payby = $cust_main->cust_payby('CHEK','DCHK');
121 % die "unknown payby $payby";
124 % my $custpaybynum = length(scalar($cgi->param('custpaybynum')))
125 % ? scalar($cgi->param('custpaybynum'))
126 % : scalar(@cust_payby) && $cust_payby[0]->custpaybynum;
128 <& /elements/tr-select-cust_payby.html,
129 'cust_payby' => \@cust_payby,
130 'curr_value' => $custpaybynum,
131 'onchange' => 'cust_payby_changed(this)',
137 <% $custpaybynum ? 'STYLE="display:none"'
141 <TABLE class="fsinnerbox">
143 <& /elements/cust_payby_new.html,
144 'cust_payby' => \@cust_payby,
145 'curr_value' => $custpaybynum,
152 <INPUT TYPE="submit" NAME="process" ID="process" VALUE="<% mt('Process payment') |h %>" disabled="disabled" onclick="enableAmountField()">
155 <SCRIPT TYPE="text/javascript">
157 $(document).ready(function (){
159 $('<% $validate_select_fields %>').change(validate);
160 $('<% $validate_input_fields %>').keyup(validate);
165 $('#amount').val() > 0 && (
166 ( $('#custpaybynum').val() > 0 ) ||
167 % if ($payby eq "CHEK") {
168 ( $('input[name=payinfo1]').val().length > 0 &&
169 $('input[name=payinfo2]').val().length > 0 &&
170 $('input[name=payname]').val().length > 0 &&
171 $('select[name=paytype]').val().length > 0
174 % elsif ($payby eq "CARD") {
175 ( $('input[name=payinfo]').val().length > 0 &&
176 $('input[name=paycvv]').val().length > 0 &&
177 $('input[name=payname]').val().length > 0 &&
178 $('#city').val().length > 0 &&
179 $('#city').val().length > 0 &&
180 $('#state').val().length > 0 &&
181 $('#country').val().length > 0
186 $("#process").prop("disabled", false);
189 $("#process").prop("disabled", true);
195 <& /elements/footer-cust_main.html &>
212 unless $FS::CurrentUser::CurrentUser->access_right('Process payment');
214 my %type = ( 'CARD' => 'credit card',
215 'CHEK' => 'electronic check (ACH)',
218 $cgi->param('payby') =~ /^(CARD|CHEK)$/
219 or die "unknown payby ". $cgi->param('payby');
222 my $validate_select_fields = "#payment_option, #invoice, #custpaybynum, ";
223 my $validate_input_fields = "#amount, input[name=payname], ";
224 if ($payby eq "CHEK") {
225 $validate_input_fields .= "input[name=payinfo1], input[name=payinfo2]";
226 $validate_select_fields .= "select[name=paytype] ";
228 elsif ($payby eq "CARD") {
229 $validate_input_fields .= "input[name=payinfo], input[name=paycvv], input[name=address1], #city, #zip";
230 $validate_select_fields .= "#state, #country ";
233 $cgi->param('custnum') =~ /^(\d+)$/
234 or die "illegal custnum ". $cgi->param('custnum');
237 my $cust_main = qsearchs( 'cust_main', { 'custnum'=>$custnum } );
238 die "unknown custnum $custnum" unless $cust_main;
240 my $balance = $cust_main->balance;
244 my $conf = new FS::Conf;
246 my $payunique = "webui-payment-". time. "-$$-". rand() * 2**32;