1 package FS::cust_pay_refund;
4 use vars qw( @ISA ); #$conf );
5 use FS::UID qw( getotaker );
6 use FS::Record qw( qsearchs ); # qsearch );
11 @ISA = qw( FS::Record );
13 #ask FS::UID to run this stuff for us later
14 #FS::UID->install_callback( sub {
15 # $conf = new FS::Conf;
20 FS::cust_pay_refund - Object methods for cust_pay_refund records
24 use FS::cust_pay_refund;
26 $record = new FS::cust_pay_refund \%hash;
27 $record = new FS::cust_pay_refund { 'column' => 'value' };
29 $error = $record->insert;
31 $error = $new_record->replace($old_record);
33 $error = $record->delete;
35 $error = $record->check;
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:
45 =item payrefundnum - primary key
47 =item paynum - credit being applied
49 =item refundnum - invoice to which credit is applied (see L<FS::cust_bill>)
51 =item amount - amount of the credit applied
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.
64 Creates a new cust_pay_refund. To add the cust_pay_refund to the database,
69 sub table { 'cust_pay_refund'; }
73 Adds this cust_pay_refund to the database. If there is an error, returns the
74 error, otherwise returns false.
80 return "Can't apply refund to closed payment"
81 if $self->cust_pay->closed =~ /^Y/i;
82 return "Can't apply payment to closed refund"
83 if $self->cust_refund->closed =~ /^Y/i;
84 $self->SUPER::insert(@_);
93 return "Can't remove refund from closed payment"
94 if $self->cust_pay->closed =~ /^Y/i;
95 return "Can't remove payment from closed refund"
96 if $self->cust_refund->closed =~ /^Y/i;
97 $self->SUPER::delete(@_);
100 =item replace OLD_RECORD
102 Application of refunds to payments may not be modified.
107 return "Can't modify application of a refund to payment!"
112 Checks all fields to make sure this is a valid refund application to a payment.
113 If there is an error, returns the error, otherwise returns false. Called by
114 the insert and replace methods.
122 $self->ut_numbern('payrefundnum')
123 || $self->ut_number('paynum')
124 || $self->ut_number('refundnum')
125 || $self->ut_numbern('_date')
126 || $self->ut_money('amount')
128 return $error if $error;
130 return "amount must be > 0" if $self->amount <= 0;
132 return "Unknown payment"
133 unless my $cust_pay =
134 qsearchs( 'cust_pay', { 'paynum' => $self->paynum } );
136 return "Unknown refund"
137 unless my $cust_refund =
138 qsearchs( 'cust_refund', { 'refundnum' => $self->refundnum } );
140 $self->_date(time) unless $self->_date;
142 return 'Cannot apply ($'. $self->amount. ') more than'.
143 ' remaining value of refund ($'. $cust_refund->unapplied. ')'
144 unless $self->amount <= $cust_refund->unapplied;
146 return "Cannot apply more than remaining value of payment"
147 unless $self->amount <= $cust_pay->unapplied;
154 Returns the payment (see L<FS::cust_pay>)
160 qsearchs( 'cust_pay', { 'paynum' => $self->paynum } );
165 Returns the refund (see L<FS::cust_refund>)
171 qsearchs( 'cust_refund', { 'refundnum' => $self->refundnum } );
182 L<FS::Record>, L<FS::cust_refund>, L<FS::cust_bill>, L<FS::cust_credit>,
183 schema.html from the base documentation.