diff options
author | ivan <ivan> | 1998-10-12 07:03:09 +0000 |
---|---|---|
committer | ivan <ivan> | 1998-10-12 07:03:09 +0000 |
commit | cad4eadf964cb65841d7cb6f0bcf804f1d39ae2c (patch) | |
tree | f8b7bba6149a4f338f84f81cd3f21c62e58f0fa5 /site_perl/Invoice.pm | |
parent | 3175087f33550fd68e8a4dcf2e33c45f41034eaa (diff) |
Initial revision
Diffstat (limited to 'site_perl/Invoice.pm')
-rw-r--r-- | site_perl/Invoice.pm | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/site_perl/Invoice.pm b/site_perl/Invoice.pm new file mode 100644 index 000000000..5eb596fad --- /dev/null +++ b/site_perl/Invoice.pm @@ -0,0 +1,45 @@ +package FS::Invoice; + +use strict; +use vars qw(@ISA); +use FS::cust_bill; + +@ISA = qw(FS::cust_bill); + +#warn "FS::Invoice depriciated\n"; + +=head1 NAME + +FS::Invoice - Legacy stub + +=head1 SYNOPSIS + +The functioanlity of FS::invoice has been integrated in FS::cust_bill. + +=head1 HISTORY + +ivan@voicenet.com 97-jun-25 - 27 + +maybe should be changed to be OO-functions on $cust_bill objects? +(instead of passing invnum, ugh). + +ISA cust_bill and return inovice instead of passing filehandle +ivan@sisd.com 98-mar-13 + +(add postscript output!) + +close our kid when we're done ivan@sisd.com 98-jun-4 + +separated code which shuffled data from code which formatted. +(so i could) fixed past due notices showing up when balance due =< 0 +return address comes from /var/spool/freeside/conf/address +ivan@sisd.com 98-jul-2 + +pod ivan@sisd.com 98-sep-20something + +s/ISA/@ISA/ in use vars ivan@sisd.com 98-sep-27 + +=cut + +1; + |