From 33beebf4cb42eba3e1dd868ad5e0af102de961da Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Sat, 29 Sep 2012 16:36:46 -0700 Subject: update address standardization for cust_location changes --- httemplate/misc/process/void-cust_bill.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 httemplate/misc/process/void-cust_bill.html (limited to 'httemplate/misc/process/void-cust_bill.html') diff --git a/httemplate/misc/process/void-cust_bill.html b/httemplate/misc/process/void-cust_bill.html new file mode 100755 index 000000000..899901a50 --- /dev/null +++ b/httemplate/misc/process/void-cust_bill.html @@ -0,0 +1,26 @@ +%if ( $error ) { +% $cgi->param('error', $error); +<% $cgi->redirect(popurl(1). "void-cust_bill.html?". $cgi->query_string ) %> +%} else { +<& /elements/header-popup.html, 'Invoice voided' &> + + +%} +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('Void invoices'); + +#untaint invnum +$cgi->param('invnum') =~ /^(\d+)$/ || die "Illegal invnum"; +my $invnum = $1; + +my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}); + +my $custnum = $cust_bill->custnum; + +my $error = $cust_bill->void( $cgi->param('reason') ); + + -- cgit v1.2.1