1 package FS::part_pkg_option;
5 use FS::Record qw( qsearch qsearchs dbh );
12 FS::part_pkg_option - Object methods for part_pkg_option records
16 use FS::part_pkg_option;
18 $record = new FS::part_pkg_option \%hash;
19 $record = new FS::part_pkg_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_pkg_option object represents an package definition option.
32 FS::part_pkg_option inherits from FS::Record. The following fields are
37 =item optionnum - primary key
39 =item pkgpart - package definition (see L<FS::part_pkg>)
41 =item optionname - option name
43 =item optionvalue - option value
53 Creates a new package definition option. To add the package definition option
54 to 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 { 'part_pkg_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 package definition option. If
94 there is an error, returns the error, otherwise returns false. Called by the
95 insert and replace methods.
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('pkgpart', 'part_pkg', 'pkgpart')
108 || $self->ut_alpha('optionname')
109 || $self->ut_anything('optionvalue')
111 return $error if $error;
113 #check options & values?
123 # Used by FS::Upgrade to migrate to a new database.
127 sub _upgrade_data { # class method
128 my ($class, %opts) = @_;
130 my $sql = "UPDATE part_pkg_option SET optionname = 'recur_fee'".
131 " WHERE optionname = 'recur_flat'";
132 my $sth = dbh->prepare($sql) or die dbh->errstr;
133 $sth->execute or die $sth->errstr;
135 $sql = "UPDATE part_pkg_option SET optionname = 'recur_method',".
136 "optionvalue = 'prorate' WHERE optionname = 'enable_prorate'";
137 $sth = dbh->prepare($sql) or die dbh->errstr;
138 $sth->execute or die $sth->errstr;
140 $sql = "UPDATE part_pkg_option SET optionvalue = NULL WHERE ".
141 "optionname = 'contract_end_months' AND optionvalue = '(none)'";
142 $sth = dbh->prepare($sql) or die dbh->errstr;
143 $sth->execute or die $sth->errstr;
154 L<FS::part_pkg>, L<FS::Record>, schema.html from the base documentation.