X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=site_perl%2Fcust_main_county.pm;h=1418ca1ea5cb2a89bd16d21819ffd4a9119a99df;hb=19c3d2717fb417187fb0f020a7ba2b065f3f8e30;hp=9c81406ae32276b10c3f9dcc29b7ebe63bb21c2f;hpb=ef834d58bfd2ce38c8bea73262c8091a5d88388f;p=freeside.git diff --git a/site_perl/cust_main_county.pm b/site_perl/cust_main_county.pm index 9c81406ae..1418ca1ea 100644 --- a/site_perl/cust_main_county.pm +++ b/site_perl/cust_main_county.pm @@ -1,12 +1,10 @@ package FS::cust_main_county; use strict; -use vars qw(@ISA @EXPORT_OK); -use Exporter; -use FS::Record qw(fields hfields qsearch qsearchs); +use vars qw( @ISA ); +use FS::Record; -@ISA = qw(FS::Record Exporter); -@EXPORT_OK = qw(hfields); +@ISA = qw( FS::Record ); =head1 NAME @@ -16,8 +14,8 @@ FS::cust_main_county - Object methods for cust_main_county objects use FS::cust_main_county; - $record = create FS::cust_main_county \%hash; - $record = create FS::cust_main_county { 'column' => 'value' }; + $record = new FS::cust_main_county \%hash; + $record = new FS::cust_main_county { 'column' => 'value' }; $error = $record->insert; @@ -51,68 +49,29 @@ currently supported: =over 4 -=item create HASHREF +=item new HASHREF Creates a new tax rate. To add the tax rate to the database, see L<"insert">. =cut -sub create { - my($proto,$hashref)=@_; - - #now in FS::Record::new - #my($field); - #foreach $field (fields('cust_main_county')) { - # $hashref->{$field}='' unless defined $hashref->{$field}; - #} - - $proto->new('cust_main_county',$hashref); -} +sub table { 'cust_main_county'; } =item insert Adds this tax rate to the database. If there is an error, returns the error, otherwise returns false. -=cut - -sub insert { - my($self)=@_; - - $self->check or - $self->add; -} - =item delete Deletes this tax rate from the database. If there is an error, returns the error, otherwise returns false. -=cut - -sub delete { - my($self)=@_; - - $self->del; -} - =item replace OLD_RECORD Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false. -=cut - -sub replace { - my($new,$old)=@_; - return "(Old) Not a cust_main_county record!" - unless $old->table eq "cust_main_county"; - return "Can't change taxnum!" - unless $old->getfield('taxnum') eq $new->getfield('taxnum'); - $new->check or - $new->rep($old); -} - =item check Checks all fields to make sure this is a valid tax rate. If there is an error, @@ -122,15 +81,13 @@ methods. =cut sub check { - my($self)=@_; - return "Not a cust_main_county record!" - unless $self->table eq "cust_main_county"; - my($recref) = $self->hashref; + my $self = shift; $self->ut_numbern('taxnum') - or $self->ut_textn('state') - or $self->ut_textn('county') - or $self->ut_float('tax') + || $self->ut_textn('state') + || $self->ut_textn('county') + || $self->ut_text('country') + || $self->ut_float('tax') ; } @@ -139,12 +96,10 @@ sub check { =head1 VERSION -$Id: cust_main_county.pm,v 1.2 1998-11-18 09:01:43 ivan Exp $ +$Id: cust_main_county.pm,v 1.4 1999-07-20 10:37:05 ivan Exp $ =head1 BUGS -It doesn't properly override FS::Record yet. - =head1 SEE ALSO L, L, L, schema.html from the base @@ -160,7 +115,14 @@ Changed check for 'tax' to use the new ut_float subroutine pod ivan@sisd.com 98-sep-21 $Log: cust_main_county.pm,v $ -Revision 1.2 1998-11-18 09:01:43 ivan +Revision 1.4 1999-07-20 10:37:05 ivan +cleaned up the new one-screen signup bits in htdocs/edit/cust_main.cgi to +prepare for a signup server + +Revision 1.3 1998/12/29 11:59:41 ivan +mostly properly OO, some work still to be done with svc_ stuff + +Revision 1.2 1998/11/18 09:01:43 ivan i18n! i18n!