]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm
5a6245632cd7543c75c0a1d09a174d01c4785cba
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Circ / Money.pm
1 # ---------------------------------------------------------------
2 # Copyright (C) 2005  Georgia Public Library Service 
3 # Bill Erickson <billserickson@gmail.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 # ---------------------------------------------------------------
15
16
17 package OpenILS::Application::Circ::Money;
18 use base qw/OpenSRF::Application/;
19 use strict; use warnings;
20 use OpenILS::Application::AppUtils;
21 my $apputils = "OpenILS::Application::AppUtils";
22 my $U = "OpenILS::Application::AppUtils";
23
24 use OpenSRF::EX qw(:try);
25 use OpenILS::Perm;
26 use Data::Dumper;
27 use OpenILS::Event;
28 use OpenSRF::Utils::Logger qw/:logger/;
29 use OpenILS::Utils::CStoreEditor qw/:funcs/;
30
31 __PACKAGE__->register_method(
32         method  => "make_payments",
33         api_name        => "open-ils.circ.money.payment",
34         notes           => <<"  NOTE");
35         Pass in a structure like so:
36                 { 
37                         cash_drawer: <string>, 
38                         payment_type : <string>, 
39                         note : <string>, 
40                         userid : <id>,
41                         payments: [ 
42                                 [trans_id, amt], 
43                                 [...]
44                         ], 
45                         patron_credit : <credit amt> 
46                 }
47         login must have CREATE_PAYMENT priveleges.
48         If any payments fail, all are reverted back.
49         NOTE
50
51 sub make_payments {
52
53         my( $self, $client, $login, $payments ) = @_;
54
55         my( $user, $trans, $evt );
56
57         ( $user, $evt ) = $apputils->checkses($login);
58         return $evt if $evt;
59         $evt = $apputils->check_perms($user->id, $user->ws_ou, 'CREATE_PAYMENT');
60         return $evt if $evt;
61
62         my $e = new_editor(); # at this point, just for convenience
63
64         $logger->info("Creating payment objects: " . Dumper($payments) );
65
66         my $session = $apputils->start_db_session;
67         my $type                = $payments->{payment_type};
68         my $credit      = $payments->{patron_credit} || 0;
69         my $drawer      = $user->wsid;
70         my $userid      = $payments->{userid};
71         my $note                = $payments->{note};
72         my $cc_type = $payments->{cc_type} || 'n/a';
73         my $cc_number           = $payments->{cc_number} || 'n/a';
74         my $expire_month        = $payments->{expire_month};
75         my $expire_year = $payments->{expire_year};
76         my $approval_code = $payments->{approval_code} || 'n/a';
77         my $check_number        = $payments->{check_number} || 'n/a';
78
79         my $total_paid = 0;
80
81         for my $pay (@{$payments->{payments}}) {
82
83                 my $transid = $pay->[0];
84                 my $amount = $pay->[1];
85                 $amount =~ s/\$//og; # just to be safe
86
87                 $total_paid += $amount;
88
89                 $trans = fetch_mbts($self, $client, $login, $transid);
90                 return $trans if $U->event_code($trans);
91
92                 $logger->info("payment: processing transaction [$transid] with balance_owed = ". 
93                         $trans->balance_owed. ",  payment amount = $amount, and payment type = $type");
94
95                 if($trans->usr != $userid) { # Do we need to restrict this in some way ??
96                         $logger->info( " * User $userid is making a payment for " . 
97                                 "a different user: " .  $trans->usr . ' for transaction ' . $trans->id  );
98                 }
99
100                 if($type eq 'credit_payment') {
101                         $credit -= $amount;
102                         $logger->activity("user ".$user->id." reducing patron credit by ".
103                                 "$credit for making a credit_payment on transaction ".$trans->id);
104                 }
105
106                 # A negative payment is a refund.  
107                 if( $amount < 0 ) {
108                         
109                         $logger->info("payment: received a negative payment (refund) of $amount");
110
111                         # If the refund causes the transaction balance to exceed 0 dollars, 
112                         # we are in effect loaning the patron money.  This is not allowed.
113                         if( ($trans->balance_owed - $amount) > 0 ) {
114                                 return OpenILS::Event->new('REFUND_EXCEEDS_BALANCE');
115                         }
116
117                         # Otherwise, make sure the refund does not exceed desk payments
118                         # This is also not allowed
119                         my $desk_total = 0;
120                         my $desk_payments = $e->search_money_desk_payment(
121                                 { xact => $transid, voided => 'f' });
122                         $desk_total += $_->amount for @$desk_payments;
123
124                         if( (-$amount) > $desk_total ) {
125                                 return OpenILS::Event->new(
126                                         'REFUND_EXCEEDS_DESK_PAYMENTS', 
127                                         payload => { allowed_refund => $desk_total, submitted_refund => -$amount } );
128                         }
129                 }
130
131                 my $payobj = "Fieldmapper::money::$type";
132                 $payobj = $payobj->new;
133
134                 $payobj->amount($amount);
135                 $payobj->amount_collected($amount);
136                 $payobj->xact($transid);
137                 $payobj->note($note);
138
139                 if ($payobj->has_field('accepting_usr')) { $payobj->accepting_usr($user->id); }
140                 if ($payobj->has_field('cash_drawer')) { $payobj->cash_drawer($drawer); }
141                 if ($payobj->has_field('cc_type')) { $payobj->cc_type($cc_type); }
142                 if ($payobj->has_field('cc_number')) { $payobj->cc_number($cc_number); }
143                 if ($payobj->has_field('expire_month')) { $payobj->expire_month($expire_month); }
144                 if ($payobj->has_field('expire_year')) { $payobj->expire_year($expire_year); }
145                 if ($payobj->has_field('approval_code')) { $payobj->approval_code($approval_code); }
146                 if ($payobj->has_field('check_number')) { $payobj->check_number($check_number); }
147                 
148                 # update the transaction if it's done 
149                 if( (my $cred = ($trans->balance_owed - $amount)) <= 0 ) {
150
151                         # Any overpay on this transaction goes directly into patron credit 
152                         $cred = -$cred;
153
154                         $logger->info("payment: amount ($amount) exceeds transaction balance of ".
155                                 $trans->balance_owed.".  Applying patron credit of $cred");
156
157                         $credit += $cred;
158
159                         $trans = $session->request(
160                                 "open-ils.storage.direct.money.billable_transaction.retrieve", $transid )->gather(1);
161
162                         # If this is a circulation, we can't close the transaction unless stop_fines is set
163                         my $circ = $session->request(
164                                 'open-ils.storage.direct.action.circulation.retrieve', $transid )->gather(1);
165
166                         if( !$circ || $circ->stop_fines ) {
167
168                                 $trans->xact_finish("now");
169                                 my $s = $session->request(
170                                         "open-ils.storage.direct.money.billable_transaction.update", $trans )->gather(1);
171         
172                                 if(!$s) { throw OpenSRF::EX::ERROR 
173                                         ("Error updating billable_xact in circ.money.payment"); }
174                         }
175                 }
176
177                 my $s = $session->request(
178                         "open-ils.storage.direct.money.$type.create", $payobj )->gather(1);
179                 if(!$s) { throw OpenSRF::EX::ERROR ("Error creating new $type"); }
180
181         }
182
183
184         my $uid = $user->id;
185         $logger->info("user $uid applying total ".
186                 "credit of $credit to user $userid") if $credit != 0;
187
188         $logger->info("user $uid applying total payment of $total_paid to user $userid");
189
190         $evt = _update_patron_credit( $session, $userid, $credit );
191         return $evt if $evt;
192
193         $apputils->commit_db_session($session);
194
195         # ------------------------------------------------------------------------------
196         # Update the patron penalty info in the DB
197         # ------------------------------------------------------------------------------
198         $U->update_patron_penalties( 
199                 authtoken => $login,
200                 patronid  => $userid,
201         );
202
203         $client->respond_complete(1);   
204
205         return undef;
206 }
207
208
209 sub _update_patron_credit {
210         my( $session, $userid, $credit ) = @_;
211         #return if $credit <= 0;
212
213         my $patron = $session->request( 
214                 'open-ils.storage.direct.actor.user.retrieve', $userid )->gather(1);
215
216         $patron->credit_forward_balance( 
217                 $patron->credit_forward_balance + $credit);
218
219         if( $patron->credit_forward_balance < 0 ) {
220                 return OpenILS::Event->new('NEGATIVE_PATRON_BALANCE');
221         }
222         
223         $logger->info("Total patron credit for $userid is now " . $patron->credit_forward_balance );
224
225         $session->request( 
226                 'open-ils.storage.direct.actor.user.update', $patron )->gather(1);
227
228         return undef;
229 }
230
231
232 __PACKAGE__->register_method(
233         method  => "retrieve_payments",
234         api_name        => "open-ils.circ.money.payment.retrieve.all_",
235         notes           => "Returns a list of payments attached to a given transaction"
236         );
237         
238 sub retrieve_payments {
239         my( $self, $client, $login, $transid ) = @_;
240
241         my( $staff, $evt ) =  
242                 $apputils->checksesperm($login, 'VIEW_TRANSACTION');
243         return $evt if $evt;
244
245         # XXX the logic here is wrong.. we need to check the owner of the transaction
246         # to make sure the requestor has access
247
248         # XXX grab the view, for each object in the view, grab the real object
249
250         return $apputils->simplereq(
251                 'open-ils.cstore',
252                 'open-ils.cstore.direct.money.payment.search.atomic', { xact => $transid } );
253 }
254
255
256
257 __PACKAGE__->register_method(
258         method  => "retrieve_payments2",
259         api_name        => "open-ils.circ.money.payment.retrieve.all",
260         notes           => "Returns a list of payments attached to a given transaction"
261         );
262         
263 sub retrieve_payments2 {
264         my( $self, $client, $login, $transid ) = @_;
265
266         my $e = new_editor(authtoken=>$login);
267         return $e->event unless $e->checkauth;
268         return $e->event unless $e->allowed('VIEW_TRANSACTION');
269
270         my @payments;
271         my $pmnts = $e->search_money_payment({ xact => $transid });
272         for( @$pmnts ) {
273                 my $type = $_->payment_type;
274                 my $meth = "retrieve_money_$type";
275                 my $p = $e->$meth($_->id) or return $e->event;
276                 $p->payment_type($type);
277                 $p->cash_drawer($e->retrieve_actor_workstation($p->cash_drawer))
278                         if $p->has_field('cash_drawer');
279                 push( @payments, $p );
280         }
281
282         return \@payments;
283 }
284
285
286
287 __PACKAGE__->register_method(
288         method  => "create_grocery_bill",
289         api_name        => "open-ils.circ.money.grocery.create",
290         notes           => <<"  NOTE");
291         Creates a new grocery transaction using the transaction object provided
292         PARAMS: (login_session, money.grocery (mg) object)
293         NOTE
294
295 sub create_grocery_bill {
296         my( $self, $client, $login, $transaction ) = @_;
297
298         my( $staff, $evt ) = $apputils->checkses($login);
299         return $evt if $evt;
300         $evt = $apputils->check_perms($staff->id, 
301                 $transaction->billing_location, 'CREATE_TRANSACTION' );
302         return $evt if $evt;
303
304
305         $logger->activity("Creating grocery bill " . Dumper($transaction) );
306
307         $transaction->clear_id;
308         my $session = $apputils->start_db_session;
309         my $transid = $session->request(
310                 'open-ils.storage.direct.money.grocery.create', $transaction)->gather(1);
311
312         throw OpenSRF::EX ("Error creating new money.grocery") unless defined $transid;
313
314         $logger->debug("Created new grocery transaction $transid");
315         
316         $apputils->commit_db_session($session);
317
318     my $e = new_editor(xact=>1);
319     $evt = _check_open_xact($e, $transid);
320     return $evt if $evt;
321     $e->commit;
322
323         return $transid;
324 }
325
326
327 __PACKAGE__->register_method(
328         method => 'fetch_grocery',
329         api_name => 'open-ils.circ.money.grocery.retrieve'
330 );
331
332 sub fetch_grocery {
333         my( $self, $conn, $auth, $id ) = @_;
334         my $e = new_editor(authtoken=>$auth);
335         return $e->event unless $e->checkauth;
336         return $e->event unless $e->allowed('VIEW_TRANSACTION'); # eh.. basically the same permission
337         my $g = $e->retrieve_money_grocery($id)
338                 or return $e->event;
339         return $g;
340 }
341
342
343 __PACKAGE__->register_method(
344         method  => "billing_items",
345         api_name        => "open-ils.circ.money.billing.retrieve.all",
346         notes           =><<"   NOTE");
347         Returns a list of billing items for the given transaction.
348         PARAMS( login, transaction_id )
349         NOTE
350
351 sub billing_items {
352         my( $self, $client, $login, $transid ) = @_;
353
354         my( $trans, $evt ) = $U->fetch_billable_xact($transid);
355         return $evt if $evt;
356
357         my $staff;
358         ($staff, $evt ) = $apputils->checkses($login);
359         return $evt if $evt;
360
361         if($staff->id ne $trans->usr) {
362                 $evt = $U->check_perms($staff->id, $staff->home_ou, 'VIEW_TRANSACTION');
363                 return $evt if $evt;
364         }
365         
366         return $apputils->simplereq( 'open-ils.cstore',
367                 'open-ils.cstore.direct.money.billing.search.atomic', { xact => $transid } )
368 }
369
370
371 __PACKAGE__->register_method(
372         method  => "billing_items_create",
373         api_name        => "open-ils.circ.money.billing.create",
374         notes           =><<"   NOTE");
375         Creates a new billing line item
376         PARAMS( login, bill_object (mb) )
377         NOTE
378
379 sub billing_items_create {
380         my( $self, $client, $login, $billing ) = @_;
381
382         my $e = new_editor(authtoken => $login, xact => 1);
383         return $e->event unless $e->checkauth;
384         return $e->event unless $e->allowed('CREATE_BILL');
385
386         my $xact = $e->retrieve_money_billable_transaction($billing->xact)
387                 or return $e->event;
388
389         # if the transaction was closed, re-open it
390         if($xact->xact_finish) {
391                 $xact->clear_xact_finish;
392                 $e->update_money_billable_transaction($xact)
393                         or return $e->event;
394         }
395
396         my $amt = $billing->amount;
397         $amt =~ s/\$//og;
398         $billing->amount($amt);
399
400         $e->create_money_billing($billing) or return $e->event;
401         $e->commit;
402
403         # ------------------------------------------------------------------------------
404         # Update the patron penalty info in the DB
405         # ------------------------------------------------------------------------------
406         $U->update_patron_penalties(
407                 authtoken => $login,
408                 patronid  => $xact->usr,
409         );
410
411         return $billing->id;
412 }
413
414 __PACKAGE__->register_method(
415         method          =>      'void_bill',
416         api_name                => 'open-ils.circ.money.billing.void',
417         signature       => q/
418                 Voids a bill
419                 @param authtoken Login session key
420                 @param billid The id of the bill to void
421                 @return 1 on success, Event on error
422         /
423 );
424
425
426 sub void_bill {
427         my( $s, $c, $authtoken, @billids ) = @_;
428
429         my $e = new_editor( authtoken => $authtoken, xact => 1 );
430         return $e->event unless $e->checkauth;
431         return $e->event unless $e->allowed('VOID_BILLING');
432
433     my %users;
434     for my $billid (@billids) {
435
436             my $bill = $e->retrieve_money_billing($billid)
437                     or return $e->event;
438
439         my $xact = $e->retrieve_money_billable_transaction($bill->xact)
440             or return $e->event;
441
442         $users{$xact->usr} = 1;
443     
444             return OpenILS::Event->new('BILL_ALREADY_VOIDED', payload => $bill) 
445                     if $bill->voided and $bill->voided =~ /t/io;
446     
447             $bill->voided('t');
448             $bill->voider($e->requestor->id);
449             $bill->void_time('now');
450     
451             $e->update_money_billing($bill) or return $e->event;
452             my $evt = _check_open_xact($e, $bill->xact, $xact);
453             return $evt if $evt;
454     }
455
456         $e->commit;
457     # update the penalties for each affected user
458         $U->update_patron_penalties( authtoken => $authtoken, patronid  => $_ ) for keys %users;
459         return 1;
460 }
461
462
463 sub _check_open_xact {
464         my( $editor, $xactid, $xact ) = @_;
465
466         # Grab the transaction
467         $xact ||= $editor->retrieve_money_billable_transaction($xactid);
468     return $editor->event unless $xact;
469     $xactid ||= $xact->id;
470
471         # grab the summary and see how much is owed on this transaction
472         my ($summary) = $U->fetch_mbts($xactid, $editor);
473
474         # grab the circulation if it is a circ;
475         my $circ = $editor->retrieve_action_circulation($xactid);
476
477         # If nothing is owed on the transaction but it is still open
478         # and this transaction is not an open circulation, close it
479         if( 
480                 ( $summary->balance_owed == 0 and ! $xact->xact_finish ) and
481                 ( !$circ or $circ->stop_fines )) {
482
483                 $logger->info("closing transaction ".$xact->id. ' becauase balance_owed == 0');
484                 $xact->xact_finish('now');
485                 $editor->update_money_billable_transaction($xact)
486                         or return $editor->event;
487                 return undef;
488         }
489
490         # If money is owed or a refund is due on the xact and xact_finish
491         # is set, clear it (to reopen the xact) and update
492         if( $summary->balance_owed != 0 and $xact->xact_finish ) {
493                 $logger->info("re-opening transaction ".$xact->id. ' becauase balance_owed != 0');
494                 $xact->clear_xact_finish;
495                 $editor->update_money_billable_transaction($xact)
496                         or return $editor->event;
497                 return undef;
498         }
499
500         return undef;
501 }
502
503
504
505 __PACKAGE__->register_method (
506         method => 'fetch_mbts',
507         api_name => 'open-ils.circ.money.billable_xact_summary.retrieve'
508 );
509 sub fetch_mbts {
510         my( $self, $conn, $auth, $id) = @_;
511
512         my $e = new_editor(xact => 1, authtoken=>$auth);
513         return $e->event unless $e->checkauth;
514         my ($mbts) = $U->fetch_mbts($id, $e);
515
516         my $user = $e->retrieve_actor_user($mbts->usr)
517                 or return $e->die_event;
518
519         return $e->die_event unless $e->allowed('VIEW_TRANSACTION', $user->home_ou);
520         $e->rollback;
521         return $mbts
522 }
523
524
525
526 __PACKAGE__->register_method(
527         method => 'desk_payments',
528         api_name => 'open-ils.circ.money.org_unit.desk_payments'
529 );
530
531 sub desk_payments {
532         my( $self, $conn, $auth, $org, $start_date, $end_date ) = @_;
533         my $e = new_editor(authtoken=>$auth);
534         return $e->event unless $e->checkauth;
535         return $e->event unless $e->allowed('VIEW_TRANSACTION', $org);
536         my $data = $U->storagereq(
537                 'open-ils.storage.money.org_unit.desk_payments.atomic',
538                 $org, $start_date, $end_date );
539
540         $_->workstation( $_->workstation->name ) for(@$data);
541         return $data;
542 }
543
544
545 __PACKAGE__->register_method(
546         method => 'user_payments',
547         api_name => 'open-ils.circ.money.org_unit.user_payments'
548 );
549
550 sub user_payments {
551         my( $self, $conn, $auth, $org, $start_date, $end_date ) = @_;
552         my $e = new_editor(authtoken=>$auth);
553         return $e->event unless $e->checkauth;
554         return $e->event unless $e->allowed('VIEW_TRANSACTION', $org);
555         my $data = $U->storagereq(
556                 'open-ils.storage.money.org_unit.user_payments.atomic',
557                 $org, $start_date, $end_date );
558         for(@$data) {
559                 $_->usr->card(
560                         $e->retrieve_actor_card($_->usr->card)->barcode);
561                 $_->usr->home_ou(
562                         $e->retrieve_actor_org_unit($_->usr->home_ou)->shortname);
563         }
564         return $data;
565 }
566
567
568
569
570 1;
571
572
573