55a5eb7782b45ddc51e52fc70c8b49ebbb6edacf
[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 =cut
77
78 sub insert {
79   my $self = shift;
80   my $error = $self->SUPER::insert(@_);
81   return $error if $error;
82
83   '';
84 }
85
86 =item delete
87
88 =cut
89
90 sub delete {
91   my $self = shift;
92   return "Can't apply refund to closed payment"
93     if $self->cust_pay->closed =~ /^Y/i;
94   return "Can't apply closed refund"
95     if $self->cust_refund->closed =~ /^Y/i;
96   $self->SUPER::delete(@_);
97 }
98
99 =item replace OLD_RECORD
100
101 Application of refunds to payments may not be modified.
102
103 =cut
104
105 sub replace {
106   return "Can't modify application of a refund to payment!"
107 }
108
109 =item check
110
111 Checks all fields to make sure this is a valid refund application to a payment.
112 If there is an error, returns the error, otherwise returns false.  Called by
113 the insert and replace methods.
114
115 =cut
116
117 sub check {
118   my $self = shift;
119
120   my $error =
121     $self->ut_numbern('payrefundnum')
122     || $self->ut_number('paynum')
123     || $self->ut_number('refundnum')
124     || $self->ut_numbern('_date')
125     || $self->ut_money('amount')
126   ;
127   return $error if $error;
128
129   return "amount must be > 0" if $self->amount <= 0;
130
131   return "Unknown payment"
132     unless my $cust_pay = 
133       qsearchs( 'cust_pay', { 'paynum' => $self->paynum } );
134
135   return "Unknown refund"
136     unless my $cust_refund =
137       qsearchs( 'cust_refund', { 'refundnum' => $self->refundnum } );
138
139   $self->_date(time) unless $self->_date;
140
141   return 'Cannot apply ($'. $self->amount. ') more than'.
142          ' remaining value of refund ($'. $cust_refund->unapplied. ')'
143     unless $self->amount <= $cust_refund->unapplied;
144
145   return "Cannot apply more than remaining value of payment"
146     unless $self->amount <= $cust_pay->unapplied;
147
148   $self->SUPER::check;
149 }
150
151 =item sub cust_credit
152
153 Returns the credit (see L<FS::cust_credit>)
154
155 =cut
156
157 sub cust_credit {
158   my $self = shift;
159   qsearchs( 'cust_credit', { 'crednum' => $self->crednum } );
160 }
161
162 =item cust_bill 
163
164 Returns the invoice (see L<FS::cust_bill>)
165
166 =cut
167
168 sub cust_bill {
169   my $self = shift;
170   qsearchs( 'cust_bill', { 'invnum' => $self->invnum } );
171 }
172
173 =back
174
175 =head1 BUGS
176
177 The delete method.
178
179 =head1 SEE ALSO
180
181 L<FS::Record>, L<FS::cust_refund>, L<FS::cust_bill>, L<FS::cust_credit>,
182 schema.html from the base documentation.
183
184 =cut
185
186 1;
187