1 package FS::part_export_option;
5 use FS::Record qw( qsearch qsearchs );
12 FS::part_export_option - Object methods for part_export_option records
16 use FS::part_export_option;
18 $record = new FS::part_export_option \%hash;
19 $record = new FS::part_export_option { 'column' => 'value' };
21 $error = $record->insert;
23 $error = $new_record->replace($old_record);
25 $error = $record->delete;
27 $error = $record->check;
31 An FS::part_export_option object represents an export option.
32 FS::part_export_option inherits from FS::Record. The following fields are
37 =item optionnum - primary key
39 =item exportnum - export (see L<FS::part_export>)
41 =item optionname - option name
43 =item optionvalue - option value
53 Creates a new export option. To add the export option to the database, see
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 { 'part_export_option'; }
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 export option. If there is
94 an error, returns the error, otherwise returns false. Called by the insert
99 # the check method should currently be supplied - FS::Record contains some
100 # data checking routines
106 $self->ut_numbern('optionnum')
107 || $self->ut_foreign_key('exportnum', 'part_export', 'exportnum')
108 || $self->ut_alpha('optionname')
109 || $self->ut_anything('optionvalue')
111 return $error if $error;
113 return "Unknown exportnum: ". $self->exportnum
114 unless qsearchs('part_export', { 'exportnum' => $self->exportnum } );
116 #check options & values?
129 L<FS::part_export>, L<FS::Record>, schema.html from the base documentation.