1 package FS::cust_pkg_reason;
4 use vars qw( $ignore_empty_action );
5 use base qw( FS::otaker_Mixin FS::Record );
6 use FS::Record qw( qsearch qsearchs );
7 use FS::upgrade_journal;
9 $ignore_empty_action = 0;
13 FS::cust_pkg_reason - Object methods for cust_pkg_reason records
17 use FS::cust_pkg_reason;
19 $record = new FS::cust_pkg_reason \%hash;
20 $record = new FS::cust_pkg_reason { 'column' => 'value' };
22 $error = $record->insert;
24 $error = $new_record->replace($old_record);
26 $error = $record->delete;
28 $error = $record->check;
32 An FS::cust_pkg_reason object represents a relationship between a cust_pkg
33 and a reason, for example cancellation or suspension reasons.
34 FS::cust_pkg_reason inherits from FS::Record. The following fields are
59 Creates a new cust_pkg_reason. To add the example to the database, see
62 Note that this stores the hash reference, not a distinct copy of the hash it
63 points to. You can ask the object for a copy with the I<hash> method.
67 sub table { 'cust_pkg_reason'; }
71 Adds this record to the database. If there is an error, returns the error,
72 otherwise returns false.
78 Delete this record from the database.
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.
91 Checks all fields to make sure this is a valid cust_pkg_reason. If there is
92 an error, returns the error, otherwise returns false. Called by the insert
100 my @actions = ( 'A', 'C', 'E', 'S' );
101 push @actions, '' if $ignore_empty_action;
104 $self->ut_numbern('num')
105 || $self->ut_number('pkgnum')
106 || $self->ut_number('reasonnum')
107 || $self->ut_enum('action', \@actions)
108 || $self->ut_alphan('otaker')
109 || $self->ut_numbern('date')
111 return $error if $error;
118 Returns the reason (see L<FS::reason>) associated with this cust_pkg_reason.
124 qsearchs( 'reason', { 'reasonnum' => $self->reasonnum } );
129 Returns the text of the reason (see L<FS::reason>) associated with this
135 my $reason = shift->reason;
136 $reason ? $reason->reason : '';
141 # Used by FS::Upgrade to migrate to a new database.
144 use FS::h_cust_pkg_reason;
146 sub _upgrade_data { # class method
147 my ($class, %opts) = @_;
150 " AND ( history_action = 'replace_old' OR history_action = 'replace_new' )";
153 my @unmigrated = qsearch('cust_pkg_reason', { 'action' => '' } );
154 foreach ( @unmigrated ) {
156 my @history_cust_pkg_reason = qsearch( 'h_cust_pkg_reason', { $_->hash } );
158 next unless scalar(@history_cust_pkg_reason) == 1;
160 my $hashref = { pkgnum => $_->pkgnum,
161 history_date => $history_cust_pkg_reason[0]->history_date,
164 my @history = qsearch({ table => 'h_cust_pkg',
166 extra_sql => $action_replace,
167 order_by => 'ORDER BY history_action',
171 while (scalar(@history) < 2 && $fuzz < 3) {
172 $hashref->{history_date}++;
174 push @history, qsearch({ table => 'h_cust_pkg',
176 extra_sql => $action_replace,
177 order_by => 'ORDER BY history_action',
181 next unless scalar(@history) == 2;
183 my @new = grep { $_->history_action eq 'replace_new' } @history;
184 my @old = grep { $_->history_action eq 'replace_old' } @history;
186 next if (scalar(@new) == 2 || scalar(@old) == 2);
188 if ( !$old[0]->get('cancel') && $new[0]->get('cancel') ) {
190 }elsif( !$old[0]->susp && $new[0]->susp ){
192 }elsif( $new[0]->expire &&
193 (!$old[0]->expire || !$old[0]->expire != $new[0]->expire )
196 $_->date($new[0]->expire);
197 }elsif( $new[0]->adjourn &&
198 (!$old[0]->adjourn || $old[0]->adjourn != $new[0]->adjourn )
201 $_->date($new[0]->adjourn);
204 my $error = $_->replace
207 die $error if $error;
212 #remove nullability if scalar(@migrated) - $count == 0 && ->column('action');
214 unless ( FS::upgrade_journal->is_done('cust_pkg_reason__missing_reason') ) {
215 $class->_upgrade_missing_reason(%opts);
216 FS::upgrade_journal->set_done('cust_pkg_reason__missing_reason');
219 #still can't fill in an action? don't abort the upgrade
220 local($ignore_empty_action) = 1;
222 $class->_upgrade_otaker(%opts);
226 sub _upgrade_missing_reason {
227 my ($class, %opts) = @_;
229 #false laziness w/above
231 " AND ( history_action = 'replace_old' OR history_action = 'replace_new' )";
233 #seek expirations/adjourns without reason
234 foreach my $field (qw( expire adjourn cancel susp )) {
236 "LEFT JOIN h_cust_pkg ON ".
237 "(cust_pkg_reason.pkgnum = h_cust_pkg.pkgnum AND".
238 " cust_pkg_reason.date = h_cust_pkg.$field AND".
239 " history_action = 'replace_new')";
241 my $extra_sql = 'AND h_cust_pkg.pkgnum IS NULL';
243 my @unmigrated = qsearch({ table => 'cust_pkg_reason',
244 hashref => { action => uc(substr($field,0,1)) },
245 addl_from => $addl_from,
246 select => 'cust_pkg_reason.*',
247 extra_sql => $extra_sql,
249 foreach ( @unmigrated ) {
251 my $hashref = { pkgnum => $_->pkgnum,
252 history_date => $_->date,
255 my @history = qsearch({ table => 'h_cust_pkg',
257 extra_sql => $action_replace,
258 order_by => 'ORDER BY history_action',
262 while (scalar(@history) < 2 && $fuzz < 3) {
263 $hashref->{history_date}++;
265 push @history, qsearch({ table => 'h_cust_pkg',
267 extra_sql => $action_replace,
268 order_by => 'ORDER BY history_action',
272 next unless scalar(@history) == 2;
274 my @new = grep { $_->history_action eq 'replace_new' } @history;
275 my @old = grep { $_->history_action eq 'replace_old' } @history;
277 next if (scalar(@new) == 2 || scalar(@old) == 2);
279 $_->date($new[0]->get($field))
280 if ( $new[0]->get($field) &&
281 ( !$old[0]->get($field) ||
282 $old[0]->get($field) != $new[0]->get($field)
286 my $error = $_->replace
289 die $error if $error;
293 #seek cancels/suspends without reason, but with expire/adjourn reason
294 foreach my $field (qw( cancel susp )) {
296 my %precursor_map = ( 'cancel' => 'expire', 'susp' => 'adjourn' );
297 my $precursor = $precursor_map{$field};
298 my $preaction = uc(substr($precursor,0,1));
299 my $action = uc(substr($field,0,1));
301 "LEFT JOIN cust_pkg_reason ON ".
302 "(cust_pkg.pkgnum = cust_pkg_reason.pkgnum AND".
303 " cust_pkg.$precursor = cust_pkg_reason.date AND".
304 " cust_pkg_reason.action = '$preaction') ".
305 "LEFT JOIN cust_pkg_reason AS target ON ".
306 "(cust_pkg.pkgnum = target.pkgnum AND".
307 " cust_pkg.$field = target.date AND".
308 " target.action = '$action')"
311 my $extra_sql = "WHERE target.pkgnum IS NULL AND ".
312 "cust_pkg.$field IS NOT NULL AND ".
313 "cust_pkg.$field < cust_pkg.$precursor + 86400 AND ".
314 "cust_pkg_reason.action = '$preaction'";
316 my @unmigrated = qsearch({ table => 'cust_pkg',
318 select => 'cust_pkg.*',
319 addl_from => $addl_from,
320 extra_sql => $extra_sql,
322 foreach ( @unmigrated ) {
323 my $cpr = new FS::cust_pkg_reason { $_->last_cust_pkg_reason($precursor)->hash, 'num' => '' };
324 $cpr->date($_->get($field));
325 $cpr->action($action);
327 my $error = $cpr->insert;
328 die $error if $error;
338 Here be termites. Don't use on wooden computers.
342 L<FS::Record>, schema.html from the base documentation.