invoice_sections_with_taxes per-agent, RT#79636
[freeside.git] / httemplate / edit / cust_bill_pay.cgi
index 2035e4b..f620fc5 100755 (executable)
@@ -1,95 +1,13 @@
-%
-%
-%my($paynum, $amount, $invnum);
-%if ( $cgi->param('error') ) {
-%  $paynum = $cgi->param('paynum');
-%  $amount = $cgi->param('amount');
-%  $invnum = $cgi->param('invnum');
-%} else {
-%  my($query) = $cgi->keywords;
-%  $query =~ /^(\d+)$/;
-%  $paynum = $1;
-%  $amount = '';
-%  $invnum = '';
-%}
-%
-%my $otaker = getotaker;
-%
-%my $p1 = popurl(1);
-%
-%
-<% header("Apply Payment", '') %>
-% if ( $cgi->param('error') ) { 
-
-  <FONT SIZE="+1" COLOR="#ff0000">Error: <% $cgi->param('error') %></FONT>
-  <BR><BR>
-% } 
-
-
-<FORM ACTION="<% $p1 %>process/cust_bill_pay.cgi" METHOD=POST>
-%
-%my $cust_pay = qsearchs('cust_pay', { 'paynum' => $paynum } );
-%die "payment $paynum not found!" unless $cust_pay;
-%
-%my $unapplied = $cust_pay->unapplied;
-%
-
-
-Payment #<B><% $paynum %></B>
-<INPUT TYPE="hidden" NAME="paynum" VALUE="<% $paynum %>">
-
-<BR>Date: <B><% time2str("%D", $cust_pay->_date) %></B>
-
-<BR>Amount: $<B><% $cust_pay->paid %></B>
-
-<BR>Unapplied amount: $<B><% $unapplied %></B>
-%
-%my @cust_bill = grep $_->owed != 0,
-%                qsearch('cust_bill', { 'custnum' => $cust_pay->custnum } );
-%
-%
-
-
-<SCRIPT>
-function changed(what) {
-  cust_bill = what.options[what.selectedIndex].value;
-% foreach my $cust_bill ( @cust_bill ) {
-%  my $invnum = $cust_bill->invnum;
-%  my $changeto = $cust_bill->owed < $unapplied
-%                   ? $cust_bill->owed 
-%                   : $unapplied;
-%
-
-  if ( cust_bill == $invnum ) {
-    what.form.amount.value = "<% $changeto %>";
-  }
-% } 
-
-
-  if ( cust_bill == "Refund" ) {
-    what.form.amount.value = "<% $unapplied %>";
-  }
-}
-</SCRIPT>
-
-<BR>Invoice #<SELECT NAME="invnum" SIZE=1 onChange="changed(this)">
-<OPTION VALUE="">
-% foreach my $cust_bill ( @cust_bill ) { 
-
-
-  <OPTION<% $cust_bill->invnum eq $invnum ? ' SELECTED' : '' %> VALUE="<% $cust_bill->invnum %>"><% $cust_bill->invnum %> - <% time2str("%D", $cust_bill->_date) %> - $<% $cust_bill->owed %>
-% } 
-
-
-<OPTION VALUE="Refund">Refund
-</SELECT>
-
-<BR>Amount $<INPUT TYPE="text" NAME="amount" VALUE="<% $amount %>" SIZE=8 MAXLENGTH=8>
-
-<BR>
-<CENTER><INPUT TYPE="submit" VALUE="Apply"></CENTER>
-
-</FORM>
-
-</BODY>
-</HTML>
+<& elements/ApplicationCommon.html,
+     'form_action' => 'process/cust_bill_pay.cgi',
+     'src_table'   => 'cust_pay',
+     'src_thing'   => emt('payment'),
+     'dst_table'   => 'cust_bill',
+     'dst_thing'   => emt('invoice'),
+&>
+<%init>
+
+die "access denied"
+  unless $FS::CurrentUser::CurrentUser->access_right('Apply payment');
+
+</%init>