don't generate invoices for COMP customers
[freeside.git] / FS / FS / cust_pay_refund.pm
1 package FS::cust_pay_refund;
2
3 use strict;
4 use vars qw( @ISA ); #$conf );
5 use FS::UID qw( getotaker );
6 use FS::Record qw( qsearchs ); # qsearch );
7 use FS::cust_main;
8 use FS::cust_pay;
9 use FS::cust_refund;
10
11 @ISA = qw( FS::Record );
12
13 #ask FS::UID to run this stuff for us later
14 #FS::UID->install_callback( sub { 
15 #  $conf = new FS::Conf;
16 #} );
17
18 =head1 NAME
19
20 FS::cust_pay_refund - Object methods for cust_pay_refund records
21
22 =head1 SYNOPSIS
23
24   use FS::cust_pay_refund;
25
26   $record = new FS::cust_pay_refund \%hash;
27   $record = new FS::cust_pay_refund { 'column' => 'value' };
28
29   $error = $record->insert;
30
31   $error = $new_record->replace($old_record);
32
33   $error = $record->delete;
34
35   $error = $record->check;
36
37 =head1 DESCRIPTION
38
39 An FS::cust_pay_refund object represents application of a refund (see
40 L<FS::cust_refund>) to an payment (see L<FS::cust_pay>).  FS::cust_pay_refund
41 inherits from FS::Record.  The following fields are currently supported:
42
43 =over 4
44
45 =item payrefundnum - primary key
46
47 =item paynum - credit being applied 
48
49 =item refundnum - invoice to which credit is applied (see L<FS::cust_bill>)
50
51 =item amount - amount of the credit applied
52
53 =item _date - specified as a UNIX timestamp; see L<perlfunc/"time">.  Also see
54 L<Time::Local> and L<Date::Parse> for conversion functions.
55
56 =back
57
58 =head1 METHODS
59
60 =over 4
61
62 =item new HASHREF
63
64 Creates a new cust_pay_refund.  To add the cust_pay_refund to the database,
65 see L<"insert">.
66
67 =cut
68
69 sub table { 'cust_pay_refund'; }
70
71 =item insert
72
73 Adds this cust_pay_refund to the database.  If there is an error, returns the
74 error, otherwise returns false.
75
76 =item delete
77
78 =cut
79
80 sub delete {
81   my $self = shift;
82   return "Can't apply refund to closed payment"
83     if $self->cust_pay->closed =~ /^Y/i;
84   return "Can't apply closed refund"
85     if $self->cust_refund->closed =~ /^Y/i;
86   $self->SUPER::delete(@_);
87 }
88
89 =item replace OLD_RECORD
90
91 Application of refunds to payments may not be modified.
92
93 =cut
94
95 sub replace {
96   return "Can't modify application of a refund to payment!"
97 }
98
99 =item check
100
101 Checks all fields to make sure this is a valid refund application to a payment.
102 If there is an error, returns the error, otherwise returns false.  Called by
103 the insert and replace methods.
104
105 =cut
106
107 sub check {
108   my $self = shift;
109
110   my $error =
111     $self->ut_numbern('payrefundnum')
112     || $self->ut_number('paynum')
113     || $self->ut_number('refundnum')
114     || $self->ut_numbern('_date')
115     || $self->ut_money('amount')
116   ;
117   return $error if $error;
118
119   return "amount must be > 0" if $self->amount <= 0;
120
121   return "Unknown payment"
122     unless my $cust_pay = 
123       qsearchs( 'cust_pay', { 'paynum' => $self->paynum } );
124
125   return "Unknown refund"
126     unless my $cust_refund =
127       qsearchs( 'cust_refund', { 'refundnum' => $self->refundnum } );
128
129   $self->_date(time) unless $self->_date;
130
131   return 'Cannot apply ($'. $self->amount. ') more than'.
132          ' remaining value of refund ($'. $cust_refund->unapplied. ')'
133     unless $self->amount <= $cust_refund->unapplied;
134
135   return "Cannot apply more than remaining value of payment"
136     unless $self->amount <= $cust_pay->unapplied;
137
138   $self->SUPER::check;
139 }
140
141 =item sub cust_credit
142
143 Returns the credit (see L<FS::cust_credit>)
144
145 =cut
146
147 sub cust_credit {
148   my $self = shift;
149   qsearchs( 'cust_credit', { 'crednum' => $self->crednum } );
150 }
151
152 =item cust_bill 
153
154 Returns the invoice (see L<FS::cust_bill>)
155
156 =cut
157
158 sub cust_bill {
159   my $self = shift;
160   qsearchs( 'cust_bill', { 'invnum' => $self->invnum } );
161 }
162
163 =back
164
165 =head1 BUGS
166
167 The delete method.
168
169 =head1 SEE ALSO
170
171 L<FS::Record>, L<FS::cust_refund>, L<FS::cust_bill>, L<FS::cust_credit>,
172 schema.html from the base documentation.
173
174 =cut
175
176 1;
177