bb0542be247163937d3436af007e4d834866b7c9
[freeside.git] / FS / FS / cust_pkg_reason.pm
1 package FS::cust_pkg_reason;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::Record qw( qsearch qsearchs );
6
7 @ISA = qw(FS::Record);
8
9 =head1 NAME
10
11 FS::cust_pkg_reason - Object methods for cust_pkg_reason records
12
13 =head1 SYNOPSIS
14
15   use FS::cust_pkg_reason;
16
17   $record = new FS::cust_pkg_reason \%hash;
18   $record = new FS::cust_pkg_reason { 'column' => 'value' };
19
20   $error = $record->insert;
21
22   $error = $new_record->replace($old_record);
23
24   $error = $record->delete;
25
26   $error = $record->check;
27
28 =head1 DESCRIPTION
29
30 An FS::cust_pkg_reason object represents a relationship between a cust_pkg
31 and a reason, for example cancellation or suspension reasons. 
32 FS::cust_pkg_reason inherits from FS::Record.  The following fields are
33 currently supported:
34
35 =over 4
36
37 =item num - primary key
38
39 =item pkgnum - 
40
41 =item reasonnum - 
42
43 =item otaker - 
44
45 =item date - 
46
47
48 =back
49
50 =head1 METHODS
51
52 =over 4
53
54 =item new HASHREF
55
56 Creates a new cust_pkg_reason.  To add the example to the database, see
57 L<"insert">.
58
59 Note that this stores the hash reference, not a distinct copy of the hash it
60 points to.  You can ask the object for a copy with the I<hash> method.
61
62 =cut
63
64 sub table { 'cust_pkg_reason'; }
65
66 =item insert
67
68 Adds this record to the database.  If there is an error, returns the error,
69 otherwise returns false.
70
71 =cut
72
73 =item delete
74
75 Delete this record from the database.
76
77 =cut
78
79 =item replace OLD_RECORD
80
81 Replaces the OLD_RECORD with this one in the database.  If there is an error,
82 returns the error, otherwise returns false.
83
84 =cut
85
86 =item check
87
88 Checks all fields to make sure this is a valid cust_pkg_reason.  If there is
89 an error, returns the error, otherwise returns false.  Called by the insert
90 and replace methods.
91
92 =cut
93
94 sub check {
95   my $self = shift;
96
97   my $error = 
98     $self->ut_numbern('num')
99     || $self->ut_number('pkgnum')
100     || $self->ut_number('reasonnum')
101     || $self->ut_enum('action', [ 'A', 'C', 'E', 'S' ])
102     || $self->ut_text('otaker')
103     || $self->ut_numbern('date')
104   ;
105   return $error if $error;
106
107   $self->SUPER::check;
108 }
109
110 =item reason
111
112 Returns the reason (see L<FS::reason>) associated with this cust_pkg_reason.
113
114 =cut
115
116 sub reason {
117   my $self = shift;
118   qsearchs( 'reason', { 'reasonnum' => $self->reasonnum } );
119 }
120
121 =item reasontext
122
123 Returns the text of the reason (see L<FS::reason>) associated with this
124 cust_pkg_reason.
125
126 =cut
127
128 sub reasontext {
129   my $reason = shift->reason;
130   $reason ? $reason->reason : '';
131 }
132
133 # _upgrade_data
134 #
135 # Used by FS::Upgrade to migrate to a new database.
136
137 use FS::h_cust_pkg;
138 use FS::h_cust_pkg_reason;
139 use FS::Schema qw(dbdef);
140
141 sub _upgrade_data { # class method
142   my ($class, %opts) = @_;
143
144   return '' unless dbdef->table('cust_pkg_reason')->column('action');
145
146   my $action_replace =
147     " AND ( history_action = 'replace_old' OR history_action = 'replace_new' )";
148
149   my $count = 0;
150   my @unmigrated = qsearch('cust_pkg_reason', { 'action' => '' } ); 
151   foreach ( @unmigrated ) {
152
153     my @history_cust_pkg_reason = qsearch( 'h_cust_pkg_reason', { $_->hash } );
154     
155     next unless scalar(@history_cust_pkg_reason) == 1;
156
157     my $hashref = { pkgnum => $_->pkgnum,
158                     history_date   => $history_cust_pkg_reason[0]->history_date,
159                   };
160
161     my @history = qsearch({ table     => 'h_cust_pkg',
162                             hashref   => $hashref,
163                             extra_sql => $action_replace,
164                             order_by  => 'ORDER BY history_action',
165                          });
166
167     my $fuzz = 0;
168     while (scalar(@history) < 2 && $fuzz < 3) {
169       $hashref->{history_date}++;
170       $fuzz++;
171       push @history, qsearch({ table     => 'h_cust_pkg',
172                                hashref   => $hashref,
173                                extra_sql => $action_replace,
174                                order_by  => 'ORDER BY history_action',
175                             });
176     }
177
178     next unless scalar(@history) == 2;
179
180     my @new = grep { $_->history_action eq 'replace_new' } @history;
181     my @old = grep { $_->history_action eq 'replace_old' } @history;
182     
183     next if (scalar(@new) == 2 || scalar(@old) == 2);
184
185     if ( !$old[0]->get('cancel') && $new[0]->get('cancel') ) {
186       $_->action('C');
187     }elsif( !$old[0]->susp && $new[0]->susp ){
188       $_->action('S');
189     }elsif( $new[0]->expire &&
190             (!$old[0]->expire || !$old[0]->expire != $new[0]->expire )
191           ){
192       $_->action('E');
193       $_->date($new[0]->expire);
194     }elsif( $new[0]->adjourn &&
195             (!$old[0]->adjourn || $old[0]->adjourn != $new[0]->adjourn )
196           ){
197       $_->action('A');
198       $_->date($new[0]->adjourn);
199     }
200
201     my $error = $_->replace
202       if $_->modified;
203
204     die $error if $error;
205
206     $count++;
207   }
208
209   #remove nullability if scalar(@migrated) - $count == 0 && ->column('action');
210   
211   #seek expirations/adjourns without reason
212   foreach my $field qw( expire adjourn cancel susp ) {
213     my $addl_from =
214       "LEFT JOIN h_cust_pkg ON ".
215       "(cust_pkg_reason.pkgnum = h_cust_pkg.pkgnum AND".
216       " cust_pkg_reason.date = h_cust_pkg.$field AND".
217       " history_action = 'replace_new')";
218
219     my $extra_sql = 'AND h_cust_pkg.pkgnum IS NULL';
220
221     my @unmigrated = qsearch({ table   => 'cust_pkg_reason',
222                                hashref => { action => uc(substr($field,0,1)) },
223                                addl_from => $addl_from,
224                                select    => 'cust_pkg_reason.*',
225                                extra_sql => $extra_sql,
226                             }); 
227     foreach ( @unmigrated ) {
228
229       my $hashref = { pkgnum => $_->pkgnum,
230                       history_date   => $_->date,
231                     };
232
233       my @history = qsearch({ table     => 'h_cust_pkg',
234                               hashref   => $hashref,
235                               extra_sql => $action_replace,
236                               order_by  => 'ORDER BY history_action',
237                            });
238
239       my $fuzz = 0;
240       while (scalar(@history) < 2 && $fuzz < 3) {
241         $hashref->{history_date}++;
242         $fuzz++;
243         push @history, qsearch({ table    => 'h_cust_pkg',
244                                  hashref  => $hashref,
245                                  extra_sql => $action_replace,
246                                  order_by => 'ORDER BY history_action',
247                               });
248       }
249
250       next unless scalar(@history) == 2;
251
252       my @new = grep { $_->history_action eq 'replace_new' } @history;
253       my @old = grep { $_->history_action eq 'replace_old' } @history;
254     
255       next if (scalar(@new) == 2 || scalar(@old) == 2);
256
257       $_->date($new[0]->get($field))
258         if ( $new[0]->get($field) &&
259              ( !$old[0]->get($field) ||
260                 $old[0]->get($field) != $new[0]->get($field)
261              )
262            );
263
264       my $error = $_->replace
265         if $_->modified;
266
267       die $error if $error;
268     }
269   }
270
271   #seek cancels/suspends without reason, but with expire/adjourn reason
272   foreach my $field qw( cancel susp ) {
273
274     my %precursor_map = ( 'cancel' => 'expire', 'susp' => 'adjourn' );
275     my $precursor = $precursor_map{$field};
276     my $preaction = uc(substr($precursor,0,1));
277     my $action    = uc(substr($field,0,1));
278     my $addl_from =
279       "LEFT JOIN cust_pkg_reason ON ".
280       "(cust_pkg.pkgnum = cust_pkg_reason.pkgnum AND".
281       " cust_pkg.$precursor = cust_pkg_reason.date AND".
282       " cust_pkg_reason.action = '$preaction') ".
283       "LEFT JOIN cust_pkg_reason AS target ON ".
284       "(cust_pkg.pkgnum = target.pkgnum AND".
285       " cust_pkg.$field = target.date AND".
286       " target.action = '$action')"
287     ;
288
289     my $extra_sql = "WHERE target.pkgnum IS NULL AND ".
290                     "cust_pkg.$field IS NOT NULL AND ".
291                     "cust_pkg.$field < cust_pkg.$precursor + 86400 AND ".
292                     "cust_pkg_reason.action = '$preaction'";
293
294     my @unmigrated = qsearch({ table     => 'cust_pkg',
295                                hashref   => { },
296                                select    => 'cust_pkg.*',
297                                addl_from => $addl_from,
298                                extra_sql => $extra_sql,
299                             }); 
300     foreach ( @unmigrated ) {
301       my $cpr = new FS::cust_pkg_reason { $_->last_cust_pkg_reason($precursor)->hash, 'num' => '' };
302       $cpr->date($_->get($field));
303       $cpr->action($action);
304
305       my $error = $cpr->insert;
306       die $error if $error;
307     }
308   }
309
310   '';
311
312 }
313
314 =back
315
316 =head1 BUGS
317
318 Here be termites.  Don't use on wooden computers.
319
320 =head1 SEE ALSO
321
322 L<FS::Record>, schema.html from the base documentation.
323
324 =cut
325
326 1;
327