1 package FS::deploy_zone_block;
4 use base qw( FS::Record );
5 use FS::Record qw( qsearch qsearchs );
9 FS::deploy_zone_block - Object methods for deploy_zone_block records
13 use FS::deploy_zone_block;
15 $record = new FS::deploy_zone_block \%hash;
16 $record = new FS::deploy_zone_block { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::deploy_zone_block object represents a census block that's part of
29 a deployment zone. FS::deploy_zone_block inherits from FS::Record. The
30 following fields are currently supported:
40 L<FS::deploy_zone> foreign key for the zone.
44 U.S. census block number (15 digits).
54 Creates a new block entry. To add the recordto the database, see L<"insert">.
56 Note that this stores the hash reference, not a distinct copy of the hash it
57 points to. You can ask the object for a copy with the I<hash> method.
61 # the new method can be inherited from FS::Record, if a table method is defined
63 sub table { 'deploy_zone_block'; }
67 Adds this record to the database. If there is an error, returns the error,
68 otherwise returns false.
72 # the insert method can be inherited from FS::Record
76 Delete this record from the database.
80 # the delete method can be inherited from FS::Record
82 =item replace OLD_RECORD
84 Replaces the OLD_RECORD with this one in the database. If there is an error,
85 returns the error, otherwise returns false.
89 # the replace method can be inherited from FS::Record
93 Checks all fields to make sure this is a valid record. If there is
94 an error, returns the error, otherwise returns false. Called by the insert
103 $self->ut_numbern('blocknum')
104 || $self->ut_number('zonenum')
105 || $self->ut_number('censusblock')
107 return $error if $error;
109 if ($self->get('censusblock') !~ /^(\d{15})$/) {
110 return "Illegal census block number (must be 15 digits)";