diff options
author | Ivan Kohler <ivan@freeside.biz> | 2016-11-07 22:28:15 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2016-11-07 22:28:15 -0800 |
commit | d1e8cab4d49eaab6373df48db134a74d9d2b5db2 (patch) | |
tree | 5c8ad0efc4b946cf0cbfc52bd3d4f688aa53e920 /httemplate/view/cust_bill.cgi | |
parent | 2549ea6e716605e930d5784e1c46c1ee163f1453 (diff) |
invoices look like they belong under customers
Diffstat (limited to 'httemplate/view/cust_bill.cgi')
-rwxr-xr-x | httemplate/view/cust_bill.cgi | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/httemplate/view/cust_bill.cgi b/httemplate/view/cust_bill.cgi index c7238e6a8..e35d7f1cf 100755 --- a/httemplate/view/cust_bill.cgi +++ b/httemplate/view/cust_bill.cgi @@ -1,13 +1,6 @@ -<& /elements/header.html, mt('Invoice View'), menubar( - emt("View this customer (#[_1])",$display_custnum) => "${p}view/cust_main.cgi?$custnum", -) &> +<& /elements/header-cust_main.html, view=>'payment_history', custnum=>$custnum &> -<SCRIPT TYPE="text/javascript"> -function areyousure(href, message) { - if (confirm(message) == true) - window.location.href = href; -} -</SCRIPT> +<h2>Invoice #<% $invnum %></h2> % if ( !$cust_bill->closed ) { # otherwise allow no changes % my $can_delete = $conf->exists('deleteinvoices') @@ -187,7 +180,7 @@ function change_invoice_mode(obj) { <PRE><% join('', $cust_bill->print_text(\%opt) ) |h %></PRE> % } -<& /elements/footer.html &> +<& /elements/footer-cust_main.html &> <%init> my $curuser = $FS::CurrentUser::CurrentUser; |