4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
9 FS::lata - Object methods for lata records
15 $record = new FS::lata \%hash;
16 $record = new FS::lata { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::lata object represents a LATA number/name. FS::lata inherits from
29 FS::Record. The following fields are currently supported:
41 =item have_usage - a reporting hack
51 Creates a new LATA. To add the LATA to the database, see L<"insert">.
53 Note that this stores the hash reference, not a distinct copy of the hash it
54 points to. You can ask the object for a copy with the I<hash> method.
58 # the new method can be inherited from FS::Record, if a table method is defined
64 Adds this record to the database. If there is an error, returns the error,
65 otherwise returns false.
69 # the insert method can be inherited from FS::Record
73 Delete this record from the database.
77 # the delete method can be inherited from FS::Record
79 =item replace OLD_RECORD
81 Replaces the OLD_RECORD with this one in the database. If there is an error,
82 returns the error, otherwise returns false.
86 # the replace method can be inherited from FS::Record
90 Checks all fields to make sure this is a valid LATA. If there is
91 an error, returns the error, otherwise returns false. Called by the insert
96 # the check method should currently be supplied - FS::Record contains some
97 # data checking routines
103 $self->ut_numbern('latanum')
104 || $self->ut_text('description')
105 || $self->ut_numbern('have_usage')
107 return $error if $error;
112 sub _upgrade_data { #class method
113 my ($class, %opts) = @_;
114 eval "use FS::lata_Data;"; # this automatically does the upgrade if needed
121 L<FS::Record>, schema.html from the base documentation.