]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
adding authoritative method varients
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Circ.pm
1 package OpenILS::Application::Circ;
2 use OpenILS::Application;
3 use base qw/OpenILS::Application/;
4 use strict; use warnings;
5
6 use OpenILS::Application::Circ::Circulate;
7 use OpenILS::Application::Circ::Survey;
8 use OpenILS::Application::Circ::StatCat;
9 use OpenILS::Application::Circ::Holds;
10 use OpenILS::Application::Circ::HoldNotify;
11 use OpenILS::Application::Circ::Money;
12 use OpenILS::Application::Circ::NonCat;
13 use OpenILS::Application::Circ::CopyLocations;
14
15 use DateTime;
16 use DateTime::Format::ISO8601;
17
18 use OpenILS::Application::AppUtils;
19
20 use OpenSRF::Utils qw/:datetime/;
21 use OpenILS::Utils::ModsParser;
22 use OpenILS::Event;
23 use OpenSRF::EX qw(:try);
24 use OpenSRF::Utils::Logger qw(:logger);
25 use OpenILS::Utils::Fieldmapper;
26 use OpenILS::Utils::Editor;
27 use OpenILS::Utils::CStoreEditor q/:funcs/;
28 use OpenILS::Const qw/:const/;
29 use OpenSRF::Utils::SettingsClient;
30
31 my $apputils = "OpenILS::Application::AppUtils";
32 my $U = $apputils;
33
34
35 # ------------------------------------------------------------------------
36 # Top level Circ package;
37 # ------------------------------------------------------------------------
38
39 sub initialize {
40         my $self = shift;
41         OpenILS::Application::Circ::Circulate->initialize();
42 }
43
44
45 __PACKAGE__->register_method(
46         method => 'retrieve_circ',
47         api_name        => 'open-ils.circ.retrieve',
48         signature => q/
49                 Retrieve a circ object by id
50                 @param authtoken Login session key
51                 @pararm circid The id of the circ object
52         /
53 );
54 sub retrieve_circ {
55         my( $s, $c, $a, $i ) = @_;
56         my $e = new_editor(authtoken => $a);
57         return $e->event unless $e->checkauth;
58         my $circ = $e->retrieve_action_circulation($i) or return $e->event;
59         if( $e->requestor->id ne $circ->usr ) {
60                 return $e->event unless $e->allowed('VIEW_CIRCULATIONS');
61         }
62         return $circ;
63 }
64
65
66 __PACKAGE__->register_method(
67         method => 'fetch_circ_mods',
68         api_name => 'open-ils.circ.circ_modifier.retrieve.all');
69 sub fetch_circ_mods {
70         my $conf = OpenSRF::Utils::SettingsClient->new;
71         return $conf->config_value(
72                 'apps', 'open-ils.circ', 'app_settings', 'circ_modifiers', 'mod' );
73 }
74
75 __PACKAGE__->register_method(
76         method => 'fetch_bill_types',
77         api_name => 'open-ils.circ.billing_type.retrieve.all');
78 sub fetch_bill_types {
79         my $conf = OpenSRF::Utils::SettingsClient->new;
80         return $conf->config_value(
81                 'apps', 'open-ils.circ', 'app_settings', 'billing_types', 'type' );
82 }
83
84
85 # ------------------------------------------------------------------------
86 # Returns an array of {circ, record} hashes checked out by the user.
87 # ------------------------------------------------------------------------
88 __PACKAGE__->register_method(
89         method  => "checkouts_by_user",
90         api_name        => "open-ils.circ.actor.user.checked_out",
91         NOTES           => <<"  NOTES");
92         Returns a list of open circulations as a pile of objects.  each object
93         contains the relevant copy, circ, and record
94         NOTES
95
96 sub checkouts_by_user {
97         my( $self, $client, $user_session, $user_id ) = @_;
98
99         my( $requestor, $target, $copy, $record, $evt );
100
101         ( $requestor, $target, $evt ) = 
102                 $apputils->checkses_requestor( $user_session, $user_id, 'VIEW_CIRCULATIONS');
103         return $evt if $evt;
104
105         my $circs = $apputils->simplereq(
106                 'open-ils.cstore',
107                 "open-ils.cstore.direct.action.open_circulation.search.atomic", 
108                 { usr => $target->id, checkin_time => undef } );
109 #               { usr => $target->id } );
110
111         my @results;
112         for my $circ (@$circs) {
113
114                 ( $copy, $evt )  = $apputils->fetch_copy($circ->target_copy);
115                 return $evt if $evt;
116
117                 $logger->debug("Retrieving record for copy " . $circ->target_copy);
118
119                 ($record, $evt) = $apputils->fetch_record_by_copy( $circ->target_copy );
120                 return $evt if $evt;
121
122                 my $mods = $apputils->record_to_mvr($record);
123
124                 push( @results, { copy => $copy, circ => $circ, record => $mods } );
125         }
126
127         return \@results;
128
129 }
130
131
132
133 __PACKAGE__->register_method(
134         method  => "checkouts_by_user_slim",
135         api_name        => "open-ils.circ.actor.user.checked_out.slim",
136         NOTES           => <<"  NOTES");
137         Returns a list of open circulation objects
138         NOTES
139
140 # DEPRECAT ME?? XXX
141 sub checkouts_by_user_slim {
142         my( $self, $client, $user_session, $user_id ) = @_;
143
144         my( $requestor, $target, $copy, $record, $evt );
145
146         ( $requestor, $target, $evt ) = 
147                 $apputils->checkses_requestor( $user_session, $user_id, 'VIEW_CIRCULATIONS');
148         return $evt if $evt;
149
150         $logger->debug( 'User ' . $requestor->id . 
151                 " retrieving checked out items for user " . $target->id );
152
153         # XXX Make the call correct..
154         return $apputils->simplereq(
155                 'open-ils.cstore',
156                 "open-ils.cstore.direct.action.open_circulation.search.atomic", 
157                 { usr => $target->id, checkin_time => undef } );
158 #               { usr => $target->id } );
159 }
160
161
162 __PACKAGE__->register_method(
163         method  => "checkouts_by_user_opac",
164         api_name        => "open-ils.circ.actor.user.checked_out.opac",);
165
166 # XXX Deprecate Me
167 sub checkouts_by_user_opac {
168         my( $self, $client, $auth, $user_id ) = @_;
169
170         my $e = OpenILS::Utils::Editor->new( authtoken => $auth );
171         return $e->event unless $e->checkauth;
172         $user_id ||= $e->requestor->id;
173         return $e->event unless 
174                 my $patron = $e->retrieve_actor_user($user_id);
175
176         my $data;
177         my $search = {usr => $user_id, stop_fines => undef};
178
179         if( $user_id ne $e->requestor->id ) {
180                 $data = $e->search_action_circulation(
181                         $search, {checkperm=>1, permorg=>$patron->home_ou})
182                         or return $e->event;
183
184         } else {
185                 $data = $e->search_action_circulation($search);
186         }
187
188         return $data;
189 }
190
191
192 __PACKAGE__->register_method(
193         method  => "title_from_transaction",
194         api_name        => "open-ils.circ.circ_transaction.find_title",
195         NOTES           => <<"  NOTES");
196         Returns a mods object for the title that is linked to from the 
197         copy from the hold that created the given transaction
198         NOTES
199
200 sub title_from_transaction {
201         my( $self, $client, $login_session, $transactionid ) = @_;
202
203         my( $user, $circ, $title, $evt );
204
205         ( $user, $evt ) = $apputils->checkses( $login_session );
206         return $evt if $evt;
207
208         ( $circ, $evt ) = $apputils->fetch_circulation($transactionid);
209         return $evt if $evt;
210         
211         ($title, $evt) = $apputils->fetch_record_by_copy($circ->target_copy);
212         return $evt if $evt;
213
214         return $apputils->record_to_mvr($title);
215 }
216
217
218
219 __PACKAGE__->register_method(
220         method  => "new_set_circ_lost",
221         api_name        => "open-ils.circ.circulation.set_lost",
222         signature       => q/
223         Sets the copy and related open circulation to lost
224                 @param auth
225                 @param args : barcode
226         /
227 );
228
229
230 # ---------------------------------------------------------------------
231 # Sets a circulation to lost.  updates copy status to lost
232 # applies copy and/or prcoessing fees depending on org settings
233 # ---------------------------------------------------------------------
234 sub new_set_circ_lost {
235     my( $self, $conn, $auth, $args ) = @_;
236
237     my $e = new_editor(authtoken=>$auth, xact=>1);
238     return $e->die_event unless $e->checkauth;
239
240     my $barcode = $$args{barcode};
241     $logger->info("marking item lost $barcode");
242
243     # ---------------------------------------------------------------------
244     # gather the pieces
245     my $copy = $e->search_asset_copy([
246         {barcode=>$barcode, deleted=>'f'},
247         {flesh => 1, flesh_fields => {'acp' => ['call_number']}}])->[0] 
248             or return $e->die_event;
249
250     my $owning_lib = 
251         ($copy->call_number == OILS_PRECAT_CALL_NUMBER) ? 
252             $copy->circ_lib : $copy->call_number->owning_lib;
253
254     my $circ = $e->search_action_circulation(
255         {checkin_time => undef, target_copy => $copy->id} )->[0]
256             or return $e->die_event;
257
258     $e->allowed('SET_CIRC_LOST', $circ->circ_lib) or return $e->die_event;
259
260     return OpenILS::Event->new('COPY_MARKED_LOST')
261             if $copy->status == OILS_COPY_STATUS_LOST;
262
263     # ---------------------------------------------------------------------
264     # fetch the related org settings
265     my $default_price = $U->ou_ancestor_setting_value(
266         $owning_lib, OILS_SETTING_DEF_ITEM_PRICE, $e) || 0;
267     my $proc_fee = $U->ou_ancestor_setting_value(
268         $owning_lib, OILS_SETTING_LOST_PROCESSING_FEE, $e) || 0;
269     my $charge_on_0 = $U->ou_ancestor_setting_value(
270         $owning_lib, OILS_SETTING_CHARGE_LOST_ON_ZERO, $e) || 0;
271     my $void_overdue = $U->ou_ancestor_setting_value(
272         $owning_lib, OILS_SETTING_VOID_OVERDUE_ON_LOST, $e) || 0;
273
274     $logger->info("org settings: default price = $default_price, ".
275         "processing fee = $proc_fee, charge on 0 = $charge_on_0, void overdues = $void_overdue");
276
277     # ---------------------------------------------------------------------
278     # move the copy into LOST status
279     $copy->status(OILS_COPY_STATUS_LOST);
280     $copy->editor($e->requestor->id);
281     $copy->edit_date('now');
282     $e->update_asset_copy($copy) or return $e->die_event;
283
284     # ---------------------------------------------------------------------
285     # determine the appropriate item price to charge and create the billing
286     my $price = $copy->price;
287     $price = $default_price unless defined $price;
288     $price = 0 if $price < 0;
289     $price = $default_price if $price == 0 and $charge_on_0;
290
291     if( $price > 0 ) {
292         my $evt = create_bill($e, $price, 'Lost Materials', $circ->id);
293         return $evt if $evt;
294     }
295
296     # ---------------------------------------------------------------------
297     # if there is a processing fee, charge that too
298     if( $proc_fee > 0 ) {
299         my $evt = create_bill($e, $proc_fee, 'Lost Materials Processing Fee', $circ->id);
300         return $evt if $evt;
301     }
302
303     # ---------------------------------------------------------------------
304     # mark the circ as lost and stop the fines
305     $circ->stop_fines(OILS_STOP_FINES_LOST);
306     $circ->stop_fines_time('now') unless $circ->stop_fines_time;
307     $e->update_action_circulation($circ) or return $e->die_event;
308
309     # ---------------------------------------------------------------------
310     # void all overdue fines on this circ if configured
311     if( $void_overdue ) {
312         my $evt = void_overdues($e, $circ);
313         return $evt if $evt;
314     }
315
316     my $evt = reopen_xact($e, $circ->id);
317     return $evt if $evt;
318
319     $e->commit;
320     return 1;
321 }
322
323 sub reopen_xact {
324     my($e, $xactid) = @_;
325
326     # -----------------------------------------------------------------
327     # make sure the transaction is not closed
328     my $xact = $e->retrieve_money_billable_transaction($xactid)
329         or return $e->die_event;
330
331     if( $xact->xact_finish ) {
332         my ($mbts) = $U->fetch_mbts($xactid, $e);
333         if( $mbts->balance_owed != 0 ) {
334             $logger->info("* re-opening xact $xactid, orig xact_finish is ".$xact->xact_finish);
335             $xact->clear_xact_finish;
336             $e->update_money_billable_transaction($xact)
337                 or return $e->die_event;
338         } 
339     }
340
341     return undef;
342 }
343
344
345 sub create_bill {
346         my( $e, $amount, $type, $xactid ) = @_;
347
348         $logger->info("The system is charging $amount [$type] on xact $xactid");
349
350     # -----------------------------------------------------------------
351     # now create the billing
352         my $bill = Fieldmapper::money::billing->new;
353         $bill->xact($xactid);
354         $bill->amount($amount);
355         $bill->billing_type($type); 
356         $bill->note('SYSTEM GENERATED');
357     $e->create_money_billing($bill) or return $e->die_event;
358
359         return undef;
360 }
361
362
363
364 # -----------------------------------------------------------------
365 # Voids overdue fines on the given circ.  if a backdate is 
366 # provided, then we only void back to the backdate
367 # -----------------------------------------------------------------
368 sub void_overdues {
369     my( $e, $circ, $backdate ) = @_;
370
371     my $bill_search = { 
372         xact => $circ->id, 
373         billing_type => OILS_BILLING_TYPE_OVERDUE_MATERIALS 
374     };
375
376     if( $backdate ) {
377         # ------------------------------------------------------------------
378         # Fines for overdue materials are assessed up to, but not including,
379         # one fine interval after the fines are applicable.  Here, we add
380         # one fine interval to the backdate to ensure that we are not 
381         # voiding fines that were applicable before the backdate.
382         # ------------------------------------------------------------------
383         my $interval = OpenSRF::Utils->interval_to_seconds($circ->fine_interval);
384         my $date = DateTime::Format::ISO8601->parse_datetime($backdate);
385         $backdate = $U->epoch2ISO8601($date->epoch + $interval);
386         $logger->info("applying backdate $backdate in overdue voiding");
387         $$bill_search{billing_ts} = {'>=' => $backdate};
388     }
389
390     my $bills = $e->search_money_billing($bill_search);
391     
392     for my $bill (@$bills) {
393         next if $U->is_true($bill->voided);
394         $logger->info("voiding overdue bill ".$bill->id);
395         $bill->voided('t');
396         $bill->void_time('now');
397         $bill->voider($e->requestor->id);
398         my $n = $bill->note || "";
399         $bill->note("$n\nSystem: VOIDED FOR BACKDATE");
400         $e->update_money_billing($bill) or return $e->die_event;
401     }
402
403         return undef;
404 }
405
406
407
408
409 __PACKAGE__->register_method(
410         method  => "set_circ_claims_returned",
411         api_name        => "open-ils.circ.circulation.set_claims_returned",
412         signature       => q/
413         Sets the circ for the given item as claims returned
414         If a backdate is provided, overdue fines will be voided
415         back to the backdate
416                 @param auth
417                 @param args : barcode, backdate
418         /
419 );
420
421 sub set_circ_claims_returned {
422     my( $self, $conn, $auth, $args ) = @_;
423
424     my $e = new_editor(authtoken=>$auth, xact=>1);
425     return $e->die_event unless $e->checkauth;
426
427     my $barcode = $$args{barcode};
428     my $backdate = $$args{backdate};
429
430     $logger->info("marking circ for item $barcode as claims returned".
431         (($backdate) ? " with backdate $backdate" : ''));
432
433     my $copy = $e->search_asset_copy({barcode=>$barcode, deleted=>'f'})->[0] 
434         or return $e->die_event;
435
436     my $circ = $e->search_action_circulation(
437         {checkin_time => undef, target_copy => $copy->id})->[0]
438             or return $e->die_event;
439
440     $e->allowed('SET_CIRC_CLAIMS_RETURNED', $circ->circ_lib) 
441         or return $e->die_event;
442
443     $circ->stop_fines(OILS_STOP_FINES_CLAIMSRETURNED);
444         $circ->stop_fines_time('now') unless $circ->stop_fines_time;
445
446     if( $backdate ) {
447         # make it look like the circ stopped at the cliams returned time
448         $circ->stop_fines_time(clense_ISO8601($backdate));
449         my $evt = void_overdues($e, $circ, $backdate);
450         return $evt if $evt;
451     }
452
453     $e->update_action_circulation($circ) or return $e->die_event;
454     $e->commit;
455     return 1;
456 }
457
458
459
460
461
462 __PACKAGE__->register_method (
463         method          => 'set_circ_due_date',
464         api_name                => 'open-ils.circ.circulation.due_date.update',
465         signature       => q/
466                 Updates the due_date on the given circ
467                 @param authtoken
468                 @param circid The id of the circ to update
469                 @param date The timestamp of the new due date
470         /
471 );
472
473 sub set_circ_due_date {
474         my( $self, $conn, $auth, $circ_id, $date ) = @_;
475
476     my $e = new_editor(xact=>1, authtoken=>$auth);
477     return $e->die_event unless $e->checkauth;
478     my $circ = $e->retrieve_action_circulation($circ_id)
479         or return $e->die_event;
480
481     return $e->die_event unless $e->allowed('CIRC_OVERRIDE_DUE_DATE', $circ->circ_lib);
482         $date = clense_ISO8601($date);
483         $circ->due_date($date);
484     $e->update_action_circulation($circ) or return $e->die_event;
485     $e->commit;
486
487     return $circ->id;
488 }
489
490
491 __PACKAGE__->register_method(
492         method          => "create_in_house_use",
493         api_name                => 'open-ils.circ.in_house_use.create',
494         signature       =>      q/
495                 Creates an in-house use action.
496                 @param $authtoken The login session key
497                 @param params A hash of params including
498                         'location' The org unit id where the in-house use occurs
499                         'copyid' The copy in question
500                         'count' The number of in-house uses to apply to this copy
501                 @return An array of id's representing the id's of the newly created
502                 in-house use objects or an event on an error
503         /);
504
505 __PACKAGE__->register_method(
506         method          => "create_in_house_use",
507         api_name                => 'open-ils.circ.non_cat_in_house_use.create',
508 );
509
510 =head OLD CODE
511 sub ___create_in_house_use {
512         my( $self, $client, $authtoken, $params ) = @_;
513
514         my( $staff, $evt, $copy );
515         my $org                 = $params->{location};
516         my $copyid              = $params->{copyid};
517         my $count               = $params->{count} || 1;
518         my $nc_type             = $params->{non_cat_type};
519         my $use_time    = $params->{use_time} || 'now';
520
521         my $non_cat = 1 if $self->api_name =~ /non_cat/;
522
523         unless( $non_cat ) {
524                 unless( $copyid ) {
525                         my $barcode = $params->{barcode};
526                         ($copy, $evt) = $U->fetch_copy_by_barcode($barcode);
527                         return $evt if $evt;
528                         $copyid = $copy->id;
529                 }
530                 ($copy, $evt) = $U->fetch_copy($copyid) unless $copy;
531                 return $evt if $evt;
532         }
533
534         ($staff, $evt) = $U->checkses($authtoken);
535         return $evt if $evt;
536
537         $evt = $U->check_perms($staff->id, $org, 'CREATE_IN_HOUSE_USE');
538         return $evt if $evt;
539
540         if( $use_time ne 'now' ) {
541                 $use_time = clense_ISO8601($use_time);
542                 $logger->debug("in_house_use setting use time to $use_time");
543         }
544
545         my @ids;
546         for(1..$count) {
547
548                 my $ihu;
549                 my $method;
550
551                 if($non_cat) {
552                         $ihu = Fieldmapper::action::non_cat_in_house_use->new;
553                         $ihu->noncat_type($nc_type);
554                         $method = 'open-ils.storage.direct.action.non_cat_in_house_use.create';
555                 } else {
556                         $ihu = Fieldmapper::action::in_house_use->new;
557                         $ihu->item($copyid);
558                         $method = 'open-ils.storage.direct.action.in_house_use.create';
559                 }
560
561                 $ihu->staff($staff->id);
562                 $ihu->org_unit($org);
563                 $ihu->use_time($use_time);
564
565                 my $id = $U->simplereq('open-ils.storage', $method, $ihu );
566
567                 return $U->DB_UPDATE_FAILED($ihu) unless $id;
568                 push @ids, $id;
569         }
570
571         return \@ids;
572 }
573 =cut
574
575
576
577
578 sub create_in_house_use {
579         my( $self, $client, $auth, $params ) = @_;
580
581         my( $evt, $copy );
582         my $org                 = $params->{location};
583         my $copyid              = $params->{copyid};
584         my $count               = $params->{count} || 1;
585         my $nc_type             = $params->{non_cat_type};
586         my $use_time    = $params->{use_time} || 'now';
587
588         my $e = new_editor(xact=>1,authtoken=>$auth);
589         return $e->event unless $e->checkauth;
590         return $e->event unless $e->allowed('CREATE_IN_HOUSE_USE');
591
592         my $non_cat = 1 if $self->api_name =~ /non_cat/;
593
594         unless( $non_cat ) {
595                 if( $copyid ) {
596                         $copy = $e->retrieve_asset_copy($copyid) or return $e->event;
597                 } else {
598                         $copy = $e->search_asset_copy({barcode=>$params->{barcode}, deleted => 'f'})->[0]
599                                 or return $e->event;
600                         $copyid = $copy->id;
601                 }
602         }
603
604         if( $use_time ne 'now' ) {
605                 $use_time = clense_ISO8601($use_time);
606                 $logger->debug("in_house_use setting use time to $use_time");
607         }
608
609         my @ids;
610         for(1..$count) {
611
612                 my $ihu;
613                 my $method;
614                 my $cmeth;
615
616                 if($non_cat) {
617                         $ihu = Fieldmapper::action::non_cat_in_house_use->new;
618                         $ihu->item_type($nc_type);
619                         $method = 'open-ils.storage.direct.action.non_cat_in_house_use.create';
620                         $cmeth = "create_action_non_cat_in_house_use";
621
622                 } else {
623                         $ihu = Fieldmapper::action::in_house_use->new;
624                         $ihu->item($copyid);
625                         $method = 'open-ils.storage.direct.action.in_house_use.create';
626                         $cmeth = "create_action_in_house_use";
627                 }
628
629                 $ihu->staff($e->requestor->id);
630                 $ihu->org_unit($org);
631                 $ihu->use_time($use_time);
632
633                 $ihu = $e->$cmeth($ihu) or return $e->event;
634                 push( @ids, $ihu->id );
635         }
636
637         $e->commit;
638         return \@ids;
639 }
640
641
642
643
644
645 __PACKAGE__->register_method(
646         method  => "view_circs",
647         api_name        => "open-ils.circ.copy_checkout_history.retrieve",
648         notes           => q/
649                 Retrieves the last X circs for a given copy
650                 @param authtoken The login session key
651                 @param copyid The copy to check
652                 @param count How far to go back in the item history
653                 @return An array of circ ids
654         /);
655
656
657
658 sub view_circs {
659         my( $self, $client, $authtoken, $copyid, $count ) = @_; 
660
661         my( $requestor, $evt ) = $U->checksesperm(
662                         $authtoken, 'VIEW_COPY_CHECKOUT_HISTORY' );
663         return $evt if $evt;
664
665         return [] unless $count;
666
667         my $circs = $U->cstorereq(
668                 'open-ils.cstore.direct.action.circulation.search.atomic',
669                         { 
670                                 target_copy => $copyid, 
671                         }, 
672                         { 
673                                 limit => $count, 
674                                 order_by => { circ => "xact_start DESC" }
675                         } 
676         );
677
678         return $circs;
679 }
680
681
682 __PACKAGE__->register_method(
683         method  => "circ_count",
684         api_name        => "open-ils.circ.circulation.count",
685         notes           => q/
686                 Returns the number of times the item has circulated
687                 @param copyid The copy to check
688         /);
689
690 sub circ_count {
691         my( $self, $client, $copyid, $range ) = @_; 
692         my $e = OpenILS::Utils::Editor->new;
693         return $e->request('open-ils.storage.asset.copy.circ_count', $copyid, $range);
694 }
695
696
697
698 __PACKAGE__->register_method(
699         method          => 'fetch_notes',
700         api_name                => 'open-ils.circ.copy_note.retrieve.all',
701         signature       => q/
702                 Returns an array of copy note objects.  
703                 @param args A named hash of parameters including:
704                         authtoken       : Required if viewing non-public notes
705                         itemid          : The id of the item whose notes we want to retrieve
706                         pub                     : True if all the caller wants are public notes
707                 @return An array of note objects
708         /);
709
710 __PACKAGE__->register_method(
711         method          => 'fetch_notes',
712         api_name                => 'open-ils.circ.call_number_note.retrieve.all',
713         signature       => q/@see open-ils.circ.copy_note.retrieve.all/);
714
715 __PACKAGE__->register_method(
716         method          => 'fetch_notes',
717         api_name                => 'open-ils.circ.title_note.retrieve.all',
718         signature       => q/@see open-ils.circ.copy_note.retrieve.all/);
719
720
721 # NOTE: VIEW_COPY/VOLUME/TITLE_NOTES perms should always be global
722 sub fetch_notes {
723         my( $self, $connection, $args ) = @_;
724
725         my $id = $$args{itemid};
726         my $authtoken = $$args{authtoken};
727         my( $r, $evt);
728
729         if( $self->api_name =~ /copy/ ) {
730                 if( $$args{pub} ) {
731                         return $U->cstorereq(
732                                 'open-ils.cstore.direct.asset.copy_note.search.atomic',
733                                 { owning_copy => $id, pub => 't' } );
734                 } else {
735                         ( $r, $evt ) = $U->checksesperm($authtoken, 'VIEW_COPY_NOTES');
736                         return $evt if $evt;
737                         return $U->cstorereq(
738                                 'open-ils.cstore.direct.asset.copy_note.search.atomic', {owning_copy => $id} );
739                 }
740
741         } elsif( $self->api_name =~ /call_number/ ) {
742                 if( $$args{pub} ) {
743                         return $U->cstorereq(
744                                 'open-ils.cstore.direct.asset.call_number_note.search.atomic',
745                                 { call_number => $id, pub => 't' } );
746                 } else {
747                         ( $r, $evt ) = $U->checksesperm($authtoken, 'VIEW_VOLUME_NOTES');
748                         return $evt if $evt;
749                         return $U->cstorereq(
750                                 'open-ils.cstore.direct.asset.call_number_note.search.atomic', { call_number => $id } );
751                 }
752
753         } elsif( $self->api_name =~ /title/ ) {
754                 if( $$args{pub} ) {
755                         return $U->cstorereq(
756                                 'open-ils.cstore.direct.bilbio.record_note.search.atomic',
757                                 { record => $id, pub => 't' } );
758                 } else {
759                         ( $r, $evt ) = $U->checksesperm($authtoken, 'VIEW_TITLE_NOTES');
760                         return $evt if $evt;
761                         return $U->cstorereq(
762                                 'open-ils.cstore.direct.biblio.record_note.search.atomic', { record => $id } );
763                 }
764         }
765
766         return undef;
767 }
768
769 __PACKAGE__->register_method(
770         method  => 'has_notes',
771         api_name        => 'open-ils.circ.copy.has_notes');
772 __PACKAGE__->register_method(
773         method  => 'has_notes',
774         api_name        => 'open-ils.circ.call_number.has_notes');
775 __PACKAGE__->register_method(
776         method  => 'has_notes',
777         api_name        => 'open-ils.circ.title.has_notes');
778
779
780 sub has_notes {
781         my( $self, $conn, $authtoken, $id ) = @_;
782         my $editor = OpenILS::Utils::Editor->new(authtoken => $authtoken);
783         return $editor->event unless $editor->checkauth;
784
785         my $n = $editor->search_asset_copy_note(
786                 {owning_copy=>$id}, {idlist=>1}) if $self->api_name =~ /copy/;
787
788         $n = $editor->search_asset_call_number_note(
789                 {call_number=>$id}, {idlist=>1}) if $self->api_name =~ /call_number/;
790
791         $n = $editor->search_biblio_record_note(
792                 {record=>$id}, {idlist=>1}) if $self->api_name =~ /title/;
793
794         return scalar @$n;
795 }
796
797
798
799 __PACKAGE__->register_method(
800         method          => 'create_copy_note',
801         api_name                => 'open-ils.circ.copy_note.create',
802         signature       => q/
803                 Creates a new copy note
804                 @param authtoken The login session key
805                 @param note     The note object to create
806                 @return The id of the new note object
807         /);
808
809 sub create_copy_note {
810         my( $self, $connection, $authtoken, $note ) = @_;
811
812         my $e = new_editor(xact=>1, authtoken=>$authtoken);
813         return $e->event unless $e->checkauth;
814         my $copy = $e->retrieve_asset_copy(
815                 [
816                         $note->owning_copy,
817                         {       flesh => 1,
818                                 flesh_fields => { 'acp' => ['call_number'] }
819                         }
820                 ]
821         );
822
823         return $e->event unless 
824                 $e->allowed('CREATE_COPY_NOTE', $copy->call_number->owning_lib);
825
826         $note->create_date('now');
827         $note->creator($e->requestor->id);
828         $note->pub( ($U->is_true($note->pub)) ? 't' : 'f' );
829         $note->clear_id;
830
831         $e->create_asset_copy_note($note) or return $e->event;
832         $e->commit;
833         return $note->id;
834 }
835
836
837 __PACKAGE__->register_method(
838         method          => 'delete_copy_note',
839         api_name                =>      'open-ils.circ.copy_note.delete',
840         signature       => q/
841                 Deletes an existing copy note
842                 @param authtoken The login session key
843                 @param noteid The id of the note to delete
844                 @return 1 on success - Event otherwise.
845                 /);
846 sub delete_copy_note {
847         my( $self, $conn, $authtoken, $noteid ) = @_;
848
849         my $e = new_editor(xact=>1, authtoken=>$authtoken);
850         return $e->die_event unless $e->checkauth;
851
852         my $note = $e->retrieve_asset_copy_note([
853                 $noteid,
854                 { flesh => 2,
855                         flesh_fields => {
856                                 'acpn' => [ 'owning_copy' ],
857                                 'acp' => [ 'call_number' ],
858                         }
859                 }
860         ]) or return $e->die_event;
861
862         if( $note->creator ne $e->requestor->id ) {
863                 return $e->die_event unless 
864                         $e->allowed('DELETE_COPY_NOTE', $note->owning_copy->call_number->owning_lib);
865         }
866
867         $e->delete_asset_copy_note($note) or return $e->die_event;
868         $e->commit;
869         return 1;
870 }
871
872
873 __PACKAGE__->register_method(
874         method => 'age_hold_rules',
875         api_name        =>  'open-ils.circ.config.rules.age_hold_protect.retrieve.all',
876 );
877
878 sub age_hold_rules {
879         my( $self, $conn ) = @_;
880         return new_editor()->retrieve_all_config_rules_age_hold_protect();
881 }
882
883
884
885 __PACKAGE__->register_method(
886         method => 'copy_details_barcode',
887     authoritative => 1,
888         api_name => 'open-ils.circ.copy_details.retrieve.barcode');
889 sub copy_details_barcode {
890         my( $self, $conn, $auth, $barcode ) = @_;
891     my $e = new_editor();
892     my $cid = $e->search_asset_copy({barcode=>$barcode, deleted=>'f'}, {idlist=>1})->[0];
893     return $e->event unless $cid;
894         return copy_details( $self, $conn, $auth, $cid );
895 }
896
897
898 __PACKAGE__->register_method(
899         method => 'copy_details',
900         api_name => 'open-ils.circ.copy_details.retrieve');
901
902 sub copy_details {
903         my( $self, $conn, $auth, $copy_id ) = @_;
904         my $e = new_editor(authtoken=>$auth);
905         return $e->event unless $e->checkauth;
906
907         my $flesh = { flesh => 1 };
908
909         my $copy = $e->retrieve_asset_copy(
910                 [
911                         $copy_id,
912                         {
913                                 flesh => 2,
914                                 flesh_fields => {
915                                         acp => ['call_number'],
916                                         acn => ['record']
917                                 }
918                         }
919                 ]) or return $e->event;
920
921
922         # De-flesh the copy for backwards compatibility
923         my $mvr;
924         my $vol = $copy->call_number;
925         if( ref $vol ) {
926                 $copy->call_number($vol->id);
927                 my $record = $vol->record;
928                 if( ref $record ) {
929                         $vol->record($record->id);
930                         $mvr = $U->record_to_mvr($record);
931                 }
932         }
933
934
935         my $hold = $e->search_action_hold_request(
936                 { 
937                         current_copy            => $copy_id, 
938                         capture_time            => { "!=" => undef },
939                         fulfillment_time        => undef,
940                         cancel_time                     => undef,
941                 }
942         )->[0];
943
944         OpenILS::Application::Circ::Holds::flesh_hold_transits([$hold]) if $hold;
945
946         my $transit = $e->search_action_transit_copy(
947                 { target_copy => $copy_id, dest_recv_time => undef } )->[0];
948
949         # find the latest circ, open or closed
950         my $circ = $e->search_action_circulation(
951                 [
952                         { target_copy => $copy_id },
953                         { order_by => { circ => 'xact_start desc' }, limit => 1 }
954                 ]
955         )->[0];
956
957
958         return {
959                 copy            => $copy,
960                 hold            => $hold,
961                 transit => $transit,
962                 circ            => $circ,
963                 volume  => $vol,
964                 mvr             => $mvr,
965         };
966 }
967
968
969
970
971 __PACKAGE__->register_method(
972         method => 'mark_item',
973         api_name => 'open-ils.circ.mark_item_damaged',
974 );
975 __PACKAGE__->register_method(
976         method => 'mark_item',
977         api_name => 'open-ils.circ.mark_item_missing',
978 );
979
980 sub mark_item {
981         my( $self, $conn, $auth, $copy_id ) = @_;
982         my $e = new_editor(authtoken=>$auth, xact =>1);
983         return $e->event unless $e->checkauth;
984
985         my $perm = 'MARK_ITEM_MISSING';
986         my $stat = OILS_COPY_STATUS_MISSING;
987
988         if( $self->api_name =~ /damaged/ ) {
989                 $perm = 'MARK_ITEM_DAMAGED';
990                 $stat = OILS_COPY_STATUS_DAMAGED;
991         }
992
993         my $copy = $e->retrieve_asset_copy($copy_id)
994                 or return $e->event;
995         $copy->status($stat);
996         $copy->edit_date('now');
997         $copy->editor($e->requestor->id);
998
999         $e->update_asset_copy($copy) or return $e->event;
1000
1001
1002         my $holds = $e->search_action_hold_request(
1003                 { 
1004                         current_copy => $copy->id,
1005                         fulfillment_time => undef,
1006                         cancel_time => undef,
1007                 }
1008         );
1009
1010         $e->commit;
1011
1012         $logger->debug("reseting holds that target the marked copy");
1013         OpenILS::Application::Circ::Holds->_reset_hold($e->requestor, $_) for @$holds;
1014
1015         return 1;
1016 }
1017
1018
1019
1020
1021
1022
1023 # ----------------------------------------------------------------------
1024 __PACKAGE__->register_method(
1025         method => 'magic_fetch',
1026         api_name => 'open-ils.agent.fetch'
1027 );
1028
1029 my @FETCH_ALLOWED = qw/ aou aout acp acn bre /;
1030
1031 sub magic_fetch {
1032         my( $self, $conn, $auth, $args ) = @_;
1033         my $e = new_editor( authtoken => $auth );
1034         return $e->event unless $e->checkauth;
1035
1036         my $hint = $$args{hint};
1037         my $id  = $$args{id};
1038
1039         # Is the call allowed to fetch this type of object?
1040         return undef unless grep { $_ eq $hint } @FETCH_ALLOWED;
1041
1042         # Find the class the iplements the given hint
1043         my ($class) = grep { 
1044                 $Fieldmapper::fieldmap->{$_}{hint} eq $hint } Fieldmapper->classes;
1045
1046         $class =~ s/Fieldmapper:://og;
1047         $class =~ s/::/_/og;
1048         my $method = "retrieve_$class";
1049
1050         my $obj = $e->$method($id) or return $e->event;
1051         return $obj;
1052 }
1053 # ----------------------------------------------------------------------
1054
1055
1056 __PACKAGE__->register_method(
1057         method  => "fleshed_circ_retrieve",
1058     authoritative => 1,
1059         api_name        => "open-ils.circ.fleshed.retrieve",);
1060
1061 sub fleshed_circ_retrieve {
1062         my( $self, $client, $id ) = @_;
1063         my $e = new_editor();
1064         my $circ = $e->retrieve_action_circulation(
1065                 [
1066                         $id,
1067                         { 
1068                                 flesh                           => 4,
1069                                 flesh_fields    => { 
1070                                         circ => [ qw/ target_copy / ],
1071                                         acp => [ qw/ location status stat_cat_entry_copy_maps notes age_protect call_number / ],
1072                                         ascecm => [ qw/ stat_cat stat_cat_entry / ],
1073                                         acn => [ qw/ record / ],
1074                                 }
1075                         }
1076                 ]
1077         ) or return $e->event;
1078         
1079         my $copy = $circ->target_copy;
1080         my $vol = $copy->call_number;
1081         my $rec = $circ->target_copy->call_number->record;
1082
1083         $vol->record($rec->id);
1084         $copy->call_number($vol->id);
1085         $circ->target_copy($copy->id);
1086
1087         my $mvr;
1088
1089         if( $rec->id == OILS_PRECAT_RECORD ) {
1090                 $rec = undef;
1091                 $vol = undef;
1092         } else { 
1093                 $mvr = $U->record_to_mvr($rec);
1094                 $rec->marc(''); # drop the bulky marc data
1095         }
1096
1097         return {
1098                 circ => $circ,
1099                 copy => $copy,
1100                 volume => $vol,
1101                 record => $rec,
1102                 mvr => $mvr,
1103         };
1104 }
1105
1106
1107
1108
1109 1;