summaryrefslogtreecommitdiff
path: root/FS/FS/reason.pm
blob: 176e24c99464969eb8579b63468ca8d843f3027a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
package FS::reason;

use strict;
use vars qw( @ISA $DEBUG $me );
use DBIx::DBSchema;
use DBIx::DBSchema::Table;
use DBIx::DBSchema::Column;
use FS::Record qw( qsearch qsearchs dbh dbdef );
use FS::reason_type;

@ISA = qw(FS::Record);
$DEBUG = 0;
$me = '[FS::reason]';

=head1 NAME

FS::reason - Object methods for reason records

=head1 SYNOPSIS

  use FS::reason;

  $record = new FS::reason \%hash;
  $record = new FS::reason { 'column' => 'value' };

  $error = $record->insert;

  $error = $new_record->replace($old_record);

  $error = $record->delete;

  $error = $record->check;

=head1 DESCRIPTION

An FS::reason object represents a reason message.  FS::reason inherits from
FS::Record.  The following fields are currently supported:

=over 4

=item reasonnum - primary key

=item reason_type - index into FS::reason_type

=item reason - text of the reason

=item disabled - 'Y' or ''

=item unsuspend_pkgpart - for suspension reasons only, the pkgpart (see
L<FS::part_pkg>) of a package to be ordered when the package is unsuspended.
Typically this will be some kind of reactivation fee.  Attaching it to 
a suspension reason allows the reactivation fee to be charged for some
suspensions but not others. DEPRECATED.

=item unsuspend_hold - 'Y' or ''.  If unsuspend_pkgpart is set, this tells
whether to bill the unsuspend package immediately ('') or to wait until 
the customer's next invoice ('Y').

=item unused_credit - 'Y' or ''. For suspension or cancellation reasons.
If enabled, the customer will be credited for their remaining time on 
suspension.

=item feepart - for suspension reasons, the feepart of a fee to be
charged when a package is suspended for this reason.

=item fee_hold - 'Y' or ''. If feepart is set, tells whether to bill the fee
immediately ('') or wait until the customer's next invoice ('Y').

=item fee_on_unsuspend - If feepart is set, tells whether to charge the fee
on suspension ('') or unsuspension ('Y').

=back

=head1 METHODS

=over 4

=item new HASHREF

Creates a new reason.  To add the example to the database, see L<"insert">.

Note that this stores the hash reference, not a distinct copy of the hash it
points to.  You can ask the object for a copy with the I<hash> method.

=cut

sub table { 'reason'; }

=item insert

Adds this record to the database.  If there is an error, returns the error,
otherwise returns false.

=cut

=item delete

Delete this record from the database.

=cut

=item replace OLD_RECORD

Replaces the OLD_RECORD with this one in the database.  If there is an error,
returns the error, otherwise returns false.

=cut

=item check

Checks all fields to make sure this is a valid reason.  If there is
an error, returns the error, otherwise returns false.  Called by the insert
and replace methods.

=cut

sub check {
  my $self = shift;

  my $error = 
    $self->ut_numbern('reasonnum')
    || $self->ut_number('reason_type')
    || $self->ut_foreign_key('reason_type', 'reason_type', 'typenum')
    || $self->ut_text('reason')
  ;
  return $error if $error;

  my $class = $self->reasontype->class;

  if ( $class eq 'S' ) {
    $error = $self->ut_numbern('unsuspend_pkgpart')
          || $self->ut_foreign_keyn('unsuspend_pkgpart', 'part_pkg', 'pkgpart')
          || $self->ut_flag('unsuspend_hold')
          || $self->ut_foreign_keyn('feepart', 'part_fee', 'feepart')
          || $self->ut_flag('fee_on_unsuspend')
          || $self->ut_flag('fee_hold')
    ;
    return $error if $error;
  } else {
    foreach (qw(unsuspend_pkgpart unsuspend_hold feepart
                fee_on_unsuspend fee_hold)) {
      $self->set($_ => '');
    }
  }

  if ( $class eq 'S' or $class eq 'C' ) {
    $error = $self->ut_flag('unused_credit');
  } else {
    $self->set('unused_credit', '');
  }

  $self->SUPER::check;
}

