]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm
adding a billing to a closed transaction now re-opens the transaction
[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 OpenSRF::Utils::Logger qw/:logger/;
28 use OpenILS::Event;
29 use OpenILS::Utils::Editor 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         $logger->info("Creating payment objects: " . Dumper($payments) );
63
64         my $session = $apputils->start_db_session;
65         my $type                = $payments->{payment_type};
66         my $credit      = $payments->{patron_credit} || 0;
67         my $drawer      = $user->wsid;
68         my $userid      = $payments->{userid};
69         my $note                = $payments->{note};
70         my $cc_type = $payments->{cc_type} || 'n/a';
71         my $cc_number           = $payments->{cc_number} || 'n/a';
72         my $expire_month        = $payments->{expire_month};
73         my $expire_year = $payments->{expire_year};
74         my $approval_code = $payments->{approval_code} || 'n/a';
75         my $check_number        = $payments->{check_number} || 'n/a';
76
77         for my $pay (@{$payments->{payments}}) {
78
79                 my $transid = $pay->[0];
80                 my $amount = $pay->[1];
81                 ($trans, $evt) = $apputils->fetch_open_billable_transaction($transid);
82                 return $evt if $evt;
83
84                 if($trans->usr != $userid) { # Do we need to restrict this in some way ??
85                         $logger->info( " * User $userid is making a payment for " . 
86                                 "a different user: " .  $trans->usr . ' for transaction ' . $trans->id  );
87                 }
88
89                 if($type eq 'credit_payment') {
90                         $credit -= $amount;
91                         $logger->activity("user ".$user->id." reducing patron credit by ".
92                                 "$credit for making a credit_payment on transaction ".$trans->id);
93                 }
94
95
96                 # A negative payment is a refund.  If the refund causes the transaction 
97                 # balance to exceed 0 dollars, we are in effect loaning the patron
98                 # money.  This is not allowed.
99                 if( $amount < 0 and ($trans->balance_owed - $amount > 0) ) {
100                         return OpenILS::Event->new('REFUND_EXCEEDS_BALANCE');
101                 }
102
103                 my $payobj = "Fieldmapper::money::$type";
104                 $payobj = $payobj->new;
105
106                 $payobj->amount($amount);
107                 $payobj->amount_collected($amount);
108                 $payobj->accepting_usr($user->id);
109                 $payobj->xact($transid);
110                 $payobj->note($note);
111
112                 if ($payobj->has_field('cash_drawer')) { $payobj->cash_drawer($drawer); }
113                 if ($payobj->has_field('cc_type')) { $payobj->cc_type($cc_type); }
114                 if ($payobj->has_field('cc_number')) { $payobj->cc_number($cc_number); }
115                 if ($payobj->has_field('expire_month')) { $payobj->expire_month($expire_month); }
116                 if ($payobj->has_field('expire_year')) { $payobj->expire_year($expire_year); }
117                 if ($payobj->has_field('approval_code')) { $payobj->approval_code($approval_code); }
118                 if ($payobj->has_field('check_number')) { $payobj->check_number($check_number); }
119                 
120                 # update the transaction if it's done 
121                 if( (my $cred = ($trans->balance_owed - $amount)) <= 0 ) {
122
123                         # Any overpay on this transaction goes directly into patron credit 
124                         $cred = -$cred;
125                         $credit += $cred;
126                         $logger->activity("user ".$user->id." applying credit ".
127                                 "of $cred on transaction ".$trans->id. " because of overpayment");
128
129                         $logger->debug("Transactin " . $trans->id . ' is complete');
130                         $trans = $session->request(
131                                 "open-ils.storage.direct.money.billable_transaction.retrieve", $transid )->gather(1);
132
133                         $trans->xact_finish("now");
134                         my $s = $session->request(
135                                 "open-ils.storage.direct.money.billable_transaction.update", $trans )->gather(1);
136
137                         if(!$s) { throw OpenSRF::EX::ERROR 
138                                 ("Error updating billable_xact in circ.money.payment"); }
139                                         
140                 }
141
142
143                 $logger->debug("Creating new $payobj for \$$amount\n");
144
145                 my $s = $session->request(
146                         "open-ils.storage.direct.money.$type.create", $payobj )->gather(1);
147                 if(!$s) { throw OpenSRF::EX::ERROR ("Error creating new $type"); }
148
149         }
150
151
152         $logger->activity("user ".$user->id." applying total ".
153                 "credit of $credit to user $userid") if $credit != 0;
154
155         $evt = _update_patron_credit( $session, $userid, $credit );
156         return $evt if $evt;
157
158         $apputils->commit_db_session($session);
159
160         $client->respond_complete(1);   
161
162         # ------------------------------------------------------------------------------
163         # Update the patron penalty info in the DB
164         # ------------------------------------------------------------------------------
165         $U->update_patron_penalties( 
166                 authtoken => $login,
167                 patronid  => $userid,
168         );
169
170         return undef;
171 }
172
173
174 sub _update_patron_credit {
175         my( $session, $userid, $credit ) = @_;
176         #return if $credit <= 0;
177
178         my $patron = $session->request( 
179                 'open-ils.storage.direct.actor.user.retrieve', $userid )->gather(1);
180
181         $patron->credit_forward_balance( 
182                 $patron->credit_forward_balance + $credit);
183
184         if( $patron->credit_forward_balance < 0 ) {
185                 return OpenILS::Event->new('NEGATIVE_PATRON_BALANCE');
186         }
187         
188         $logger->info("Total patron credit for $userid is now " . $patron->credit_forward_balance );
189
190         $session->request( 
191                 'open-ils.storage.direct.actor.user.update', $patron )->gather(1);
192
193         return undef;
194 }
195
196
197 __PACKAGE__->register_method(
198         method  => "retrieve_payments",
199         api_name        => "open-ils.circ.money.payment.retrieve.all",
200         notes           => "Returns a list of payments attached to a given transaction"
201         );
202         
203 sub retrieve_payments {
204         my( $self, $client, $login, $transid ) = @_;
205
206         my( $staff, $evt ) =  
207                 $apputils->checksesperm($login, 'VIEW_TRANSACTION');
208         return $evt if $evt;
209
210         # XXX the logic here is wrong.. we need to check the owner of the transaction
211         # to make sure the requestor has access
212
213         return $apputils->simplereq(
214                 'open-ils.storage',
215                 'open-ils.storage.direct.money.payment.search.xact.atomic', $transid );
216 }
217
218
219
220 __PACKAGE__->register_method(
221         method  => "create_grocery_bill",
222         api_name        => "open-ils.circ.money.grocery.create",
223         notes           => <<"  NOTE");
224         Creates a new grocery transaction using the transaction object provided
225         PARAMS: (login_session, money.grocery (mg) object)
226         NOTE
227
228 sub create_grocery_bill {
229         my( $self, $client, $login, $transaction ) = @_;
230
231         my( $staff, $evt ) = $apputils->checkses($login);
232         return $evt if $evt;
233         $evt = $apputils->check_perms($staff->id, 
234                 $transaction->billing_location, 'CREATE_TRANSACTION' );
235         return $evt if $evt;
236
237
238         $logger->activity("Creating grocery bill " . Dumper($transaction) );
239
240         $transaction->clear_id;
241         my $session = $apputils->start_db_session;
242         my $transid = $session->request(
243                 'open-ils.storage.direct.money.grocery.create', $transaction)->gather(1);
244
245         throw OpenSRF::EX ("Error creating new money.grocery") unless defined $transid;
246
247         $logger->debug("Created new grocery transaction $transid");
248         
249         $apputils->commit_db_session($session);
250
251         return $transid;
252 }
253
254 __PACKAGE__->register_method(
255         method  => "billing_items",
256         api_name        => "open-ils.circ.money.billing.retrieve.all",
257         notes           =><<"   NOTE");
258         Returns a list of billing items for the given transaction.
259         PARAMS( login, transaction_id )
260         NOTE
261
262 sub billing_items {
263         my( $self, $client, $login, $transid ) = @_;
264
265         my( $trans, $evt ) = $U->fetch_billable_xact($transid);
266         return $evt if $evt;
267
268         my $staff;
269         ($staff, $evt ) = $apputils->checkses($login);
270         return $evt if $evt;
271
272         if($staff->id ne $trans->usr) {
273                 $evt = $U->check_perms($staff->id, $staff->home_ou, 'VIEW_TRANSACTION');
274                 return $evt if $evt;
275         }
276         
277         return $apputils->simplereq( 'open-ils.storage',
278                 'open-ils.storage.direct.money.billing.search.xact.atomic', $transid )
279 }
280
281
282 __PACKAGE__->register_method(
283         method  => "billing_items_create",
284         api_name        => "open-ils.circ.money.billing.create",
285         notes           =><<"   NOTE");
286         Creates a new billing line item
287         PARAMS( login, bill_object (mb) )
288         NOTE
289
290 sub billing_items_create {
291         my( $self, $client, $login, $billing ) = @_;
292
293         my $e = new_editor(authtoken => $login, xact => 1);
294         return $e->event unless $e->checkauth;
295         return $e->event unless $e->allowed('CREATE_BILL');
296
297         my $xact = $e->retrieve_money_billable_transaction($billing->xact)
298                 or return $e->event;
299
300         # if the transaction was closed, re-open it
301         if($xact->xact_finish) {
302                 $xact->clear_xact_finish;
303                 $e->update_money_billable_transaction($xact)
304                         or return $e->event;
305         }
306
307         $e->create_money_billing($billing) or return $e->event;
308
309         $e->commit;
310         return $billing->id;
311 }
312
313 __PACKAGE__->register_method(
314         method          =>      'void_bill',
315         api_name                => 'open-ils.circ.money.billing.void',
316         signature       => q/
317                 Voids a bill
318                 @param authtoken Login session key
319                 @param billid The id of the bill to void
320                 @return 1 on success, Event on error
321         /
322 );
323
324 sub void_bill {
325         my( $s, $c, $authtoken, $billid ) = @_;
326
327         my $e = OpenILS::Utils::Editor->new( authtoken => $authtoken );
328         return $e->event unless $e->checkauth;
329         return $e->event unless $e->allowed('VOID_BILLING');
330
331         my $bill = $e->retrieve_money_billing($billid)
332                 or return $e->event;
333
334         return OpenILS::Event->new('BILL_ALREADY_VOIDED', payload => $bill) 
335                 if $bill->voided and $bill->voided =~ /t/io;
336
337         $bill->voided('t');
338         $bill->voider($e->requestor->id);
339         $bill->void_time('now');
340
341         $e->update_money_billing($bill) or return $e->event;
342         my $evt = _check_open_xact($e, $bill->xact);
343         return $evt if $evt;
344
345         $e->finish;
346         return 1;
347 }
348
349 sub _check_open_xact {
350         my( $editor, $xactid ) = @_;
351
352         # Grab the transaction
353         my $xact = $editor->retrieve_money_billable_transaction($xactid)
354                 or return $editor->event;
355
356         # if it's still open, good.
357         return undef unless $xact->xact_finish;
358
359         $logger->info("re-opening transaction ".$xact->id);
360         my $finish = $xact->xact_finish;
361
362         # clear the transaction finish time
363         $xact->clear_xact_finish;
364         $editor->update_money_billable_transaction($xact);
365
366         # grab the summary and see how much is owed on this transaction
367         my $summary = $editor->retrieve_money_open_billable_transaction_summary($xactid)
368                 or return $editor->event;
369
370         if( $summary->balance_owed == 0 ) {
371                 # if nothing is owed, re-close the transaction
372                 $xact->xact_finish($finish);
373                 $editor->update_money_billable_transaction($xact);
374         }
375
376         return undef;
377 }
378
379
380 __PACKAGE__->register_method (
381         method => 'fetch_mbts',
382         api_name => 'open-ils.circ.money.billable_xact_summary.retrieve'
383 );
384 sub fetch_mbts {
385         my($s, $c, $authtoken, $id) = @_;
386
387         my $sum = $U->storagereq(
388                 'open-ils.storage.direct.money.billable_transaction_summary.retrieve', $id );
389         return OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND', id => $id) unless $sum;
390
391         my ($reqr, $evt) = $U->checkses($authtoken);
392         return $evt if $evt;
393
394         my $usr;
395         ($usr, $evt) = $U->fetch_user($sum->usr);
396         return $evt if $evt;
397
398         $evt = $U->check_perms($reqr->id, $usr->home_ou, 'VIEW_TRANSACTION');
399         return $evt if $evt;
400
401         return $sum;
402 }
403
404
405
406
407
408 1;
409
410
411