diff options
author | ivan <ivan> | 2001-09-16 12:45:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-16 12:45:35 +0000 |
commit | 87661d51ce44b78c5b156f4ee7c52e75a9d38746 (patch) | |
tree | 7aab13ab158ef8feae0d64a97f00140313bb4e40 /httemplate/view | |
parent | 5477d23b51bd3135893c4d79091a9e272a17f4f8 (diff) |
fix oops in FS::cust_main_invoice::replace preventing package cancellation
add toggle switch to cust_main searching to show/hide cancelled customers.
hidecancelledcustomers config file is just which state it starts in.
add signupurl config file to enable showing of the customer's signup URL
on the view page.
Diffstat (limited to 'httemplate/view')
-rwxr-xr-x | httemplate/view/cust_main.cgi | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index 174c08760..6df28c844 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -1,10 +1,11 @@ <% -#<!-- $Id: cust_main.cgi,v 1.10 2001-09-11 09:56:27 ivan Exp $ --> +#<!-- $Id: cust_main.cgi,v 1.11 2001-09-16 12:45:35 ivan Exp $ --> use strict; use vars qw ( $cgi $query $custnum $cust_main $hashref $agent $referral @packages $package @history @bills $bill @credits $credit - $balance $item @agents @referrals @invoicing_list $n1 $conf ); + $balance $item @agents @referrals @invoicing_list $n1 $conf + $signupurl ); use CGI; use CGI::Carp qw(fatalsToBrowser); use Date::Format; @@ -53,10 +54,17 @@ unless ( $conf->exists('disable_customer_referrals') ) { print qq! | <A HREF="!, popurl(2), qq!search/cust_main.cgi?referral_custnum=$custnum">!, - qq!View this customer's referrals<A>!; + qq!View this customer's referrals</A>!; } print '<BR><BR>'; + +my $signupurl = $conf->config('signupurl'); +if ( $signupurl ) { +print "This customer's signup URL: ". + "<a href=\"$signupurl?ref=$custnum\">$signupurl?ref=$custnum</a><BR><BR>"; +} + print '<A NAME="cust_main"></A>'; print &itable(), '<TR>'; |