This commit was generated by cvs2svn to compensate for changes in r4888,
[freeside.git] / FS / FS / cust_credit_bill.pm
1 package FS::cust_credit_bill;
2
3 use strict;
4 use vars qw( @ISA $conf );
5 use FS::UID qw( getotaker );
6 use FS::Record qw( qsearch qsearchs );
7 use FS::cust_bill_ApplicationCommon;
8 use FS::cust_bill;
9 use FS::cust_credit;
10
11 @ISA = qw( FS::cust_bill_ApplicationCommon );
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_credit_bill - Object methods for cust_credit_bill records
21
22 =head1 SYNOPSIS
23
24   use FS::cust_credit_bill;
25
26   $record = new FS::cust_credit_bill \%hash;
27   $record = new FS::cust_credit_bill { '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_credit_bill object represents application of a credit (see
40 L<FS::cust_credit>) to an invoice (see L<FS::cust_bill>).  FS::cust_credit_bill
41 inherits from FS::cust_bill_ApplicationCommon and FS::Record.  The following
42 fields are currently supported:
43
44 =over 4
45
46 =item creditbillnum - primary key
47
48 =item crednum - credit being applied 
49
50 =item invnum - invoice to which credit is applied (see L<FS::cust_bill>)
51
52 =item amount - amount of the credit applied
53
54 =item _date - specified as a UNIX timestamp; see L<perlfunc/"time">.  Also see
55 L<Time::Local> and L<Date::Parse> for conversion functions.
56
57 =back
58
59 =head1 METHODS
60
61 =over 4
62
63 =item new HASHREF
64
65 Creates a new cust_credit_bill.  To add the cust_credit_bill to the database,
66 see L<"insert">.
67
68 =cut
69
70 sub table { 'cust_credit_bill'; }
71
72 sub _app_source_name  { 'credit'; }
73 sub _app_source_table { 'cust_credit'; }
74 sub _app_lineitem_breakdown_table { 'cust_credit_bill_pkg'; }
75
76 =item insert
77
78 Adds this cust_credit_bill to the database ("Posts" all or part of a credit).
79 If there is an error, returns the error, otherwise returns false.
80
81 =item delete
82
83 Currently unimplemented.
84
85 =cut
86
87 sub delete {
88   my $self = shift;
89   return "Can't delete application for closed credit"
90     if $self->cust_credit->closed =~ /^Y/i;
91   return "Can't delete application for closed invoice"
92     if $self->cust_bill->closed =~ /^Y/i;
93   $self->SUPER::delete(@_);
94 }
95
96 =item replace OLD_RECORD
97
98 Application of credits may not be modified.
99
100 =cut
101
102 sub replace {
103   return "Can't modify application of credit!"
104 }
105
106 =item check
107
108 Checks all fields to make sure this is a valid credit application.  If there
109 is an error, returns the error, otherwise returns false.  Called by the insert
110 and replace methods.
111
112 =cut
113
114 sub check {
115   my $self = shift;
116
117   my $error =
118     $self->ut_numbern('creditbillnum')
119     || $self->ut_foreign_key('crednum', 'cust_credit', 'crednum')
120     || $self->ut_foreign_key('invnum', 'cust_bill', 'invnum' )
121     || $self->ut_numbern('_date')
122     || $self->ut_money('amount')
123   ;
124   return $error if $error;
125
126   return "amount must be > 0" if $self->amount <= 0;
127
128   $self->_date(time) unless $self->_date;
129
130   return "Cannot apply more than remaining value of credit"
131     unless $self->amount <= $self->cust_credit->credited;
132
133   return "Cannot apply more than remaining value of invoice"
134     unless $self->amount <= $self->cust_bill->owed;
135
136   $self->SUPER::check;
137 }
138
139 =item sub cust_credit
140
141 Returns the credit (see L<FS::cust_credit>)
142
143 =cut
144
145 sub cust_credit {
146   my $self = shift;
147   qsearchs( 'cust_credit', { 'crednum' => $self->crednum } );
148 }
149
150 =back
151
152 =head1 BUGS
153
154 The delete method.
155
156 This probably should have been called cust_bill_credit.
157
158 =head1 SEE ALSO
159
160 L<FS::Record>, L<FS::cust_bill>, L<FS::cust_credit>,
161 schema.html from the base documentation.
162
163 =cut
164
165 1;
166