1 package FS::cust_pkg_discount;
4 use base qw( FS::otaker_Mixin FS::cust_main_Mixin FS::Record );
5 use FS::Record qw( dbh qsearchs ); # qsearch );
11 FS::cust_pkg_discount - Object methods for cust_pkg_discount records
15 use FS::cust_pkg_discount;
17 $record = new FS::cust_pkg_discount \%hash;
18 $record = new FS::cust_pkg_discount { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::cust_pkg_discount object represents the application of a discount to a
31 customer package. FS::cust_pkg_discount inherits from FS::Record. The
32 following fields are currently supported:
42 Customer package (see L<FS::cust_pkg>)
46 Discount (see L<FS::discount>)
58 order taker, see L<FS::access_user>
69 Creates a new discount application. To add the record to the database, see
72 Note that this stores the hash reference, not a distinct copy of the hash it
73 points to. You can ask the object for a copy with the I<hash> method.
77 # the new method can be inherited from FS::Record, if a table method is defined
79 sub table { 'cust_pkg_discount'; }
83 Adds this record to the database. If there is an error, returns the error,
84 otherwise returns false.
89 #my( $self, %options ) = @_;
92 local $SIG{HUP} = 'IGNORE';
93 local $SIG{INT} = 'IGNORE';
94 local $SIG{QUIT} = 'IGNORE';
95 local $SIG{TERM} = 'IGNORE';
96 local $SIG{TSTP} = 'IGNORE';
97 local $SIG{PIPE} = 'IGNORE';
99 my $oldAutoCommit = $FS::UID::AutoCommit;
100 local $FS::UID::AutoCommit = 0;
103 if ( $self->discountnum == -1 ) {
104 my $discount = new FS::discount {
105 '_type' => $self->_type,
106 'amount' => $self->amount,
107 'percent' => $self->percent,
108 'months' => $self->months,
109 'setup' => $self->setup,
112 my $error = $discount->insert;
114 $dbh->rollback if $oldAutoCommit;
117 $self->discountnum($discount->discountnum);
120 my $error = $self->SUPER::insert; #(@_); #(%options);
122 $dbh->rollback if $oldAutoCommit;
126 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
133 Delete this record from the database.
137 # the delete method can be inherited from FS::Record
139 =item replace OLD_RECORD
141 Replaces the OLD_RECORD with this one in the database. If there is an error,
142 returns the error, otherwise returns false.
146 # the replace method can be inherited from FS::Record
150 Checks all fields to make sure this is a valid discount applciation. If there
151 is an error, returns the error, otherwise returns false. Called by the insert
156 # the check method should currently be supplied - FS::Record contains some
157 # data checking routines
163 $self->ut_numbern('pkgdiscountnum')
164 || $self->ut_foreign_key('pkgnum', 'cust_pkg', 'pkgnum')
165 || $self->ut_foreign_key('discountnum', 'discount', 'discountnum' )
166 || $self->ut_sfloat('months_used') #actually decimal, but this will do
167 || $self->ut_numbern('end_date')
168 || $self->ut_alphan('otaker')
169 || $self->ut_numbern('usernum')
170 || $self->ut_enum('disabled', [ '', 'Y' ] )
172 return $error if $error;
174 return "Discount does not apply to setup fees, and package has no recurring"
175 if ! $self->discount->setup && $self->cust_pkg->part_pkg->freq =~ /^0/;
177 $self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;
184 Returns the customer package (see L<FS::cust_pkg>).
190 qsearchs('cust_pkg', { 'pkgnum' => $self->pkgnum } );
195 Returns the discount (see L<FS::discount>).
201 qsearchs('discount', { 'discountnum' => $self->discountnum } );
204 =item increment_months_used MONTHS
206 Increments months_used by the given parameter
210 sub increment_months_used {
211 my( $self, $used ) = @_;
212 #UPDATE cust_pkg_discount SET months_used = months_used + ?
213 #leaves no history, and billing is mutexed per-customer, so the dum way is ok
214 $self->months_used( $self->months_used + $used );
218 =item decrement_months_used MONTHS
220 Decrement months_used by the given parameter
222 (Note: as in, extending the length of the discount. Typically only used to
223 stack/extend a discount when the customer package has one active already.)
227 sub decrement_months_used {
228 my( $self, $recharged ) = @_;
229 #UPDATE cust_pkg_discount SET months_used = months_used - ?
230 #leaves no history, and billing is mutexed per-customer
232 #we're run from part_event/Action/referral_pkg_discount on behalf of a
233 # different customer, so we need to grab this customer's mutex.
234 # incidentally, that's some inelegant encapsulation breaking shit, and a
235 # great argument in favor of native-DB trigger history so we can trust
236 # in normal ACID like the SQL above instead of this
237 $self->cust_pkg->cust_main->select_for_update;
239 $self->months_used( $self->months_used - $recharged );
249 my $discount = $self->discount;
251 if ( $self->disabled ne 'Y'
252 and ( ! $discount->months || $self->months_used < $discount->months )
261 # Used by FS::Upgrade to migrate to a new database.
262 sub _upgrade_data { # class method
263 my ($class, %opts) = @_;
264 $class->_upgrade_otaker(%opts);
273 L<FS::discount>, L<FS::cust_pkg>, L<FS::Record>, schema.html from the base documentation.