From 369cc8545df88dd4e717ccd8f6aa8719bc4308b3 Mon Sep 17 00:00:00 2001 From: ivan Date: Sat, 27 Aug 2005 08:46:58 +0000 Subject: add banned credit card / ACH table, re-do cancel popup to have a checkbox to ban payinfo --- httemplate/misc/cust_main-cancel.cgi | 16 +++++++++++----- httemplate/view/cust_main.cgi | 33 +++++++++++++++++++++++++-------- 2 files changed, 36 insertions(+), 13 deletions(-) (limited to 'httemplate') diff --git a/httemplate/misc/cust_main-cancel.cgi b/httemplate/misc/cust_main-cancel.cgi index 257c3384f..519e6c2b2 100755 --- a/httemplate/misc/cust_main-cancel.cgi +++ b/httemplate/misc/cust_main-cancel.cgi @@ -1,13 +1,19 @@ <% -#untaint custnum -my($query) = $cgi->keywords; -$query =~ /^(\d+)$/ || die "Illegal custnum"; -my $custnum = $1; +my $custnum; +my $ban = ''; +if ( $cgi->param('custnum') =~ /^(\d+)$/ ) { + $custnum = $1; + $ban = $cgi->param('ban'); +} else { + my($query) = $cgi->keywords; + $query =~ /^(\d+)$/ || die "Illegal custnum"; + $custnum = $1; +} my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } ); -my @errors = $cust_main->cancel; +my @errors = $cust_main->cancel( 'ban' => $ban ); eidiot(join(' / ', @errors)) if scalar(@errors); #print $cgi->redirect($p. "view/cust_main.cgi?". $cust_main->custnum); diff --git a/httemplate/view/cust_main.cgi b/httemplate/view/cust_main.cgi index 8794f3074..50f121816 100755 --- a/httemplate/view/cust_main.cgi +++ b/httemplate/view/cust_main.cgi @@ -35,18 +35,35 @@ print qq!Edit this customer!; %> - + + + -<% +<% if ( $cust_main->ncancelled_pkgs ) { %> + + | Cancel this customer -print qq! | !. - 'Cancel this customer' - if $cust_main->ncancelled_pkgs; +<% } %> + +<% print qq! | !. 'Delete this customer' -- cgit v1.2.1