]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/services/circ.js
LP#1661688: Add a link and other tweaks to alternate hold pickup feature
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / services / circ.js
1 /**
2  * Checkin, checkout, and renew
3  */
4
5 angular.module('egCoreMod')
6
7 .factory('egCirc',
8
9        ['$uibModal','$q','egCore','egAlertDialog','egConfirmDialog','egAddCopyAlertDialog','egCopyAlertManagerDialog','egCopyAlertEditorDialog',
10         'egWorkLog',
11 function($uibModal , $q , egCore , egAlertDialog , egConfirmDialog,  egAddCopyAlertDialog , egCopyAlertManagerDialog,  egCopyAlertEditorDialog ,
12          egWorkLog) {
13
14     var service = {
15         // auto-override these events after the first override
16         auto_override_checkout_events : {},
17         require_initials : false,
18         never_auto_print : {
19             hold_shelf_slip : false,
20             hold_transit_slip : false,
21             transit_slip : false
22         }
23     };
24
25     egCore.startup.go().finally(function() {
26         egCore.org.settings([
27             'ui.staff.require_initials.patron_standing_penalty',
28             'ui.admin.work_log.max_entries',
29             'ui.admin.patron_log.max_entries',
30             'circ.staff_client.do_not_auto_attempt_print',
31             'circ.clear_hold_on_checkout'
32         ]).then(function(set) {
33             service.require_initials = Boolean(set['ui.staff.require_initials.patron_standing_penalty']);
34             service.clearHold = Boolean(set['circ.clear_hold_on_checkout']);
35
36             if (angular.isArray(set['circ.staff_client.do_not_auto_attempt_print'])) {
37                 if (set['circ.staff_client.do_not_auto_attempt_print'].indexOf('Hold Slip') > 1)
38                     service.never_auto_print['hold_shelf_slip'] = true;
39                 if (set['circ.staff_client.do_not_auto_attempt_print'].indexOf('Hold/Transit Slip') > 1)
40                     service.never_auto_print['hold_transit_slip'] = true;
41                 if (set['circ.staff_client.do_not_auto_attempt_print'].indexOf('Transit Slip') > 1)
42                     service.never_auto_print['transit_slip'] = true;
43             }
44         });
45     });
46
47     service.reset = function() {
48         service.auto_override_checkout_events = {};
49     }
50
51     // these events can be overridden by staff during checkout
52     service.checkout_overridable_events = [
53         'PATRON_EXCEEDS_OVERDUE_COUNT',
54         'PATRON_EXCEEDS_CHECKOUT_COUNT',
55         'PATRON_EXCEEDS_FINES',
56         'PATRON_BARRED',
57         'CIRC_EXCEEDS_COPY_RANGE',
58         'ITEM_DEPOSIT_REQUIRED',
59         'ITEM_RENTAL_FEE_REQUIRED',
60         'PATRON_EXCEEDS_LOST_COUNT',
61         'COPY_CIRC_NOT_ALLOWED',
62         'COPY_NOT_AVAILABLE',
63         'COPY_IS_REFERENCE',
64         'COPY_ALERT_MESSAGE',
65         'ITEM_ON_HOLDS_SHELF'                 
66     ]
67
68     // after the first override of any of these events, 
69     // auto-override them in subsequent calls.
70     service.checkout_auto_override_after_first = [
71         'PATRON_EXCEEDS_OVERDUE_COUNT',
72         'PATRON_BARRED',
73         'PATRON_EXCEEDS_LOST_COUNT',
74         'PATRON_EXCEEDS_CHECKOUT_COUNT',
75         'PATRON_EXCEEDS_FINES'
76     ]
77
78
79     // overridable during renewal
80     service.renew_overridable_events = [
81         'PATRON_EXCEEDS_OVERDUE_COUNT',
82         'PATRON_EXCEEDS_LOST_COUNT',
83         'PATRON_EXCEEDS_CHECKOUT_COUNT',
84         'PATRON_EXCEEDS_FINES',
85         'CIRC_EXCEEDS_COPY_RANGE',
86         'ITEM_DEPOSIT_REQUIRED',
87         'ITEM_RENTAL_FEE_REQUIRED',
88         'ITEM_DEPOSIT_PAID',
89         'COPY_CIRC_NOT_ALLOWED',
90         'COPY_IS_REFERENCE',
91         'COPY_ALERT_MESSAGE',
92         'COPY_NEEDED_FOR_HOLD',
93         'MAX_RENEWALS_REACHED',
94         'CIRC_CLAIMS_RETURNED'
95     ];
96
97     // these checkin events do not produce alerts when 
98     // options.suppress_alerts is in effect.
99     service.checkin_suppress_overrides = [
100         'COPY_BAD_STATUS',
101         'PATRON_BARRED',
102         'PATRON_INACTIVE',
103         'PATRON_ACCOUNT_EXPIRED',
104         'ITEM_DEPOSIT_PAID',
105         'CIRC_CLAIMS_RETURNED',
106         'COPY_ALERT_MESSAGE',
107         'COPY_STATUS_LOST',
108         'COPY_STATUS_LOST_AND_PAID',
109         'COPY_STATUS_LONG_OVERDUE',
110         'COPY_STATUS_MISSING',
111         'PATRON_EXCEEDS_FINES'
112     ]
113
114     // these events can be overridden by staff during checkin
115     service.checkin_overridable_events = 
116         service.checkin_suppress_overrides.concat([
117         'HOLD_CAPTURE_DELAYED', // not technically overridable, but special prompt and param
118         'TRANSIT_CHECKIN_INTERVAL_BLOCK'
119     ])
120
121     // Performs a checkout.
122     // Returns a promise resolved with the original params and options
123     // and the final checkout event (e.g. in the case of override).
124     // Rejected if the checkout cannot be completed.
125     //
126     // params : passed directly as arguments to the server API 
127     // options : non-parameter controls.  e.g. "override", "check_barcode"
128     service.checkout = function(params, options) {
129         if (!options) options = {};
130         params.new_copy_alerts = 1;
131
132         console.debug('egCirc.checkout() : ' 
133             + js2JSON(params) + ' : ' + js2JSON(options));
134
135         // handle barcode completion
136         return service.handle_barcode_completion(params.copy_barcode)
137         .then(function(barcode) {
138             console.debug('barcode after completion: ' + barcode);
139             params.copy_barcode = barcode;
140
141             var promise = options.check_barcode ? 
142                 service.test_barcode(params.copy_barcode) : $q.when();
143
144             // avoid re-check on override, etc.
145             delete options.check_barcode;
146
147             return promise.then(function() {
148
149                 var method = 'open-ils.circ.checkout.full';
150                 if (options.override) method += '.override';
151
152                 return egCore.net.request(
153                     'open-ils.circ', method, egCore.auth.token(), params
154
155                 ).then(function(evt) {
156
157                     if (!angular.isArray(evt)) evt = [evt];
158
159                     if (evt[0].payload && evt[0].payload.auto_renew == 1) {
160                         // open circulation found with auto-renew toggle on.
161                         console.debug('Auto-renewing item ' + params.copy_barcode);
162                         options.auto_renew = true;
163                         return service.renew(params, options);
164                     }
165
166                     var action = params.noncat ? 'noncat_checkout' : 'checkout';
167
168                     return service.flesh_response_data(action, evt, params, options)
169                     .then(function() {
170                         return service.handle_checkout_resp(evt, params, options);
171                     })
172                     .then(function(final_resp) {
173                         return service.munge_resp_data(final_resp,action,method)
174                     })
175                 });
176             });
177         });
178     }
179
180     // Performs a renewal.
181     // Returns a promise resolved with the original params and options
182     // and the final checkout event (e.g. in the case of override)
183     // Rejected if the renewal cannot be completed.
184     service.renew = function(params, options) {
185         if (!options) options = {};
186         params.new_copy_alerts = 1;
187
188         console.debug('egCirc.renew() : ' 
189             + js2JSON(params) + ' : ' + js2JSON(options));
190
191         // handle barcode completion
192         return service.handle_barcode_completion(params.copy_barcode)
193         .then(function(barcode) {
194             params.copy_barcode = barcode;
195
196             var promise = options.check_barcode ? 
197                 service.test_barcode(params.copy_barcode) : $q.when();
198
199             // avoid re-check on override, etc.
200             delete options.check_barcode;
201
202             return promise.then(function() {
203
204                 var method = 'open-ils.circ.renew';
205                 if (options.override) method += '.override';
206
207                 return egCore.net.request(
208                     'open-ils.circ', method, egCore.auth.token(), params
209
210                 ).then(function(evt) {
211
212                     if (!angular.isArray(evt)) evt = [evt];
213
214                     return service.flesh_response_data(
215                         'renew', evt, params, options)
216                     .then(function() {
217                         return service.handle_renew_resp(evt, params, options);
218                     })
219                     .then(function(final_resp) {
220                         final_resp.auto_renew = options.auto_renew;
221                         return service.munge_resp_data(final_resp,'renew',method)
222                     })
223                 });
224             });
225         });
226     }
227
228     // Performs a checkin
229     // Returns a promise resolved with the original params and options,
230     // plus the final checkin event (e.g. in the case of override).
231     // Rejected if the checkin cannot be completed.
232     service.checkin = function(params, options) {
233         if (!options) options = {};
234         params.new_copy_alerts = 1;
235
236         console.debug('egCirc.checkin() : ' 
237             + js2JSON(params) + ' : ' + js2JSON(options));
238
239         // handle barcode completion
240         return service.handle_barcode_completion(params.copy_barcode)
241         .then(function(barcode) {
242             params.copy_barcode = barcode;
243
244             var promise = options.check_barcode ? 
245                 service.test_barcode(params.copy_barcode) : $q.when();
246
247             // avoid re-check on override, etc.
248             delete options.check_barcode;
249
250             return promise.then(function() {
251
252                 var method = 'open-ils.circ.checkin';
253                 if (options.override) method += '.override';
254
255                 return egCore.net.request(
256                     'open-ils.circ', method, egCore.auth.token(), params
257
258                 ).then(function(evt) {
259
260                     if (!angular.isArray(evt)) evt = [evt];
261                     return service.flesh_response_data(
262                         'checkin', evt, params, options)
263                     .then(function() {
264                         return service.handle_checkin_resp(evt, params, options);
265                     })
266                     .then(function(final_resp) {
267                         return service.munge_resp_data(final_resp,'checkin',method)
268                     })
269                 });
270             });
271         });
272     }
273
274     // provide consistent formatting of the final response data
275     service.munge_resp_data = function(final_resp,worklog_action,worklog_method) {
276         var data = final_resp.data = {};
277
278         if (!final_resp.evt[0]) {
279             egCore.audio.play('error.unknown.no_event');
280             return;
281         }
282
283         var payload = final_resp.evt[0].payload;
284         if (!payload) {
285             egCore.audio.play('error.unknown.no_payload');
286             return;
287         }
288
289         // retrieve call number affixes prior to sending payload data to the grid
290         if (payload.volume && typeof payload.volume.prefix() != 'object') {
291             egCore.pcrud.retrieve('acnp',payload.volume.prefix()).then(function(p) {payload.volume.prefix(p)});
292         };
293         if (payload.volume && typeof payload.volume.suffix() != 'object') {
294             egCore.pcrud.retrieve('acns',payload.volume.suffix()).then(function(s) {payload.volume.suffix(s)});
295         };
296
297         data.circ = payload.circ;
298         data.parent_circ = payload.parent_circ;
299         data.hold = payload.hold;
300         data.record = payload.record;
301         data.acp = payload.copy;
302         data.acn = payload.volume ?  payload.volume : payload.copy ? payload.copy.call_number() : null;
303         data.au = payload.patron;
304         data.transit = payload.transit;
305         data.status = payload.status;
306         data.message = payload.message;
307         data.title = final_resp.evt[0].title;
308         data.author = final_resp.evt[0].author;
309         data.isbn = final_resp.evt[0].isbn;
310         data.route_to = final_resp.evt[0].route_to;
311
312         if (payload.circ) data.duration = payload.circ.duration();
313         if (payload.circ) data.circ_lib = payload.circ.circ_lib();
314
315         // for checkin, the mbts lives on the main circ
316         if (payload.circ && payload.circ.billable_transaction())
317             data.mbts = payload.circ.billable_transaction().summary();
318
319         // on renewals, the mbts lives on the parent circ
320         if (payload.parent_circ && payload.parent_circ.billable_transaction())
321             data.mbts = payload.parent_circ.billable_transaction().summary();
322
323         if (!data.route_to) {
324             if (data.transit) {
325                 data.route_to = data.transit.dest().shortname();
326             } else if (data.acp) {
327                 data.route_to = data.acp.location().name();
328             }
329         }
330
331         egWorkLog.record(
332             (worklog_action == 'checkout' || worklog_action == 'noncat_checkout')
333             ? egCore.strings.EG_WORK_LOG_CHECKOUT
334             : (worklog_action == 'renew'
335                 ? egCore.strings.EG_WORK_LOG_RENEW
336                 : egCore.strings.EG_WORK_LOG_CHECKIN // worklog_action == 'checkin'
337             ),{
338                 'action' : worklog_action,
339                 'method' : worklog_method,
340                 'response' : final_resp
341             }
342         );
343
344         return final_resp;
345     }
346
347     service.handle_overridable_checkout_event = function(evt, params, options) {
348
349         if (options.override) {
350             // override attempt already made and failed.
351             // NOTE: I don't think we'll ever get here, since the
352             // override attempt should produce a perm failure...
353             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
354             return $q.reject();
355
356         } 
357
358         if (evt.filter(function(e){return !service.auto_override_checkout_events[e.textcode];}).length == 0) {
359             // user has already opted to override these type
360             // of events.  Re-run the checkout w/ override.
361             options.override = true;
362             return service.checkout(params, options);
363         } 
364
365         // Ask the user if they would like to override this event.
366         // Some events offer a stock override dialog, while others
367         // require additional context.
368
369         switch(evt[0].textcode) {
370             case 'COPY_NOT_AVAILABLE':
371                 return service.copy_not_avail_dialog(evt, params, options);
372             case 'COPY_ALERT_MESSAGE':
373                 return service.copy_alert_dialog(evt[0], params, options, 'checkout');
374             default: 
375                 return service.override_dialog(evt, params, options, 'checkout');
376         }
377     }
378
379     service.handle_overridable_renew_event = function(evt, params, options) {
380
381         if (options.override) {
382             // override attempt already made and failed.
383             // NOTE: I don't think we'll ever get here, since the
384             // override attempt should produce a perm failure...
385             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
386             return $q.reject();
387
388         } 
389
390         // renewal auto-overrides are the same as checkout
391         if (evt.filter(function(e){return !service.auto_override_checkout_events[e.textcode];}).length == 0) {
392             // user has already opted to override these type
393             // of events.  Re-run the renew w/ override.
394             options.override = true;
395             return service.renew(params, options);
396         } 
397
398         // Ask the user if they would like to override this event.
399         // Some events offer a stock override dialog, while others
400         // require additional context.
401
402         switch(evt[0].textcode) {
403             case 'COPY_ALERT_MESSAGE':
404                 return service.copy_alert_dialog(evt[0], params, options, 'renew');
405             default: 
406                 return service.override_dialog(evt, params, options, 'renew');
407         }
408     }
409
410
411     service.handle_overridable_checkin_event = function(evt, params, options) {
412
413         if (options.override) {
414             // override attempt already made and failed.
415             // NOTE: I don't think we'll ever get here, since the
416             // override attempt should produce a perm failure...
417             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
418             return $q.reject();
419
420         } 
421
422         if (options.suppress_checkin_popups
423             && evt.filter(function(e){return service.checkin_suppress_overrides.indexOf(e.textcode) == -1;}).length == 0) {
424             // Events are suppressed.  Re-run the checkin w/ override.
425             options.override = true;
426             return service.checkin(params, options);
427         } 
428
429         // Ask the user if they would like to override this event.
430         // Some events offer a stock override dialog, while others
431         // require additional context.
432
433         switch(evt[0].textcode) {
434             case 'COPY_ALERT_MESSAGE':
435                 return service.copy_alert_dialog(evt[0], params, options, 'checkin');
436             case 'HOLD_CAPTURE_DELAYED':
437                 return service.hold_capture_delay_dialog(evt[0], params, options, 'checkin');
438             default: 
439                 return service.override_dialog(evt, params, options, 'checkin');
440         }
441     }
442
443
444     service.handle_renew_resp = function(evt, params, options) {
445
446         var final_resp = {evt : evt, params : params, options : options};
447
448         // track the barcode regardless of whether it refers to a copy
449         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
450
451         // Overridable Events
452         if (evt.filter(function(e){return service.renew_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
453             return service.handle_overridable_renew_event(evt, params, options);
454
455         // Other events
456         switch (evt[0].textcode) {
457             case 'SUCCESS':
458                 egCore.audio.play('info.renew');
459                 return $q.when(final_resp);
460
461             case 'COPY_IN_TRANSIT':
462             case 'PATRON_CARD_INACTIVE':
463             case 'PATRON_INACTIVE':
464             case 'PATRON_ACCOUNT_EXPIRED':
465             case 'CIRC_CLAIMS_RETURNED':
466                 egCore.audio.play('warning.renew');
467                 return service.exit_alert(
468                     egCore.strings[evt[0].textcode],
469                     {barcode : params.copy_barcode}
470                 );
471
472             default:
473                 egCore.audio.play('warning.renew.unknown');
474                 return service.exit_alert(
475                     egCore.strings.CHECKOUT_FAILED_GENERIC, {
476                         barcode : params.copy_barcode,
477                         textcode : evt[0].textcode,
478                         desc : evt[0].desc
479                     }
480                 );
481         }
482     }
483
484
485     service.handle_checkout_resp = function(evt, params, options) {
486
487         var final_resp = {evt : evt, params : params, options : options};
488
489         // track the barcode regardless of whether it refers to a copy
490         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
491
492         // Overridable Events
493         if (evt.filter(function(e){return service.checkout_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
494             return service.handle_overridable_checkout_event(evt, params, options);
495
496         // Other events
497         switch (evt[0].textcode) {
498             case 'SUCCESS':
499                 egCore.audio.play('success.checkout');
500                 return $q.when(final_resp);
501
502             case 'ITEM_NOT_CATALOGED':
503                 egCore.audio.play('error.checkout.no_cataloged');
504                 return service.precat_dialog(params, options);
505
506             case 'OPEN_CIRCULATION_EXISTS':
507                 // auto_renew checked in service.checkout()
508                 egCore.audio.play('error.checkout.open_circ');
509                 return service.circ_exists_dialog(evt, params, options);
510
511             case 'COPY_IN_TRANSIT':
512                 egCore.audio.play('warning.checkout.in_transit');
513                 return service.copy_in_transit_dialog(evt, params, options);
514
515             case 'PATRON_CARD_INACTIVE':
516             case 'PATRON_INACTIVE':
517             case 'PATRON_ACCOUNT_EXPIRED':
518             case 'CIRC_CLAIMS_RETURNED':
519                 egCore.audio.play('warning.checkout');
520                 return service.exit_alert(
521                     egCore.strings[evt[0].textcode],
522                     {barcode : params.copy_barcode}
523                 );
524
525             default:
526                 egCore.audio.play('error.checkout.unknown');
527                 return service.exit_alert(
528                     egCore.strings.CHECKOUT_FAILED_GENERIC, {
529                         barcode : params.copy_barcode,
530                         textcode : evt[0].textcode,
531                         desc : evt[0].desc
532                     }
533                 );
534         }
535     }
536
537     // returns a promise resolved with the list of circ mods
538     service.get_circ_mods = function() {
539         if (egCore.env.ccm) 
540             return $q.when(egCore.env.ccm.list);
541
542         return egCore.pcrud.retrieveAll('ccm', null, {atomic : true})
543         .then(function(list) { 
544             egCore.env.absorbList(list, 'ccm');
545             return list;
546         });
547     };
548
549     // returns a promise resolved with the list of noncat types
550     service.get_noncat_types = function() {
551         if (egCore.env.cnct) 
552             return $q.when(egCore.env.cnct.list);
553
554         return egCore.pcrud.search('cnct', 
555             {owning_lib : 
556                 egCore.org.fullPath(egCore.auth.user().ws_ou(), true)}, 
557             null, {atomic : true}
558         ).then(function(list) { 
559             egCore.env.absorbList(list, 'cnct');
560             return list;
561         });
562     }
563
564     service.get_staff_penalty_types = function() {
565         if (egCore.env.csp) 
566             return $q.when(egCore.env.csp.list);
567         return egCore.pcrud.search(
568             // id <= 100 are reserved for system use
569             'csp', {id : {'>': 100}}, {}, {atomic : true})
570         .then(function(penalties) {
571             return egCore.env.absorbList(penalties, 'csp').list;
572         });
573     }
574
575     // ideally all of these data should be returned with the response,
576     // but until then, grab what we need.
577     service.flesh_response_data = function(action, evt, params, options) {
578         var promises = [];
579         var payload;
580         if (!evt[0] || !(payload = evt[0].payload)) return $q.when();
581         
582         promises.push(service.flesh_copy_location(payload.copy));
583         if (payload.copy) {
584             promises.push(service.flesh_acn_owning_lib(payload.volume));
585             promises.push(service.flesh_copy_circ_library(payload.copy));
586             promises.push(service.flesh_copy_circ_modifier(payload.copy));
587             promises.push(
588                 service.flesh_copy_status(payload.copy)
589
590                 .then(function() {
591                     // copy is in transit, but no transit was delivered
592                     // in the payload.  Do this here instead of below to
593                     // ensure consistent copy status fleshiness
594                     if (!payload.transit && payload.copy.status().id() == 6) { // in-transit
595                         return service.find_copy_transit(evt, params, options)
596                         .then(function(trans) {
597                             if (trans) {
598                                 trans.source(egCore.org.get(trans.source()));
599                                 trans.dest(egCore.org.get(trans.dest()));
600                                 payload.transit = trans;
601                             }
602                         })
603                     }
604                 })
605             );
606         }
607
608         // local flesh transit
609         if (transit = payload.transit) {
610             transit.source(egCore.org.get(transit.source()));
611             transit.dest(egCore.org.get(transit.dest()));
612         } 
613
614         // TODO: renewal responses should include the patron
615         if (!payload.patron) {
616             var user_id;
617             if (payload.circ) user_id = payload.circ.usr();
618             if (payload.noncat_circ) user_id = payload.noncat_circ.patron();
619             if (user_id) {
620                 promises.push(
621                     egCore.pcrud.retrieve('au', user_id)
622                     .then(function(user) {payload.patron = user})
623                 );
624             }
625         }
626
627         // extract precat values
628         angular.forEach(evt, function(e){ e.title = payload.record ? payload.record.title() : 
629             (payload.copy ? payload.copy.dummy_title() : null);});
630
631         angular.forEach(evt, function(e){ e.author = payload.record ? payload.record.author() : 
632             (payload.copy ? payload.copy.dummy_author() : null);});
633
634         angular.forEach(evt, function(e){ e.isbn = payload.record ? payload.record.isbn() : 
635             (payload.copy ? payload.copy.dummy_isbn() : null);});
636
637         return $q.all(promises);
638     }
639
640     service.flesh_acn_owning_lib = function(acn) {
641         if (!acn) return $q.when();
642         return $q.when(acn.owning_lib(egCore.org.get( acn.owning_lib() )));
643     }
644
645     service.flesh_copy_circ_library = function(copy) {
646         if (!copy) return $q.when();
647         
648         return $q.when(copy.circ_lib(egCore.org.get( copy.circ_lib() )));
649     }
650
651     // fetches the full list of circ modifiers
652     service.flesh_copy_circ_modifier = function(copy) {
653         if (!copy) return $q.when();
654         if (egCore.env.ccm)
655             return $q.when(copy.circ_modifier(egCore.env.ccm.map[copy.circ_modifier()]));
656         return egCore.pcrud.retrieveAll('ccm', {}, {atomic : true}).then(
657             function(list) {
658                 egCore.env.absorbList(list, 'ccm');
659                 copy.circ_modifier(egCore.env.ccm.map[copy.circ_modifier()]);
660             }
661         );
662     }
663
664     // fetches the full list of copy statuses
665     service.flesh_copy_status = function(copy) {
666         if (!copy) return $q.when();
667         if (egCore.env.ccs) 
668             return $q.when(copy.status(egCore.env.ccs.map[copy.status()]));
669         return egCore.pcrud.retrieveAll('ccs', {}, {atomic : true}).then(
670             function(list) {
671                 egCore.env.absorbList(list, 'ccs');
672                 copy.status(egCore.env.ccs.map[copy.status()]);
673             }
674         );
675     }
676
677     // there may be *many* copy locations and we may be handling items
678     // for other locations.  Fetch copy locations as-needed and cache.
679     service.flesh_copy_location = function(copy) {
680         if (!copy) return $q.when();
681         if (angular.isObject(copy.location())) return $q.when(copy);
682         if (egCore.env.acpl) {
683             if (egCore.env.acpl.map[copy.location()]) {
684                 copy.location(egCore.env.acpl.map[copy.location()]);
685                 return $q.when(copy);
686             }
687         } 
688         return egCore.pcrud.retrieve('acpl', copy.location())
689         .then(function(loc) {
690             egCore.env.absorbList([loc], 'acpl'); // append to cache
691             copy.location(loc);
692             return copy;
693         });
694     }
695
696
697     // fetch org unit addresses as needed.
698     service.get_org_addr = function(org_id, addr_type) {
699         var org = egCore.org.get(org_id);
700         var addr_id = org[addr_type]();
701
702         if (!addr_id) return $q.when(null);
703
704         if (egCore.env.aoa && egCore.env.aoa.map[addr_id]) 
705             return $q.when(egCore.env.aoa.map[addr_id]); 
706
707         return egCore.pcrud.retrieve('aoa', addr_id).then(function(addr) {
708             egCore.env.absorbList([addr], 'aoa');
709             return egCore.env.aoa.map[addr_id]; 
710         });
711     }
712
713     service.exit_alert = function(msg, scope) {
714         return egAlertDialog.open(msg, scope).result.then(
715             function() {return $q.reject()});
716     }
717
718     // opens a dialog asking the user if they would like to override
719     // the returned event.
720     service.override_dialog = function(evt, params, options, action) {
721         if (!angular.isArray(evt)) evt = [evt];
722
723         egCore.audio.play('warning.circ.event_override');
724         var copy_alert = evt.filter(function(e) {
725             return e.textcode == 'COPY_ALERT_MESSAGE';
726         });
727         evt = evt.filter(function(e) {
728             return e.textcode !== 'COPY_ALERT_MESSAGE';
729         });
730
731         return $uibModal.open({
732             templateUrl: './circ/share/t_event_override_dialog',
733             backdrop: 'static',
734             controller: 
735                 ['$scope', '$uibModalInstance', 
736                 function($scope, $uibModalInstance) {
737                 $scope.events = evt;
738
739                 // Find the event, if any, that is for ITEM_ON_HOLDS_SHELF
740                 //  and grab the patron name of the owner. 
741                 $scope.holdEvent = evt.filter(
742                      function(e) {
743                         return e.textcode === 'ITEM_ON_HOLDS_SHELF'
744                      }
745                 );
746
747                 if ($scope.holdEvent) {
748                    // Ensure we have a scalar here 
749                    if (angular.isArray($scope.holdEvent)) {
750                        $scope.holdEvent = $scope.holdEvent[0];
751                    }
752
753                    $scope.patronName = $scope.holdEvent.payload.patron_name;
754                    $scope.holdID = $scope.holdEvent.payload.hold_id;
755                    $scope.patronID = $scope.holdEvent.payload.patron_id;
756                 }
757
758                 $scope.auto_override =
759                     evt.filter(function(e){
760                         return service.checkout_auto_override_after_first.indexOf(evt.textcode) > -1;
761                     }).length > 0;
762                 $scope.copy_barcode = params.copy_barcode; // may be null
763
764                 // Implementation note: Why not use a primitive here? It
765                 // doesn't work.  See: 
766                 // http://stackoverflow.com/questions/18642371/checkbox-not-binding-to-scope-in-angularjs
767                 $scope.formdata = {clearHold : service.clearHold};
768
769                 $scope.ok = function() { 
770                         $uibModalInstance.close();
771
772                         // Handle the cancellation of the assciated hold here
773                         if ($scope.formdata.clearHold && $scope.holdID) {
774                             $scope.args = {
775                             cancel_reason : 5,
776                                 note: 'Item checked out by other patron'
777                             };
778                             egCore.net.request(
779                                 'open-ils.circ', 'open-ils.circ.hold.cancel',
780                                 egCore.auth.token(), $scope.holdID,
781                                 $scope.args.cancel_reason,
782                                 $scope.args.note);
783                         }
784                 }
785
786                 $scope.cancel = function ($event) { 
787                     $uibModalInstance.dismiss();
788                     $event.preventDefault();
789                 }
790             }]
791         }).result.then(
792             function() {
793                 options.override = true;
794
795                 if (copy_alert.length > 0) {
796                     return service.copy_alert_dialog(copy_alert, params, options, action);
797                 }
798
799                 if (action == 'checkin') {
800                     return service.checkin(params, options);
801                 }
802
803                 // checkout/renew support override-after-first
804                 angular.forEach(evt, function(e){
805                     if (service.checkout_auto_override_after_first.indexOf(e.textcode) > -1)
806                         service.auto_override_checkout_events[e.textcode] = true;
807                 });
808
809                 return service[action](params, options);
810             }
811         );
812     }
813
814     service.copy_not_avail_dialog = function(evt, params, options) {
815         if (!angular.isArray(evt)) evt = [evt];
816
817         var copy_alert = evt.filter(function(e) {
818             return e.textcode == 'COPY_ALERT_MESSAGE';
819         });
820         evt = evt.filter(function(e) {
821             return e.textcode !== 'COPY_ALERT_MESSAGE';
822         });
823         evt = evt[0];
824
825         return $uibModal.open({
826             templateUrl: './circ/share/t_copy_not_avail_dialog',
827             backdrop: 'static',
828             controller: 
829                        ['$scope','$uibModalInstance','copyStatus',
830                 function($scope , $uibModalInstance , copyStatus) {
831                 $scope.copyStatus = copyStatus;
832                 $scope.ok = function() {$uibModalInstance.close()}
833                 $scope.cancel = function() {$uibModalInstance.dismiss()}
834             }],
835             resolve : {
836                 copyStatus : function() {
837                     return egCore.pcrud.retrieve(
838                         'ccs', evt.payload.status());
839                 }
840             }
841         }).result.then(
842             function() {
843                 options.override = true;
844
845                 if (copy_alert.length > 0) {
846                     return service.copy_alert_dialog(copy_alert, params, options, 'checkout');
847                 }
848
849                 return service.checkout(params, options);
850             }
851         );
852     }
853
854     // Opens a dialog allowing the user to fill in the desired non-cat count.
855     // Unlike other dialogs, which kickoff circ actions internally
856     // as a result of events, this dialog does not kick off any circ
857     // actions. It just collects the count and and resolves the promise.
858     //
859     // This assumes the caller has already handled the noncat-type
860     // selection and just needs to collect the count info.
861     service.noncat_dialog = function(params, options) {
862         var noncatMax = 99; // hard-coded max
863         
864         // the caller should presumably have fetched the noncat_types via
865         // our API already, but fetch them again (from cache) to be safe.
866         return service.get_noncat_types().then(function() {
867
868             params.noncat = true;
869             var type = egCore.env.cnct.map[params.noncat_type];
870
871             return $uibModal.open({
872                 templateUrl: './circ/share/t_noncat_dialog',
873                 backdrop: 'static',
874                 controller: 
875                     ['$scope', '$uibModalInstance',
876                     function($scope, $uibModalInstance) {
877                     $scope.focusMe = true;
878                     $scope.type = type;
879                     $scope.count = 1;
880                     $scope.noncatMax = noncatMax;
881                     $scope.ok = function(count) { $uibModalInstance.close(count) }
882                     $scope.cancel = function ($event) { 
883                         $uibModalInstance.dismiss() 
884                         $event.preventDefault();
885                     }
886                 }],
887             }).result.then(
888                 function(count) {
889                     if (count && count > 0 && count <= noncatMax) { 
890                         // NOTE: in Chrome, form validation ensure a valid number
891                         params.noncat_count = count;
892                         return $q.when(params);
893                     } else {
894                         return $q.reject();
895                     }
896                 }
897             );
898         });
899     }
900
901     // Opens a dialog allowing the user to fill in pre-cat copy info.
902     service.precat_dialog = function(params, options) {
903
904         return $uibModal.open({
905             templateUrl: './circ/share/t_precat_dialog',
906             backdrop: 'static',
907             controller: 
908                 ['$scope', '$uibModalInstance', 'circMods',
909                 function($scope, $uibModalInstance, circMods) {
910                 $scope.focusMe = true;
911                 $scope.precatArgs = {
912                     copy_barcode : params.copy_barcode
913                 };
914                 $scope.circModifiers = circMods;
915                 $scope.ok = function(args) { $uibModalInstance.close(args) }
916                 $scope.cancel = function () { $uibModalInstance.dismiss() }
917
918                 // use this function as a keydown handler on form
919                 // elements that should not submit the form on enter.
920                 $scope.preventSubmit = function($event) {
921                     if ($event.keyCode == 13)
922                         $event.preventDefault();
923                 }
924             }],
925             resolve : {
926                 circMods : function() { 
927                     return service.get_circ_mods();
928                 }
929             }
930         }).result.then(
931             function(args) {
932                 if (!args || !args.dummy_title) return $q.reject();
933                 if(args.circ_modifier == "") args.circ_modifier = null;
934                 angular.forEach(args, function(val, key) {params[key] = val});
935                 params.precat = true;
936                 return service.checkout(params, options);
937             }
938         );
939     }
940
941     // find the open transit for the given copy barcode; flesh the org
942     // units locally.
943     service.find_copy_transit = function(evt, params, options) {
944         if (angular.isArray(evt)) evt = evt[0];
945
946         if (evt && evt.payload && evt.payload.transit)
947             return $q.when(evt.payload.transit);
948
949          return egCore.pcrud.search('atc',
950             {   dest_recv_time : null},
951             {   flesh : 1, 
952                 flesh_fields : {atc : ['target_copy']},
953                 join : {
954                     acp : {
955                         filter : {
956                             barcode : params.copy_barcode,
957                             deleted : 'f'
958                         }
959                     }
960                 },
961                 limit : 1,
962                 order_by : {atc : 'source_send_time desc'}, 
963             }
964         ).then(function(transit) {
965             transit.source(egCore.org.get(transit.source()));
966             transit.dest(egCore.org.get(transit.dest()));
967             return transit;
968         });
969     }
970
971     service.copy_in_transit_dialog = function(evt, params, options) {
972         if (angular.isArray(evt)) evt = evt[0];
973         return $uibModal.open({
974             templateUrl: './circ/share/t_copy_in_transit_dialog',
975             backdrop: 'static',
976             controller: 
977                        ['$scope','$uibModalInstance','transit',
978                 function($scope , $uibModalInstance , transit) {
979                 $scope.transit = transit;
980                 $scope.ok = function() { $uibModalInstance.close(transit) }
981                 $scope.cancel = function() { $uibModalInstance.dismiss() }
982             }],
983             resolve : {
984                 // fetch the conflicting open transit w/ fleshed copy
985                 transit : function() {
986                     return service.find_copy_transit(evt, params, options);
987                 }
988             }
989         }).result.then(
990             function(transit) {
991                 // user chose to abort the transit then checkout
992                 return service.abort_transit(transit.id())
993                 .then(function() {
994                     return service.checkout(params, options);
995                 });
996             }
997         );
998     }
999
1000     service.abort_transit = function(transit_id) {
1001         return egCore.net.request(
1002             'open-ils.circ',
1003             'open-ils.circ.transit.abort',
1004             egCore.auth.token(), {transitid : transit_id}
1005         ).then(function(resp) {
1006             if (evt = egCore.evt.parse(resp)) {
1007                 alert(evt);
1008                 return $q.reject();
1009             }
1010             return $q.when();
1011         });
1012     }
1013
1014     service.last_copy_circ = function(copy_id) {
1015         return egCore.pcrud.search('circ', 
1016             {target_copy : copy_id},
1017             {order_by : {circ : 'xact_start desc' }, limit : 1}
1018         );
1019     }
1020
1021     service.circ_exists_dialog = function(evt, params, options) {
1022         if (angular.isArray(evt)) evt = evt[0];
1023
1024         if (!evt.payload.old_circ) {
1025             return egCore.net.request(
1026                 'open-ils.search',
1027                 'open-ils.search.asset.copy.fleshed2.find_by_barcode',
1028                 params.copy_barcode
1029             ).then(function(resp){
1030                 console.log(resp);
1031                 if (egCore.evt.parse(resp)) {
1032                     console.error(egCore.evt.parse(resp));
1033                 } else {
1034                     return egCore.net.request(
1035                          'open-ils.circ',
1036                          'open-ils.circ.copy_checkout_history.retrieve',
1037                          egCore.auth.token(), resp.id(), 1
1038                     ).then( function (circs) {
1039                         evt.payload.old_circ = circs[0];
1040                         return service.circ_exists_dialog_impl( evt, params, options );
1041                     });
1042                 }
1043             });
1044         } else {
1045             return service.circ_exists_dialog_impl( evt, params, options );
1046         }
1047     },
1048
1049     service.circ_exists_dialog_impl = function (evt, params, options) {
1050
1051         var openCirc = evt.payload.old_circ;
1052         var sameUser = openCirc.usr() == params.patron_id;
1053         
1054         return $uibModal.open({
1055             templateUrl: './circ/share/t_circ_exists_dialog',
1056             backdrop: 'static',
1057             controller: 
1058                        ['$scope','$uibModalInstance',
1059                 function($scope , $uibModalInstance) {
1060                 $scope.args = {forgive_fines : false};
1061                 $scope.circDate = openCirc.xact_start();
1062                 $scope.sameUser = sameUser;
1063                 $scope.ok = function() { $uibModalInstance.close($scope.args) }
1064                 $scope.cancel = function($event) { 
1065                     $uibModalInstance.dismiss();
1066                     $event.preventDefault(); // form, avoid calling ok();
1067                 }
1068             }]
1069         }).result.then(
1070             function(args) {
1071                 if (sameUser) {
1072                     params.void_overdues = args.forgive_fines;
1073                     return service.renew(params, options);
1074                 }
1075
1076                 return service.checkin({
1077                     barcode : params.copy_barcode,
1078                     noop : true,
1079                     void_overdues : args.forgive_fines
1080                 }).then(function(checkin_resp) {
1081                     if (checkin_resp.evt[0].textcode == 'SUCCESS') {
1082                         return service.checkout(params, options);
1083                     } else {
1084                         alert(egCore.evt.parse(checkin_resp.evt[0]));
1085                         return $q.reject();
1086                     }
1087                 });
1088             }
1089         );
1090     }
1091
1092     service.batch_backdate = function(circ_ids, backdate) {
1093         return egCore.net.request(
1094             'open-ils.circ',
1095             'open-ils.circ.post_checkin_backdate.batch',
1096             egCore.auth.token(), circ_ids, backdate);
1097     }
1098
1099     service.backdate_dialog = function(circ_ids) {
1100         return $uibModal.open({
1101             templateUrl: './circ/share/t_backdate_dialog',
1102             backdrop: 'static',
1103             controller: 
1104                        ['$scope','$uibModalInstance',
1105                 function($scope , $uibModalInstance) {
1106
1107                 var today = new Date();
1108                 $scope.dialog = {
1109                     num_circs : circ_ids.length,
1110                     num_processed : 0,
1111                     backdate : today
1112                 }
1113
1114                 $scope.$watch('dialog.backdate', function(newval) {
1115                     if (newval && newval > today) 
1116                         $scope.dialog.backdate = today;
1117                 });
1118
1119
1120                 $scope.cancel = function() { 
1121                     $uibModalInstance.dismiss();
1122                 }
1123
1124                 $scope.ok = function() { 
1125
1126                     var bd = $scope.dialog.backdate.toISOString().replace(/T.*/,'');
1127                     service.batch_backdate(circ_ids, bd)
1128                     .then(
1129                         function() { // on complete
1130                             $uibModalInstance.close({backdate : bd});
1131                         },
1132                         null,
1133                         function(resp) { // on response
1134                             console.debug('backdate returned ' + resp);
1135                             if (resp == '1') {
1136                                 $scope.num_processed++;
1137                             } else {
1138                                 console.error(egCore.evt.parse(resp));
1139                             }
1140                         }
1141                     );
1142                 }
1143             }]
1144         }).result;
1145     }
1146
1147     service.mark_claims_returned = function(barcode, date, override) {
1148
1149         var method = 'open-ils.circ.circulation.set_claims_returned';
1150         if (override) method += '.override';
1151
1152         console.debug('claims returned ' + method);
1153
1154         return egCore.net.request(
1155             'open-ils.circ', method, egCore.auth.token(),
1156             {barcode : barcode, backdate : date})
1157
1158         .then(function(resp) {
1159
1160             if (resp == 1) { // success
1161                 console.debug('claims returned succeeded for ' + barcode);
1162                 return barcode;
1163
1164             } else if (evt = egCore.evt.parse(resp)) {
1165                 console.debug('claims returned failed: ' + evt.toString());
1166
1167                 if (evt.textcode == 'PATRON_EXCEEDS_CLAIMS_RETURN_COUNT') {
1168                     // TODO check perms before offering override option?
1169
1170                     if (override) return;// just to be safe
1171
1172                     return egConfirmDialog.open(
1173                         egCore.strings.TOO_MANY_CLAIMS_RETURNED, '', {}
1174                     ).result.then(function() {
1175                         return service.mark_claims_returned(barcode, date, true);
1176                     });
1177                 }
1178
1179                 if (evt.textcode == 'PERM_FAILURE') {
1180                     console.error('claims returned permission denied')
1181                     // TODO: auth override dialog?
1182                 }
1183             }
1184         });
1185     }
1186
1187     service.mark_claims_returned_dialog = function(copy_barcodes) {
1188         if (!copy_barcodes.length) return;
1189
1190         return $uibModal.open({
1191             templateUrl: './circ/share/t_mark_claims_returned_dialog',
1192             backdrop: 'static',
1193             controller: 
1194                        ['$scope','$uibModalInstance',
1195                 function($scope , $uibModalInstance) {
1196
1197                 var today = new Date();
1198                 $scope.args = {
1199                     barcodes : copy_barcodes,
1200                     date : today
1201                 };
1202
1203                 $scope.$watch('args.date', function(newval) {
1204                     if (newval && newval > today) 
1205                         $scope.args.backdate = today;
1206                 });
1207
1208                 $scope.cancel = function() {$uibModalInstance.dismiss()}
1209                 $scope.ok = function() { 
1210
1211                     var date = $scope.args.date.toISOString().replace(/T.*/,'');
1212
1213                     var deferred = $q.defer();
1214
1215                     // serialize the action on each barcode so that the 
1216                     // caller will never see multiple alerts at the same time.
1217                     function mark_one() {
1218                         var bc = copy_barcodes.pop();
1219                         if (!bc) {
1220                             deferred.resolve();
1221                             $uibModalInstance.close();
1222                             return;
1223                         }
1224
1225                         // finally -> continue even when one fails
1226                         service.mark_claims_returned(bc, date)
1227                         .finally(function(barcode) {
1228                             if (barcode) deferred.notify(barcode);
1229                             mark_one();
1230                         });
1231                     }
1232                     mark_one(); // kick it off
1233                     return deferred.promise;
1234                 }
1235             }]
1236         }).result;
1237     }
1238
1239     // serially checks in each barcode with claims_never_checked_out set
1240     // returns promise, notified on each barcode, resolved after all
1241     // checkins are complete.
1242     service.mark_claims_never_checked_out = function(barcodes) {
1243         if (!barcodes.length) return;
1244
1245         var deferred = $q.defer();
1246         egConfirmDialog.open(
1247             egCore.strings.MARK_NEVER_CHECKED_OUT, '', {barcodes : barcodes}
1248
1249         ).result.then(function() {
1250             function mark_one() {
1251                 var bc = barcodes.pop();
1252
1253                 if (!bc) { // all done
1254                     deferred.resolve();
1255                     return;
1256                 }
1257
1258                 service.checkin(
1259                     {claims_never_checked_out : true, copy_barcode : bc})
1260                 .finally(function() { 
1261                     deferred.notify(bc);
1262                     mark_one();
1263                 })
1264             }
1265             mark_one();
1266         });
1267
1268         return deferred.promise;
1269     }
1270
1271     service.mark_damaged = function(params) {
1272         if (!params) return $q.when();
1273         return $uibModal.open({
1274             templateUrl: './circ/share/t_mark_damaged',
1275             controller:
1276                 ['$scope', '$uibModalInstance', 'egCore', 'egBilling', 'egItem',
1277                 function($scope, $uibModalInstance, egCore, egBilling, egItem) {
1278                     var doRefresh = params.refresh;
1279                     
1280                     $scope.billArgs = {charge: params.charge};
1281                     $scope.mode = 'charge';
1282                     $scope.barcode = params.barcode;
1283                     if (params.charge && params.charge > 0) {
1284                         $scope.applyFine = "apply";
1285                     }
1286                     if (params.circ) {
1287                         $scope.circ = params.circ;
1288                         $scope.circ_checkin_time = params.circ.checkin_time();
1289                         $scope.circ_patron_name = params.circ.usr().family_name() + ", "
1290                             + params.circ.usr().first_given_name() + " "
1291                             + params.circ.usr().second_given_name();
1292                     }
1293                     egBilling.fetchBillingTypes().then(function(res) {
1294                         $scope.billingTypes = res;
1295                     });
1296
1297                     $scope.btnChargeFees = function() {
1298                         $scope.mode = 'charge';
1299                         $scope.billArgs.charge = params.charge;
1300                         $scope.applyFine = "apply";
1301                     }
1302                     $scope.btnWaiveFees = function() {
1303                         $scope.mode = 'waive';
1304                         $scope.billArgs.charge = 0;
1305                         $scope.applyFine = "noapply";
1306                     }
1307
1308                     $scope.cancel = function ($event) { 
1309                         $uibModalInstance.dismiss();
1310                     }
1311                     $scope.ok = function() {
1312                         handle_mark_item_damaged();
1313                     }
1314
1315                     var handle_mark_item_damaged = function() {
1316                         egCore.net.request(
1317                             'open-ils.circ',
1318                             'open-ils.circ.mark_item_damaged',
1319                             egCore.auth.token(), params.id, {
1320                                 apply_fines: $scope.applyFine,
1321                                 override_amount: $scope.billArgs.charge,
1322                                 override_btype: $scope.billArgs.type,
1323                                 override_note: $scope.billArgs.note,
1324                                 handle_checkin: !$scope.applyFine
1325                         }).then(function(resp) {
1326                             if (evt = egCore.evt.parse(resp)) {
1327                                 doRefresh = false;
1328                                 console.debug("mark damaged more information required. Pushing back.");
1329                                 service.mark_damaged({
1330                                     id: params.id,
1331                                     barcode: params.barcode,
1332                                     charge: evt.payload.charge,
1333                                     circ: evt.payload.circ,
1334                                     refresh: params.refresh
1335                                 });
1336                                 console.error('mark damaged failed: ' + evt);
1337                             }
1338                         }).then(function() {
1339                             if (doRefresh) egItem.add_barcode_to_list(params.barcode);
1340                         });
1341                         $uibModalInstance.close();
1342                     }
1343                 }]
1344         }).result;
1345     }
1346
1347     service.mark_missing = function(copy_ids) {
1348         return egConfirmDialog.open(
1349             egCore.strings.MARK_MISSING_CONFIRM, '',
1350             {   num_items : copy_ids.length,
1351                 ok : function() {},
1352                 cancel : function() {}
1353             }
1354         ).result.then(function() {
1355             var promises = [];
1356             angular.forEach(copy_ids, function(copy_id) {
1357                 promises.push(
1358                     egCore.net.request(
1359                         'open-ils.circ',
1360                         'open-ils.circ.mark_item_missing',
1361                         egCore.auth.token(), copy_id
1362                     ).then(function(resp) {
1363                         if (evt = egCore.evt.parse(resp)) {
1364                             console.error('mark missing failed: ' + evt);
1365                         }
1366                     })
1367                 );
1368             });
1369
1370             return $q.all(promises);
1371         });
1372     }
1373
1374
1375
1376     // Mark circulations as lost via copy barcode.  As each item is 
1377     // processed, the returned promise is notified of the barcode.
1378     // No confirmation dialog is presented.
1379     service.mark_lost = function(copy_barcodes) {
1380         var deferred = $q.defer();
1381         var promises = [];
1382
1383         angular.forEach(copy_barcodes, function(barcode) {
1384             promises.push(
1385                 egCore.net.request(
1386                     'open-ils.circ',
1387                     'open-ils.circ.circulation.set_lost',
1388                     egCore.auth.token(), {barcode : barcode}
1389                 ).then(function(resp) {
1390                     if (evt = egCore.evt.parse(resp)) {
1391                         console.error("Mark lost failed: " + evt.toString());
1392                         return;
1393                     }
1394                     // inform the caller as each item is processed
1395                     deferred.notify(barcode);
1396                 })
1397             );
1398         });
1399
1400         $q.all(promises).then(function() {deferred.resolve()});
1401         return deferred.promise;
1402     }
1403
1404     service.abort_transits = function(transit_ids) {
1405         return egConfirmDialog.open(
1406             egCore.strings.ABORT_TRANSIT_CONFIRM, '',
1407             {   num_transits : transit_ids.length,
1408                 ok : function() {},
1409                 cancel : function() {}
1410             }
1411
1412         ).result.then(function() {
1413             var promises = [];
1414             angular.forEach(transit_ids, function(transit_id) {
1415                 promises.push(
1416                     egCore.net.request(
1417                         'open-ils.circ',
1418                         'open-ils.circ.transit.abort',
1419                         egCore.auth.token(), {transitid : transit_id}
1420                     ).then(function(resp) {
1421                         if (evt = egCore.evt.parse(resp)) {
1422                             console.error('abort transit failed: ' + evt);
1423                         }
1424                     })
1425                 );
1426             });
1427
1428             return $q.all(promises);
1429         });
1430     }
1431
1432     service.add_copy_alerts = function(item_ids) {
1433         return egAddCopyAlertDialog.open({
1434             copy_ids : item_ids,
1435             ok : function() { },
1436             cancel : function() {}
1437         }).result.then(function() { });
1438     }
1439
1440     service.manage_copy_alerts = function(item_ids) {
1441         return egCopyAlertEditorDialog.open({
1442             copy_id : item_ids[0],
1443             ok : function() { },
1444             cancel : function() {}
1445         }).result.then(function() { });
1446     }
1447
1448     // alert when copy location alert_message is set.
1449     // This does not affect processing, it only produces a click-through
1450     service.handle_checkin_loc_alert = function(evt, params, options) {
1451         if (angular.isArray(evt)) evt = evt[0];
1452
1453         var copy = evt && evt.payload ? evt.payload.copy : null;
1454
1455         if (copy && !options.suppress_checkin_popups
1456             && copy.location().checkin_alert() == 't') {
1457
1458             return egAlertDialog.open(
1459                 egCore.strings.LOCATION_ALERT_MSG, {copy : copy}).result;
1460         }
1461
1462         return $q.when();
1463     }
1464
1465     service.handle_checkin_resp = function(evt, params, options) {
1466         if (!angular.isArray(evt)) evt = [evt];
1467
1468         var final_resp = {evt : evt, params : params, options : options};
1469
1470         var copy, hold, transit;
1471         if (evt[0].payload) {
1472             copy = evt[0].payload.copy;
1473             hold = evt[0].payload.hold;
1474             transit = evt[0].payload.transit;
1475         }
1476
1477         // track the barcode regardless of whether it's valid
1478         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
1479
1480         angular.forEach(evt, function(e){ console.debug('checkin event ' + e.textcode); });
1481
1482         if (evt.filter(function(e){return service.checkin_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
1483             return service.handle_overridable_checkin_event(evt, params, options);
1484
1485         switch (evt[0].textcode) {
1486
1487             case 'SUCCESS':
1488             case 'NO_CHANGE':
1489
1490                 switch(Number(copy.status().id())) {
1491
1492                     case 0: /* AVAILABLE */                                        
1493                     case 4: /* MISSING */                                          
1494                     case 7: /* RESHELVING */ 
1495
1496                         egCore.audio.play('success.checkin');
1497
1498                         // see if the copy location requires an alert
1499                         return service.handle_checkin_loc_alert(evt, params, options)
1500                         .then(function() {return final_resp});
1501
1502                     case 8: /* ON HOLDS SHELF */
1503                         egCore.audio.play('info.checkin.holds_shelf');
1504                         
1505                         if (hold) {
1506
1507                             if (hold.pickup_lib() == egCore.auth.user().ws_ou()) {
1508                                 // inform user if the item is on the local holds shelf
1509                             
1510                                 evt[0].route_to = egCore.strings.ROUTE_TO_HOLDS_SHELF;
1511                                 return service.route_dialog(
1512                                     './circ/share/t_hold_shelf_dialog', 
1513                                     evt[0], params, options
1514                                 ).then(function() { return final_resp });
1515
1516                             } else {
1517                                 // normally, if the hold was on the shelf at a 
1518                                 // different location, it would be put into 
1519                                 // transit, resulting in a ROUTE_ITEM event.
1520                                 egCore.audio.play('warning.checkin.wrong_shelf');
1521                                 return $q.when(final_resp);
1522                             }
1523                         } else {
1524
1525                             console.error('checkin: item on holds shelf, '
1526                                 + 'but hold info not returned from checkin');
1527                             return $q.when(final_resp);
1528                         }
1529
1530                     case 11: /* CATALOGING */
1531                         egCore.audio.play('info.checkin.cataloging');
1532                         evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1533                         return $q.when(final_resp);
1534
1535                     case 15: /* ON_RESERVATION_SHELF */
1536                         egCore.audio.play('info.checkin.reservation');
1537                         // TODO: show booking reservation dialog
1538                         return $q.when(final_resp);
1539
1540                     default:
1541                         egCore.audio.play('success.checkin');
1542                         console.debug('Unusual checkin copy status (may have been set via copy alert): '
1543                             + copy.status().id() + ' : ' + copy.status().name());
1544                         return $q.when(final_resp);
1545                 }
1546                 
1547             case 'ROUTE_ITEM':
1548                 return service.route_dialog(
1549                     './circ/share/t_transit_dialog', 
1550                     evt[0], params, options
1551                 ).then(function() { return final_resp });
1552
1553             case 'ASSET_COPY_NOT_FOUND':
1554                 egCore.audio.play('error.checkin.not_found');
1555                 return egAlertDialog.open(
1556                     egCore.strings.UNCAT_ALERT_DIALOG, params)
1557                     .result.then(function() {return final_resp});
1558
1559             case 'ITEM_NOT_CATALOGED':
1560                 egCore.audio.play('error.checkin.not_cataloged');
1561                 evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1562                 if (options.no_precat_alert) 
1563                     return $q.when(final_resp);
1564                 return egAlertDialog.open(
1565                     egCore.strings.PRECAT_CHECKIN_MSG, params)
1566                     .result.then(function() {return final_resp});
1567
1568             default:
1569                 egCore.audio.play('error.checkin.unknown');
1570                 console.warn('unhandled checkin response : ' + evt[0].textcode);
1571                 return $q.when(final_resp);
1572         }
1573     }
1574
1575     // collect transit, address, and hold info that's not already
1576     // included in responses.
1577     service.collect_route_data = function(tmpl, evt, params, options) {
1578         if (angular.isArray(evt)) evt = evt[0];
1579         var promises = [];
1580         var data = {};
1581
1582         if (evt.org && !tmpl.match(/hold_shelf/)) {
1583             promises.push(
1584                 service.get_org_addr(evt.org, 'holds_address')
1585                 .then(function(addr) { data.address = addr })
1586             );
1587         }
1588
1589         if (evt.payload.hold) {
1590             promises.push(
1591                 egCore.pcrud.retrieve('au', 
1592                     evt.payload.hold.usr(), {
1593                         flesh : 1,
1594                         flesh_fields : {'au' : ['card']}
1595                     }
1596                 ).then(function(patron) {data.patron = patron})
1597             );
1598         }
1599
1600
1601         if (!tmpl.match(/hold_shelf/)) {
1602             var courier_deferred = $q.defer();
1603             promises.push(courier_deferred.promise);
1604             promises.push(
1605                 service.find_copy_transit(evt, params, options)
1606                 .then(function(trans) {
1607                     data.transit = trans;
1608                     egCore.org.settings('lib.courier_code', trans.dest().id())
1609                     .then(function(s) {
1610                         data.dest_courier_code = s['lib.courier_code'];
1611                         courier_deferred.resolve();
1612                     });
1613                 })
1614             );
1615         }
1616
1617         return $q.all(promises).then(function() { return data });
1618     }
1619
1620     service.route_dialog = function(tmpl, evt, params, options) {
1621         if (angular.isArray(evt)) evt = evt[0];
1622
1623         return service.collect_route_data(tmpl, evt, params, options)
1624         .then(function(data) {
1625
1626             var template = data.transit ?
1627                 (data.patron ? 'hold_transit_slip' : 'transit_slip') :
1628                 'hold_shelf_slip';
1629             if (service.never_auto_print[template]) {
1630                 // do not show the dialog or print if the
1631                 // disabled automatic print attempt type list includes
1632                 // the specified template
1633                 return;
1634             }
1635
1636             // All actions flow from the print data
1637
1638             var print_context = {
1639                 copy : egCore.idl.toHash(evt.payload.copy),
1640                 title : evt.title,
1641                 author : evt.author,
1642                 call_number : egCore.idl.toHash(evt.payload.volume)
1643             };
1644
1645             var acn = print_context.call_number; // fix up pre/suffixes
1646             if (acn.prefix == -1) acn.prefix = "";
1647             if (acn.suffix == -1) acn.suffix = "";
1648
1649             if (data.transit) {
1650                 // route_dialog includes the "route to holds shelf" 
1651                 // dialog, which has no transit
1652                 print_context.transit = egCore.idl.toHash(data.transit);
1653                 print_context.dest_courier_code = data.dest_courier_code;
1654                 if (data.address) {
1655                     print_context.dest_address = egCore.idl.toHash(data.address);
1656                 }
1657                 print_context.dest_location =
1658                     egCore.idl.toHash(egCore.org.get(data.transit.dest()));
1659             }
1660
1661             if (data.patron) {
1662                 print_context.hold = egCore.idl.toHash(evt.payload.hold);
1663                 var notes = print_context.hold.notes;
1664                 if(notes.length > 0){
1665                     print_context.hold_notes = [];
1666                     angular.forEach(notes, function(n){
1667                         print_context.hold_notes.push(n);
1668                     });
1669                 }
1670                 print_context.patron = egCore.idl.toHash(data.patron);
1671             }
1672
1673             var sound = 'info.checkin.transit';
1674             if (evt.payload.hold) sound += '.hold';
1675             egCore.audio.play(sound);
1676
1677             function print_transit(template) {
1678                 return egCore.print.print({
1679                     context : 'default', 
1680                     template : template, 
1681                     scope : print_context
1682                 });
1683             }
1684
1685             // when auto-print is on, skip the dialog and go straight
1686             // to printing.
1687             if (options.auto_print_holds_transits) 
1688                 return print_transit(template);
1689
1690             return $uibModal.open({
1691                 templateUrl: tmpl,
1692                 backdrop: 'static',
1693                 controller: [
1694                             '$scope','$uibModalInstance',
1695                     function($scope , $uibModalInstance) {
1696
1697                     $scope.today = new Date();
1698
1699                     // copy the print scope into the dialog scope
1700                     angular.forEach(print_context, function(val, key) {
1701                         $scope[key] = val;
1702                     });
1703
1704                     $scope.ok = function() {$uibModalInstance.close()}
1705
1706                     $scope.print = function() { 
1707                         $uibModalInstance.close();
1708                         print_transit(template);
1709                     }
1710                 }]
1711
1712             }).result;
1713         });
1714     }
1715
1716     // action == what action to take if the user confirms the alert
1717     service.copy_alert_dialog = function(evt, params, options, action) {
1718         if (angular.isArray(evt)) evt = evt[0];
1719         if (!angular.isArray(evt.payload)) {
1720             return egConfirmDialog.open(
1721                 egCore.strings.COPY_ALERT_MSG_DIALOG_TITLE, 
1722                 evt.payload,  // payload == alert message text
1723                 {   copy_barcode : params.copy_barcode,
1724                     ok : function() {},
1725                     cancel : function() {}
1726                 }
1727             ).result.then(function() {
1728                 options.override = true;
1729                 return service[action](params, options);
1730             });
1731         } else { // we got a list of copy alert objects ...
1732             return egCopyAlertManagerDialog.open({
1733                 alerts : evt.payload,
1734                 mode : action,
1735                 ok : function(the_next_status) {
1736                         if (the_next_status !== null) {
1737                             params.next_copy_status = [ the_next_status ];
1738                             params.capture = 'nocapture';
1739                         }
1740                      },
1741                 cancel : function() {}
1742             }).result.then(function() {
1743                 options.override = true;
1744                 return service[action](params, options);
1745             });
1746         }
1747     }
1748
1749     // action == what action to take if the user confirms the alert
1750     service.hold_capture_delay_dialog = function(evt, params, options, action) {
1751         if (angular.isArray(evt)) evt = evt[0];
1752         return $uibModal.open({
1753             templateUrl: './circ/checkin/t_hold_verify',
1754             backdrop: 'static',
1755             controller:
1756                        ['$scope','$uibModalInstance','params',
1757                 function($scope , $uibModalInstance , params) {
1758                 $scope.copy_barcode = params.copy_barcode;
1759                 $scope.capture = function() {
1760                     params.capture = 'capture';
1761                     $uibModalInstance.close();
1762                 };
1763                 $scope.nocapture = function() {
1764                     params.capture = 'nocapture';
1765                     $uibModalInstance.close();
1766                 };
1767                 $scope.cancel = function() { $uibModalInstance.dismiss(); };
1768             }],
1769             resolve : {
1770                 params : function() {
1771                     return params;
1772                 }
1773             }
1774         }).result.then(
1775             function(r) {
1776                 return service[action](params, options);
1777             }
1778         );
1779     }
1780
1781     // check the barcode.  If it's no good, show the warning dialog
1782     // Resolves on success, rejected on error
1783     service.test_barcode = function(bc) {
1784
1785         var ok = service.check_barcode(bc);
1786         if (ok) return $q.when();
1787
1788         egCore.audio.play('warning.circ.bad_barcode');
1789         return $uibModal.open({
1790             templateUrl: './circ/share/t_bad_barcode_dialog',
1791             backdrop: 'static',
1792             controller: 
1793                 ['$scope', '$uibModalInstance', 
1794                 function($scope, $uibModalInstance) {
1795                 $scope.barcode = bc;
1796                 $scope.ok = function() { $uibModalInstance.close() }
1797                 $scope.cancel = function() { $uibModalInstance.dismiss() }
1798             }]
1799         }).result;
1800     }
1801
1802     // check() and checkdigit() copied directly 
1803     // from chrome/content/util/barcode.js
1804
1805     service.check_barcode = function(bc) {
1806         if (bc != Number(bc)) return false;
1807         bc = bc.toString();
1808         // "16.00" == Number("16.00"), but the . is bad.
1809         // Throw out any barcode that isn't just digits
1810         if (bc.search(/\D/) != -1) return false;
1811         var last_digit = bc.substr(bc.length-1);
1812         var stripped_barcode = bc.substr(0,bc.length-1);
1813         return service.barcode_checkdigit(stripped_barcode).toString() == last_digit;
1814     }
1815
1816     service.barcode_checkdigit = function(bc) {
1817         var reverse_barcode = bc.toString().split('').reverse();
1818         var check_sum = 0; var multiplier = 2;
1819         for (var i = 0; i < reverse_barcode.length; i++) {
1820             var digit = reverse_barcode[i];
1821             var product = digit * multiplier; product = product.toString();
1822             var temp_sum = 0;
1823             for (var j = 0; j < product.length; j++) {
1824                 temp_sum += Number( product[j] );
1825             }
1826             check_sum += Number( temp_sum );
1827             multiplier = ( multiplier == 2 ? 1 : 2 );
1828         }
1829         check_sum = check_sum.toString();
1830         var next_multiple_of_10 = (check_sum.match(/(\d*)\d$/)[1] * 10) + 10;
1831         var check_digit = next_multiple_of_10 - Number(check_sum);
1832         if (check_digit == 10) check_digit = 0;
1833         return check_digit;
1834     }
1835
1836     service.handle_barcode_completion = function(barcode) {
1837         return egCore.net.request(
1838             'open-ils.actor',
1839             'open-ils.actor.get_barcodes',
1840             egCore.auth.token(), egCore.auth.user().ws_ou(), 
1841             'asset', barcode)
1842
1843         .then(function(resp) {
1844             // TODO: handle event during barcode lookup
1845             if (evt = egCore.evt.parse(resp)) {
1846                 console.error(evt.toString());
1847                 return $q.reject();
1848             }
1849
1850             // no matching barcodes: return the barcode as entered
1851             // by the user (so that, e.g., checkout can fall back to
1852             // precat/noncat handling)
1853             if (!resp || !resp[0]) {
1854                 return barcode;
1855             }
1856
1857             // exactly one matching barcode: return it
1858             if (resp.length == 1) {
1859                 return resp[0].barcode;
1860             }
1861
1862             // multiple matching barcodes: let the user pick one 
1863             console.debug('multiple matching barcodes');
1864             var matches = [];
1865             var promises = [];
1866             var final_barcode;
1867             angular.forEach(resp, function(cp) {
1868                 promises.push(
1869                     egCore.net.request(
1870                         'open-ils.circ',
1871                         'open-ils.circ.copy_details.retrieve',
1872                         egCore.auth.token(), cp.id
1873                     ).then(function(r) {
1874                         matches.push({
1875                             barcode: r.copy.barcode(),
1876                             title: r.mvr.title(),
1877                             org_name: egCore.org.get(r.copy.circ_lib()).name(),
1878                             org_shortname: egCore.org.get(r.copy.circ_lib()).shortname()
1879                         });
1880                     })
1881                 );
1882             });
1883             return $q.all(promises)
1884             .then(function() {
1885                 return $uibModal.open({
1886                     templateUrl: './circ/share/t_barcode_choice_dialog',
1887                     backdrop: 'static',
1888                     controller:
1889                         ['$scope', '$uibModalInstance',
1890                         function($scope, $uibModalInstance) {
1891                         $scope.matches = matches;
1892                         $scope.ok = function(barcode) {
1893                             $uibModalInstance.close();
1894                             final_barcode = barcode;
1895                         }
1896                         $scope.cancel = function() {$uibModalInstance.dismiss()}
1897                     }],
1898                 }).result.then(function() { return final_barcode });
1899             })
1900         });
1901     }
1902
1903     service.create_penalty = function(user_id) {
1904         return $uibModal.open({
1905             templateUrl: './circ/share/t_new_message_dialog',
1906             backdrop: 'static',
1907             controller: 
1908                    ['$scope','$uibModalInstance','staffPenalties',
1909             function($scope , $uibModalInstance , staffPenalties) {
1910                 $scope.focusNote = true;
1911                 $scope.penalties = staffPenalties;
1912                 $scope.require_initials = service.require_initials;
1913                 $scope.args = {penalty : 21}; // default to Note
1914                 $scope.setPenalty = function(id) {
1915                     args.penalty = id;
1916                 }
1917                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1918                 $scope.cancel = function($event) { 
1919                     $uibModalInstance.dismiss();
1920                     $event.preventDefault();
1921                 }
1922             }],
1923             resolve : { staffPenalties : service.get_staff_penalty_types }
1924         }).result.then(
1925             function(args) {
1926                 var pen = new egCore.idl.ausp();
1927                 pen.usr(user_id);
1928                 pen.org_unit(egCore.auth.user().ws_ou());
1929                 pen.note(args.note);
1930                 if (args.initials) pen.note(args.note + ' [' + args.initials + ']');
1931                 if (args.custom_penalty) {
1932                     pen.standing_penalty(args.custom_penalty);
1933                 } else {
1934                     pen.standing_penalty(args.penalty);
1935                 }
1936                 pen.staff(egCore.auth.user().id());
1937                 pen.set_date('now');
1938                 return egCore.pcrud.create(pen);
1939             }
1940         );
1941     }
1942
1943     // assumes, for now anyway,  penalty type is fleshed onto usr_penalty.
1944     service.edit_penalty = function(usr_penalty) {
1945         return $uibModal.open({
1946             templateUrl: './circ/share/t_new_message_dialog',
1947             backdrop: 'static',
1948             controller: 
1949                    ['$scope','$uibModalInstance','staffPenalties',
1950             function($scope , $uibModalInstance , staffPenalties) {
1951                 $scope.focusNote = true;
1952                 $scope.penalties = staffPenalties;
1953                 $scope.require_initials = service.require_initials;
1954                 $scope.args = {
1955                     penalty : usr_penalty.standing_penalty().id(),
1956                     note : usr_penalty.note()
1957                 }
1958                 $scope.setPenalty = function(id) { args.penalty = id; }
1959                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1960                 $scope.cancel = function($event) { 
1961                     $uibModalInstance.dismiss();
1962                     $event.preventDefault();
1963                 }
1964             }],
1965             resolve : { staffPenalties : service.get_staff_penalty_types }
1966         }).result.then(
1967             function(args) {
1968                 usr_penalty.note(args.note);
1969                 if (args.initials) usr_penalty.note(args.note + ' [' + args.initials + ']');
1970                 usr_penalty.standing_penalty(args.penalty);
1971                 return egCore.pcrud.update(usr_penalty);
1972             }
1973         );
1974     }
1975
1976     return service;
1977
1978 }]);
1979
1980