From 6ce5ed47f0108896bc9d32a348b5afa44bd09c84 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 12 Aug 1999 04:16:01 +0000 Subject: [PATCH] hidecancelledpackages config option --- FS/FS/cust_main.pm | 17 +++++++++++++---- htdocs/docs/config.html | 4 +++- htdocs/view/cust_main.cgi | 14 ++++++++++---- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/FS/FS/cust_main.pm b/FS/FS/cust_main.pm index 25b6b9f46..50535da55 100644 --- a/FS/FS/cust_main.pm +++ b/FS/FS/cust_main.pm @@ -6,7 +6,7 @@ package FS::cust_main; use strict; use vars qw( @ISA $conf $lpr $processor $xaction $E_NoErr $invoice_from - $smtpmachine ); + $smtpmachine $Debug ); use Safe; use Carp; use Time::Local; @@ -30,6 +30,9 @@ use FS::cust_main_invoice; @ISA = qw( FS::Record ); +$Debug = 0; +#$Debug = 1; + #ask FS::UID to run this stuff for us later $FS::UID::callback{'FS::cust_main'} = sub { $conf = new FS::Conf; @@ -392,7 +395,12 @@ sub ncancelled_pkgs { qsearch( 'cust_pkg', { 'custnum' => $self->custnum, 'cancel' => '', - }); + }), + qsearch( 'cust_pkg', { + 'custnum' => $self->custnum, + 'cancel' => 0, + }), + ; } =item bill OPTIONS @@ -602,6 +610,7 @@ sub collect { my $invoice_time = $options{'invoice_time'} || time; my $total_owed = $self->balance; + warn "collect: total owed $total_owed " if $Debug; return '' unless $total_owed > 0; #redundant????? #put below somehow? @@ -627,7 +636,7 @@ sub collect { next if qsearchs( 'cust_pay_batch', { 'invnum' => $cust_bill->invnum } ); - #warn "invnum ". $cust_bill->invnum. " (owed ". $cust_bill->owed. ", amount $amount, total_owed $total_owed)"; + warn "invnum ". $cust_bill->invnum. " (owed ". $cust_bill->owed. ", amount $amount, total_owed $total_owed)" if $Debug; next unless $amount > 0; @@ -930,7 +939,7 @@ sub check_invoicing_list { =head1 VERSION -$Id: cust_main.pm,v 1.1 1999-08-04 09:03:53 ivan Exp $ +$Id: cust_main.pm,v 1.2 1999-08-12 04:16:01 ivan Exp $ =head1 BUGS diff --git a/htdocs/docs/config.html b/htdocs/docs/config.html index 3d4e743c1..cad10ce65 100644 --- a/htdocs/docs/config.html +++ b/htdocs/docs/config.html @@ -25,10 +25,12 @@ All further configuration files and directories are located in
  • bsdshellmachines - Your BSD flavored shell (and mail) machines, one per line. This enables export of `/etc/passwd' and `/etc/master.passwd'.
  • cybercash2 - CyberCash v2 support, four lines: paymentserverhost, paymentserverport, paymentserversecret, and transaction type (`mauthonly' or `mauthcapture'). CCLib.pm is required.
  • cybercash3.2 - CyberCash v3.2 support. Two lines: the full path and name of your merchant_conf file, and the transaction type (`mauthonly' or `mauthcapture'). CCMckLib3_2.pm, CCMckDirectLib3_2.pm and CCMckErrno3_2 are required. -
  • deletecustomers - The existance of this file will enable customer deletions. +
  • deletecustomers - The existance of this file will enable customer deletions. Be very careful! Deleting a customer will remove all traces that this customer ever existed! It should probably only be used when auditing a legacy database. Normally, you cancel all of a customers' packages if they cancel service.
  • domain - Your domain name.
  • editreferrals - The existance of this file will allow you to change the referral of existing customers.
  • erpcdmachines - Your ERPCD authenticaion machines, one per line. This enables export of `/usr/annex/acp_passwd' and `/usr/annex/acp_dialup'. +
  • hidecancelledpackages - The existance of this file will prevent cancelled packages from showing up in listings (though they will still be in the database) +
  • hidecancelledcustomers - The existance of this file will prevent customers with only cancelled packages from showing up in listings (though they will still be in the database)
  • home - For new users, prefixed to usrename to create a directory name. Should have a leading but not a trailing slash.
  • invoice_from - Return address on email invoices.
  • lpr - Print command for paper invoices, for example `lpr -h'. diff --git a/htdocs/view/cust_main.cgi b/htdocs/view/cust_main.cgi index de9ff7f89..055256570 100755 --- a/htdocs/view/cust_main.cgi +++ b/htdocs/view/cust_main.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: cust_main.cgi,v 1.17 1999-04-15 16:44:36 ivan Exp $ +# $Id: cust_main.cgi,v 1.18 1999-08-12 04:16:01 ivan Exp $ # # Usage: cust_main.cgi custnum # http://server.name/path/cust_main.cgi?custnum @@ -31,7 +31,10 @@ # lose background, FS::CGI ivan@sisd.com 98-sep-2 # # $Log: cust_main.cgi,v $ -# Revision 1.17 1999-04-15 16:44:36 ivan +# Revision 1.18 1999-08-12 04:16:01 ivan +# hidecancelledpackages config option +# +# Revision 1.17 1999/04/15 16:44:36 ivan # delete customers # # Revision 1.16 1999/04/09 04:22:34 ivan @@ -257,8 +260,11 @@ print qq!!, &table(), "\n", qq!\n!; #get package info -@packages = $cust_main->all_pkgs; -#@packages = $cust_main->ncancelled_pkgs; +if ( $conf->exists('hidecancelledpackages') ) { + @packages = $cust_main->ncancelled_pkgs; +} else { + @packages = $cust_main->all_pkgs; +} $n1 = ''; foreach $package (@packages) { -- 2.11.0