1 package FS::cust_pay_void;
4 use base qw( FS::otaker_Mixin FS::payinfo_transaction_Mixin FS::cust_main_Mixin
6 use vars qw( @encrypted_fields $otaker_upgrade_kludge );
7 use Business::CreditCard;
8 use FS::UID qw(getotaker);
9 use FS::Record qw(qsearch qsearchs dbh fields);
14 #use FS::cust_bill_pay;
15 #use FS::cust_pay_refund;
19 @encrypted_fields = ('payinfo');
20 $otaker_upgrade_kludge = 0;
24 FS::cust_pay_void - Object methods for cust_pay_void objects
28 use FS::cust_pay_void;
30 $record = new FS::cust_pay_void \%hash;
31 $record = new FS::cust_pay_void { 'column' => 'value' };
33 $error = $record->insert;
35 $error = $new_record->replace($old_record);
37 $error = $record->delete;
39 $error = $record->check;
43 An FS::cust_pay_void object represents a voided payment. The following fields
44 are currently supported:
50 primary key (assigned automatically for new payments)
54 customer (see L<FS::cust_main>)
58 Amount of this payment
62 specified as a UNIX timestamp; see L<perlfunc/"time">. Also see
63 L<Time::Local> and L<Date::Parse> for conversion functions.
67 order taker (see L<FS::access_user>)
71 Payment Type (See L<FS::payinfo_Mixin> for valid values)
75 card number, check #, or comp issuer (4-8 lowercase alphanumerics; think username), respectively
79 text field for tracking card processing
83 books closed flag, empty or `Y'
87 Desired pkgnum when using experimental package balances.
101 Creates a new payment. To add the payment to the databse, see L<"insert">.
105 sub table { 'cust_pay_void'; }
109 Adds this voided payment to the database.
113 "Un-void"s this payment: Deletes the voided payment from the database and adds
114 back a normal payment.
121 local $SIG{HUP} = 'IGNORE';
122 local $SIG{INT} = 'IGNORE';
123 local $SIG{QUIT} = 'IGNORE';
124 local $SIG{TERM} = 'IGNORE';
125 local $SIG{TSTP} = 'IGNORE';
126 local $SIG{PIPE} = 'IGNORE';
128 my $oldAutoCommit = $FS::UID::AutoCommit;
129 local $FS::UID::AutoCommit = 0;
132 my $cust_pay = new FS::cust_pay ( {
133 map { $_ => $self->get($_) } fields('cust_pay')
135 my $error = $cust_pay->insert;
137 $dbh->rollback if $oldAutoCommit;
141 $error = $self->delete;
143 $dbh->rollback if $oldAutoCommit;
147 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
155 Deletes this voided payment. You probably don't want to use this directly; see
156 the B<unvoid> method to add the original payment back.
158 =item replace [ OLD_RECORD ]
160 You can, but probably shouldn't modify voided payments...
162 Replaces the OLD_RECORD with this one in the database, or, if OLD_RECORD is not
163 supplied, replaces this record. If there is an error, returns the error,
164 otherwise returns false.
168 Checks all fields to make sure this is a valid voided payment. If there is an
169 error, returns the error, otherwise returns false. Called by the insert
178 $self->ut_numbern('paynum')
179 || $self->ut_numbern('custnum')
180 || $self->ut_money('paid')
181 || $self->ut_number('_date')
182 || $self->ut_textn('paybatch')
183 || $self->ut_enum('closed', [ '', 'Y' ])
184 || $self->ut_foreign_keyn('pkgnum', 'cust_pkg', 'pkgnum')
185 || $self->ut_numbern('void_date')
186 || $self->ut_textn('reason')
187 || $self->payinfo_check
189 return $error if $error;
191 return "paid must be > 0 " if $self->paid <= 0;
193 return "unknown cust_main.custnum: ". $self->custnum
195 || qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
197 $self->void_date(time) unless $self->void_date;
199 $self->void_usernum($FS::CurrentUser::CurrentUser->usernum)
200 unless $self->void_usernum;
207 Returns the parent customer object (see L<FS::cust_main>).
213 qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
216 =item void_access_user
218 Returns the voiding employee object (see L<FS::access_user>).
222 sub void_access_user {
224 qsearchs('access_user', { 'usernum' => $self->void_usernum } );
227 # Used by FS::Upgrade to migrate to a new database.
228 sub _upgrade_data { # class method
229 my ($class, %opts) = @_;
231 my $sql = "SELECT usernum FROM access_user WHERE username = ( SELECT history_user FROM h_cust_pay_void WHERE paynum = ? AND history_action = 'insert' ORDER BY history_date LIMIT 1 ) ";
232 my $sth = dbh->prepare($sql) or die dbh->errstr;
234 foreach my $cust_pay_void (qsearch('cust_pay_void', {'void_usernum' => ''})) {
235 $sth->execute($cust_pay_void->paynum) or die $sth->errstr;
236 my $row = $sth->fetchrow_arrayref;
237 my $usernum = $row ? $row->[0] : '';
239 $cust_pay_void->void_usernum($usernum);
240 my $error = $cust_pay_void->replace;
241 die $error if $error;
243 warn "cust_pay_void upgrade: can't find access_user record for ". $cust_pay_void->paynum. "\n";
247 local($otaker_upgrade_kludge) = 1;
248 $class->_upgrade_otaker(%opts);
250 #XXX look for the h_cust_pay delete records and when that's a different
251 # usernum, set usernum
258 Delete and replace methods.
262 L<FS::cust_pay>, L<FS::Record>, schema.html from the base documentation.