1 package FS::vend_class;
4 use base qw( FS::class_Common );
5 #use FS::Record qw( qsearch qsearchs );
9 FS::vend_class - Object methods for vend_class records
15 $record = new FS::vend_class \%hash;
16 $record = new FS::vend_class { 'column' => 'value' };
18 $error = $record->insert;
20 $error = $new_record->replace($old_record);
22 $error = $record->delete;
24 $error = $record->check;
28 An FS::vend_class object represents a vendor class. FS::vend_class inherits
29 from FS::Record. The following fields are currently supported:
54 Creates a new vendor class. To add the vendor class to the database, see
57 Note that this stores the hash reference, not a distinct copy of the hash it
58 points to. You can ask the object for a copy with the I<hash> method.
62 sub table { 'vend_class'; }
64 sub _target_table { 'vend_main'; }
68 Adds this record to the database. If there is an error, returns the error,
69 otherwise returns false.
73 Delete this record from the database.
75 =item replace OLD_RECORD
77 Replaces the OLD_RECORD with this one in the database. If there is an error,
78 returns the error, otherwise returns false.
82 Checks all fields to make sure this is a valid vendor class. If there is
83 an error, returns the error, otherwise returns false. Called by the insert
92 $self->ut_numbern('classnum')
93 || $self->ut_text('classname')
94 || $self->ut_enum('disabled', [ '', 'Y' ])
96 return $error if $error;
107 L<FS::Record>, schema.html from the base documentation.