=item reasontype

Returns the reason_type (see L<FS::reason_type>) associated with this reason.

=cut

sub reasontype {
  qsearchs( 'reason_type', { 'typenum' => shift->reason_type } );
}

=item merge

Accepts an arrayref of reason objects, to be merged into this reason.
Reasons must all have the same reason_type class as this one.
Matching reasonnums will be replaced in the following tables:

  cust_bill_void
  cust_bill_pkg_void
  cust_credit
  cust_credit_void
  cust_pay_void
  cust_pkg_reason
  cust_refund

=cut

sub merge {
  my ($self,$reasons) = @_;
  return "Bad input for merge" unless ref($reasons) eq 'ARRAY';

  my $class = $self->reasontype->class;

  local $SIG{HUP} = 'IGNORE';
  local $SIG{INT} = 'IGNORE';
  local $SIG{QUIT} = 'IGNORE';
  local $SIG{TERM} = 'IGNORE';
  local $SIG{TSTP} = 'IGNORE';
  local $SIG{PIPE} = 'IGNORE';

  my $oldAutoCommit = $FS::UID::AutoCommit;
  local $FS::UID::AutoCommit = 0;
  my $dbh = dbh;

  my $error;
  foreach my $reason (@$reasons) {
    last if $error;
    next if $reason->reasonnum eq $self->reasonnum;
    $error = "Mismatched reason type class"    
      unless $reason->reasontype->class eq $class;
    foreach my $table ( qw(
      cust_bill_void
      cust_bill_pkg_void
      cust_credit
      cust_credit_void
      cust_pay_void
      cust_pkg_reason
      cust_refund
    )) {
      last if $error;
      my @fields = ('reasonnum');
      push(@fields, 'void_reasonnum') if $table eq 'cust_credit_void';
      foreach my $field (@fields) {
        last if $error;
        foreach my $obj ( qsearch($table,{ $field => $reason->reasonnum }) ) {
          last if $error;
          $obj->set($field,$self->reasonnum);
          $error = $obj->replace;
        }
      }
    }
    $error ||= $reason->delete;
  }

  if ( $error ) {
    $dbh->rollback if $oldAutoCommit;
    return $error;
  }

  $dbh->commit or die $dbh->errstr if $oldAutoCommit;

  '';

}

=back

=head1 CLASS METHODS

=over 4

=item new_or_existing reason => REASON, type => TYPE, class => CLASS

Fetches the reason matching these parameters if there is one.  If not,
inserts one.  Will also insert the reason type if necessary.  CLASS must
be one of 'C' (cancel reasons), 'R' (credit reasons), 'S' (suspend reasons),
or 'F' (refund reasons).

This will die if anything fails.

=cut

sub new_or_existing {
  my $class = shift;
  my %opt = @_;

  my $error = '';
  my $reason_type;
  if ( ref $opt{type} eq 'FS::reason_type' ) {
    $reason_type = $opt{type};
  } elsif ( $opt{type} =~ /^\d+$/ ) {
    $reason_type = FS::reason_type->by_key($opt{type});
    if (!$reason_type) {
      die "reason_type #$opt{type} not found\n";
    }
  } else {
    my %hash = ('class' => $opt{'class'}, 'type' => $opt{'type'});
    $reason_type = qsearchs('reason_type', \%hash)
                      || FS::reason_type->new(\%hash);

    $error = $reason_type->insert unless $reason_type->typenum;
    die "error inserting reason type: $error\n" if $error;
  }

  my %hash = ('reason_type' => $reason_type->typenum,
              'reason' => $opt{'reason'});
  my $reason = qsearchs('reason', \%hash)
               || FS::reason->new(\%hash);

  $error = $reason->insert unless $reason->reasonnum;
  die "error inserting reason: $error\n" if $error;

  $reason;
}

=head1 BUGS

The reason_type column should have been typenum, and then that cascaded into
a bunch of other stupidity where that conflicts with the autogenerated methos
and so we need our own manual and inconsistently named reasontype method.

=head1 SEE ALSO

L<FS::Record>, schema.html from the base documentation.

=cut

1;