]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/services/circ.js
2807464e64a60aa59feea787f8053bb646baed38
[working/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(function(e) {
742                     return e.textcode === 'ITEM_ON_HOLDS_SHELF'
743                 });
744
745                 if ($scope.holdEvent.length > 0) {
746                     // Ensure we have a scalar here
747                     if (angular.isArray($scope.holdEvent)) {
748                         $scope.holdEvent = $scope.holdEvent[0];
749                     }
750
751                     $scope.patronName = $scope.holdEvent.payload.patron_name;
752                     $scope.holdID = $scope.holdEvent.payload.hold_id;
753                     $scope.patronID = $scope.holdEvent.payload.patron_id;
754                 }
755
756                 $scope.auto_override =
757                     evt.filter(function(e){
758                         return service.checkout_auto_override_after_first.indexOf(evt.textcode) > -1;
759                     }).length > 0;
760                 $scope.copy_barcode = params.copy_barcode; // may be null
761
762                 // Implementation note: Why not use a primitive here? It
763                 // doesn't work.  See: 
764                 // http://stackoverflow.com/questions/18642371/checkbox-not-binding-to-scope-in-angularjs
765                 $scope.formdata = {clearHold : service.clearHold};
766
767                 $scope.ok = function() { 
768                     // Handle the cancellation of the assciated hold here
769                     if ($scope.formdata.clearHold && $scope.holdID) {
770                         egCore.net.request(
771                             'open-ils.circ',
772                             'open-ils.circ.hold.cancel',
773                             egCore.auth.token(), $scope.holdID,
774                             5, // staff forced
775                             'Item checked out by other patron' // FIXME I18n
776                         );
777                     }
778                     $uibModalInstance.close();
779                 }
780
781                 $scope.cancel = function ($event) { 
782                     $uibModalInstance.dismiss();
783                     $event.preventDefault();
784                 }
785             }]
786         }).result.then(
787             function() {
788                 options.override = true;
789
790                 if (copy_alert.length > 0) {
791                     return service.copy_alert_dialog(copy_alert, params, options, action);
792                 }
793
794                 if (action == 'checkin') {
795                     return service.checkin(params, options);
796                 }
797
798                 // checkout/renew support override-after-first
799                 angular.forEach(evt, function(e){
800                     if (service.checkout_auto_override_after_first.indexOf(e.textcode) > -1)
801                         service.auto_override_checkout_events[e.textcode] = true;
802                 });
803
804                 return service[action](params, options);
805             }
806         );
807     }
808
809     service.copy_not_avail_dialog = function(evt, params, options) {
810         if (!angular.isArray(evt)) evt = [evt];
811
812         var copy_alert = evt.filter(function(e) {
813             return e.textcode == 'COPY_ALERT_MESSAGE';
814         });
815         evt = evt.filter(function(e) {
816             return e.textcode !== 'COPY_ALERT_MESSAGE';
817         });
818         evt = evt[0];
819
820         return $uibModal.open({
821             templateUrl: './circ/share/t_copy_not_avail_dialog',
822             backdrop: 'static',
823             controller: 
824                        ['$scope','$uibModalInstance','copyStatus',
825                 function($scope , $uibModalInstance , copyStatus) {
826                 $scope.copyStatus = copyStatus;
827                 $scope.ok = function() {$uibModalInstance.close()}
828                 $scope.cancel = function() {$uibModalInstance.dismiss()}
829             }],
830             resolve : {
831                 copyStatus : function() {
832                     return egCore.pcrud.retrieve(
833                         'ccs', evt.payload.status());
834                 }
835             }
836         }).result.then(
837             function() {
838                 options.override = true;
839
840                 if (copy_alert.length > 0) {
841                     return service.copy_alert_dialog(copy_alert, params, options, 'checkout');
842                 }
843
844                 return service.checkout(params, options);
845             }
846         );
847     }
848
849     // Opens a dialog allowing the user to fill in the desired non-cat count.
850     // Unlike other dialogs, which kickoff circ actions internally
851     // as a result of events, this dialog does not kick off any circ
852     // actions. It just collects the count and and resolves the promise.
853     //
854     // This assumes the caller has already handled the noncat-type
855     // selection and just needs to collect the count info.
856     service.noncat_dialog = function(params, options) {
857         var noncatMax = 99; // hard-coded max
858         
859         // the caller should presumably have fetched the noncat_types via
860         // our API already, but fetch them again (from cache) to be safe.
861         return service.get_noncat_types().then(function() {
862
863             params.noncat = true;
864             var type = egCore.env.cnct.map[params.noncat_type];
865
866             return $uibModal.open({
867                 templateUrl: './circ/share/t_noncat_dialog',
868                 backdrop: 'static',
869                 controller: 
870                     ['$scope', '$uibModalInstance',
871                     function($scope, $uibModalInstance) {
872                     $scope.focusMe = true;
873                     $scope.type = type;
874                     $scope.count = 1;
875                     $scope.noncatMax = noncatMax;
876                     $scope.ok = function(count) { $uibModalInstance.close(count) }
877                     $scope.cancel = function ($event) { 
878                         $uibModalInstance.dismiss() 
879                         $event.preventDefault();
880                     }
881                 }],
882             }).result.then(
883                 function(count) {
884                     if (count && count > 0 && count <= noncatMax) { 
885                         // NOTE: in Chrome, form validation ensure a valid number
886                         params.noncat_count = count;
887                         return $q.when(params);
888                     } else {
889                         return $q.reject();
890                     }
891                 }
892             );
893         });
894     }
895
896     // Opens a dialog allowing the user to fill in pre-cat copy info.
897     service.precat_dialog = function(params, options) {
898
899         return $uibModal.open({
900             templateUrl: './circ/share/t_precat_dialog',
901             backdrop: 'static',
902             controller: 
903                 ['$scope', '$uibModalInstance', 'circMods',
904                 function($scope, $uibModalInstance, circMods) {
905                 $scope.focusMe = true;
906                 $scope.precatArgs = {
907                     copy_barcode : params.copy_barcode
908                 };
909                 $scope.circModifiers = circMods;
910                 $scope.ok = function(args) { $uibModalInstance.close(args) }
911                 $scope.cancel = function () { $uibModalInstance.dismiss() }
912
913                 // use this function as a keydown handler on form
914                 // elements that should not submit the form on enter.
915                 $scope.preventSubmit = function($event) {
916                     if ($event.keyCode == 13)
917                         $event.preventDefault();
918                 }
919             }],
920             resolve : {
921                 circMods : function() { 
922                     return service.get_circ_mods();
923                 }
924             }
925         }).result.then(
926             function(args) {
927                 if (!args || !args.dummy_title) return $q.reject();
928                 if(args.circ_modifier == "") args.circ_modifier = null;
929                 angular.forEach(args, function(val, key) {params[key] = val});
930                 params.precat = true;
931                 return service.checkout(params, options);
932             }
933         );
934     }
935
936     // find the open transit for the given copy barcode; flesh the org
937     // units locally.
938     service.find_copy_transit = function(evt, params, options) {
939         if (angular.isArray(evt)) evt = evt[0];
940
941         // NOTE: evt.payload.transit may exist, but it's not necessarily
942         // the transit we want, since a transit close + open in the API
943         // returns the closed transit.
944
945          return egCore.pcrud.search('atc',
946             {   dest_recv_time : null, cancel_time : null},
947             {   flesh : 1, 
948                 flesh_fields : {atc : ['target_copy']},
949                 join : {
950                     acp : {
951                         filter : {
952                             barcode : params.copy_barcode,
953                             deleted : 'f'
954                         }
955                     }
956                 },
957                 limit : 1,
958                 order_by : {atc : 'source_send_time desc'}, 
959             }, {authoritative : true}
960         ).then(function(transit) {
961             transit.source(egCore.org.get(transit.source()));
962             transit.dest(egCore.org.get(transit.dest()));
963             return transit;
964         });
965     }
966
967     service.copy_in_transit_dialog = function(evt, params, options) {
968         if (angular.isArray(evt)) evt = evt[0];
969         return $uibModal.open({
970             templateUrl: './circ/share/t_copy_in_transit_dialog',
971             backdrop: 'static',
972             controller: 
973                        ['$scope','$uibModalInstance','transit',
974                 function($scope , $uibModalInstance , transit) {
975                 $scope.transit = transit;
976                 $scope.ok = function() { $uibModalInstance.close(transit) }
977                 $scope.cancel = function() { $uibModalInstance.dismiss() }
978             }],
979             resolve : {
980                 // fetch the conflicting open transit w/ fleshed copy
981                 transit : function() {
982                     return service.find_copy_transit(evt, params, options);
983                 }
984             }
985         }).result.then(
986             function(transit) {
987                 // user chose to abort the transit then checkout
988                 return service.abort_transit(transit.id())
989                 .then(function() {
990                     return service.checkout(params, options);
991                 });
992             }
993         );
994     }
995
996     service.abort_transit = function(transit_id) {
997         return egCore.net.request(
998             'open-ils.circ',
999             'open-ils.circ.transit.abort',
1000             egCore.auth.token(), {transitid : transit_id}
1001         ).then(function(resp) {
1002             if (evt = egCore.evt.parse(resp)) {
1003                 alert(evt);
1004                 return $q.reject();
1005             }
1006             return $q.when();
1007         });
1008     }
1009
1010     service.last_copy_circ = function(copy_id) {
1011         return egCore.pcrud.search('circ', 
1012             {target_copy : copy_id},
1013             {order_by : {circ : 'xact_start desc' }, limit : 1}
1014         );
1015     }
1016
1017     service.circ_exists_dialog = function(evt, params, options) {
1018         if (angular.isArray(evt)) evt = evt[0];
1019
1020         if (!evt.payload.old_circ) {
1021             return egCore.net.request(
1022                 'open-ils.search',
1023                 'open-ils.search.asset.copy.fleshed2.find_by_barcode',
1024                 params.copy_barcode
1025             ).then(function(resp){
1026                 console.log(resp);
1027                 if (egCore.evt.parse(resp)) {
1028                     console.error(egCore.evt.parse(resp));
1029                 } else {
1030                     return egCore.net.request(
1031                          'open-ils.circ',
1032                          'open-ils.circ.copy_checkout_history.retrieve',
1033                          egCore.auth.token(), resp.id(), 1
1034                     ).then( function (circs) {
1035                         evt.payload.old_circ = circs[0];
1036                         return service.circ_exists_dialog_impl( evt, params, options );
1037                     });
1038                 }
1039             });
1040         } else {
1041             return service.circ_exists_dialog_impl( evt, params, options );
1042         }
1043     },
1044
1045     service.circ_exists_dialog_impl = function (evt, params, options) {
1046
1047         var openCirc = evt.payload.old_circ;
1048         var sameUser = openCirc.usr() == params.patron_id;
1049         
1050         return $uibModal.open({
1051             templateUrl: './circ/share/t_circ_exists_dialog',
1052             backdrop: 'static',
1053             controller: 
1054                        ['$scope','$uibModalInstance',
1055                 function($scope , $uibModalInstance) {
1056                 $scope.args = {forgive_fines : false};
1057                 $scope.circDate = openCirc.xact_start();
1058                 $scope.sameUser = sameUser;
1059                 $scope.ok = function() { $uibModalInstance.close($scope.args) }
1060                 $scope.cancel = function($event) { 
1061                     $uibModalInstance.dismiss();
1062                     $event.preventDefault(); // form, avoid calling ok();
1063                 }
1064             }]
1065         }).result.then(
1066             function(args) {
1067                 if (sameUser) {
1068                     params.void_overdues = args.forgive_fines;
1069                     return service.renew(params, options);
1070                 }
1071
1072                 return service.checkin({
1073                     barcode : params.copy_barcode,
1074                     noop : true,
1075                     void_overdues : args.forgive_fines
1076                 }).then(function(checkin_resp) {
1077                     if (checkin_resp.evt[0].textcode == 'SUCCESS') {
1078                         return service.checkout(params, options);
1079                     } else {
1080                         alert(egCore.evt.parse(checkin_resp.evt[0]));
1081                         return $q.reject();
1082                     }
1083                 });
1084             }
1085         );
1086     }
1087
1088     service.batch_backdate = function(circ_ids, backdate) {
1089         return egCore.net.request(
1090             'open-ils.circ',
1091             'open-ils.circ.post_checkin_backdate.batch',
1092             egCore.auth.token(), circ_ids, backdate);
1093     }
1094
1095     service.backdate_dialog = function(circ_ids) {
1096         return $uibModal.open({
1097             templateUrl: './circ/share/t_backdate_dialog',
1098             backdrop: 'static',
1099             controller: 
1100                        ['$scope','$uibModalInstance',
1101                 function($scope , $uibModalInstance) {
1102
1103                 var today = new Date();
1104                 $scope.dialog = {
1105                     num_circs : circ_ids.length,
1106                     num_processed : 0,
1107                     backdate : today
1108                 }
1109
1110                 $scope.$watch('dialog.backdate', function(newval) {
1111                     if (newval && newval > today) 
1112                         $scope.dialog.backdate = today;
1113                 });
1114
1115
1116                 $scope.cancel = function() { 
1117                     $uibModalInstance.dismiss();
1118                 }
1119
1120                 $scope.ok = function() { 
1121
1122                     var bd = $scope.dialog.backdate.toISOString().replace(/T.*/,'');
1123                     service.batch_backdate(circ_ids, bd)
1124                     .then(
1125                         function() { // on complete
1126                             $uibModalInstance.close({backdate : bd});
1127                         },
1128                         null,
1129                         function(resp) { // on response
1130                             console.debug('backdate returned ' + resp);
1131                             if (resp == '1') {
1132                                 $scope.num_processed++;
1133                             } else {
1134                                 console.error(egCore.evt.parse(resp));
1135                             }
1136                         }
1137                     );
1138                 }
1139             }]
1140         }).result;
1141     }
1142
1143     service.mark_claims_returned = function(barcode, date, override) {
1144
1145         var method = 'open-ils.circ.circulation.set_claims_returned';
1146         if (override) method += '.override';
1147
1148         console.debug('claims returned ' + method);
1149
1150         return egCore.net.request(
1151             'open-ils.circ', method, egCore.auth.token(),
1152             {barcode : barcode, backdate : date})
1153
1154         .then(function(resp) {
1155
1156             if (resp == 1) { // success
1157                 console.debug('claims returned succeeded for ' + barcode);
1158                 return barcode;
1159
1160             } else if (evt = egCore.evt.parse(resp)) {
1161                 console.debug('claims returned failed: ' + evt.toString());
1162
1163                 if (evt.textcode == 'PATRON_EXCEEDS_CLAIMS_RETURN_COUNT') {
1164                     // TODO check perms before offering override option?
1165
1166                     if (override) return;// just to be safe
1167
1168                     return egConfirmDialog.open(
1169                         egCore.strings.TOO_MANY_CLAIMS_RETURNED, '', {}
1170                     ).result.then(function() {
1171                         return service.mark_claims_returned(barcode, date, true);
1172                     });
1173                 }
1174
1175                 if (evt.textcode == 'PERM_FAILURE') {
1176                     console.error('claims returned permission denied')
1177                     // TODO: auth override dialog?
1178                 }
1179             }
1180         });
1181     }
1182
1183     service.mark_claims_returned_dialog = function(copy_barcodes) {
1184         if (!copy_barcodes.length) return;
1185
1186         return $uibModal.open({
1187             templateUrl: './circ/share/t_mark_claims_returned_dialog',
1188             backdrop: 'static',
1189             controller: 
1190                        ['$scope','$uibModalInstance',
1191                 function($scope , $uibModalInstance) {
1192
1193                 var today = new Date();
1194                 $scope.args = {
1195                     barcodes : copy_barcodes,
1196                     date : today
1197                 };
1198
1199                 $scope.$watch('args.date', function(newval) {
1200                     if (newval && newval > today) 
1201                         $scope.args.backdate = today;
1202                 });
1203
1204                 $scope.cancel = function() {$uibModalInstance.dismiss()}
1205                 $scope.ok = function() { 
1206
1207                     var date = $scope.args.date.toISOString().replace(/T.*/,'');
1208
1209                     var deferred = $q.defer();
1210
1211                     // serialize the action on each barcode so that the 
1212                     // caller will never see multiple alerts at the same time.
1213                     function mark_one() {
1214                         var bc = copy_barcodes.pop();
1215                         if (!bc) {
1216                             deferred.resolve();
1217                             $uibModalInstance.close();
1218                             return;
1219                         }
1220
1221                         // finally -> continue even when one fails
1222                         service.mark_claims_returned(bc, date)
1223                         .finally(function(barcode) {
1224                             if (barcode) deferred.notify(barcode);
1225                             mark_one();
1226                         });
1227                     }
1228                     mark_one(); // kick it off
1229                     return deferred.promise;
1230                 }
1231             }]
1232         }).result;
1233     }
1234
1235     // serially checks in each barcode with claims_never_checked_out set
1236     // returns promise, notified on each barcode, resolved after all
1237     // checkins are complete.
1238     service.mark_claims_never_checked_out = function(barcodes) {
1239         if (!barcodes.length) return;
1240
1241         var deferred = $q.defer();
1242         egConfirmDialog.open(
1243             egCore.strings.MARK_NEVER_CHECKED_OUT, '', {barcodes : barcodes}
1244
1245         ).result.then(function() {
1246             function mark_one() {
1247                 var bc = barcodes.pop();
1248
1249                 if (!bc) { // all done
1250                     deferred.resolve();
1251                     return;
1252                 }
1253
1254                 service.checkin(
1255                     {claims_never_checked_out : true, copy_barcode : bc})
1256                 .finally(function() { 
1257                     deferred.notify(bc);
1258                     mark_one();
1259                 })
1260             }
1261             mark_one();
1262         });
1263
1264         return deferred.promise;
1265     }
1266
1267     service.mark_damaged = function(params) {
1268         if (!params) return $q.when();
1269         return $uibModal.open({
1270             templateUrl: './circ/share/t_mark_damaged',
1271             controller:
1272                 ['$scope', '$uibModalInstance', 'egCore', 'egBilling', 'egItem',
1273                 function($scope, $uibModalInstance, egCore, egBilling, egItem) {
1274                     var doRefresh = params.refresh;
1275                     
1276                     $scope.billArgs = {charge: params.charge};
1277                     $scope.mode = 'charge';
1278                     $scope.barcode = params.barcode;
1279                     if (params.charge && params.charge > 0) {
1280                         $scope.applyFine = "apply";
1281                     }
1282                     if (params.circ) {
1283                         $scope.circ = params.circ;
1284                         $scope.circ_checkin_time = params.circ.checkin_time();
1285                         $scope.circ_patron_name = params.circ.usr().family_name() + ", "
1286                             + params.circ.usr().first_given_name() + " "
1287                             + params.circ.usr().second_given_name();
1288                     }
1289                     egBilling.fetchBillingTypes().then(function(res) {
1290                         $scope.billingTypes = res;
1291                     });
1292
1293                     $scope.btnChargeFees = function() {
1294                         $scope.mode = 'charge';
1295                         $scope.billArgs.charge = params.charge;
1296                         $scope.applyFine = "apply";
1297                     }
1298                     $scope.btnWaiveFees = function() {
1299                         $scope.mode = 'waive';
1300                         $scope.billArgs.charge = 0;
1301                         $scope.applyFine = "noapply";
1302                     }
1303
1304                     $scope.cancel = function ($event) { 
1305                         $uibModalInstance.dismiss();
1306                     }
1307                     $scope.ok = function() {
1308                         handle_mark_item_damaged();
1309                     }
1310
1311                     var handle_mark_item_damaged = function() {
1312                         egCore.net.request(
1313                             'open-ils.circ',
1314                             'open-ils.circ.mark_item_damaged',
1315                             egCore.auth.token(), params.id, {
1316                                 apply_fines: $scope.applyFine,
1317                                 override_amount: $scope.billArgs.charge,
1318                                 override_btype: $scope.billArgs.type,
1319                                 override_note: $scope.billArgs.note,
1320                                 handle_checkin: !$scope.applyFine
1321                         }).then(function(resp) {
1322                             if (evt = egCore.evt.parse(resp)) {
1323                                 doRefresh = false;
1324                                 console.debug("mark damaged more information required. Pushing back.");
1325                                 service.mark_damaged({
1326                                     id: params.id,
1327                                     barcode: params.barcode,
1328                                     charge: evt.payload.charge,
1329                                     circ: evt.payload.circ,
1330                                     refresh: params.refresh
1331                                 });
1332                                 console.error('mark damaged failed: ' + evt);
1333                             }
1334                         }).then(function() {
1335                             if (doRefresh) egItem.add_barcode_to_list(params.barcode);
1336                         });
1337                         $uibModalInstance.close();
1338                     }
1339                 }]
1340         }).result;
1341     }
1342
1343     service.mark_missing = function(copy_ids) {
1344         return egConfirmDialog.open(
1345             egCore.strings.MARK_MISSING_CONFIRM, '',
1346             {   num_items : copy_ids.length,
1347                 ok : function() {},
1348                 cancel : function() {}
1349             }
1350         ).result.then(function() {
1351             var promises = [];
1352             angular.forEach(copy_ids, function(copy_id) {
1353                 promises.push(
1354                     egCore.net.request(
1355                         'open-ils.circ',
1356                         'open-ils.circ.mark_item_missing',
1357                         egCore.auth.token(), copy_id
1358                     ).then(function(resp) {
1359                         if (evt = egCore.evt.parse(resp)) {
1360                             console.error('mark missing failed: ' + evt);
1361                         }
1362                     })
1363                 );
1364             });
1365
1366             return $q.all(promises);
1367         });
1368     }
1369
1370
1371
1372     // Mark circulations as lost via copy barcode.  As each item is 
1373     // processed, the returned promise is notified of the barcode.
1374     // No confirmation dialog is presented.
1375     service.mark_lost = function(copy_barcodes) {
1376         var deferred = $q.defer();
1377         var promises = [];
1378
1379         angular.forEach(copy_barcodes, function(barcode) {
1380             promises.push(
1381                 egCore.net.request(
1382                     'open-ils.circ',
1383                     'open-ils.circ.circulation.set_lost',
1384                     egCore.auth.token(), {barcode : barcode}
1385                 ).then(function(resp) {
1386                     if (evt = egCore.evt.parse(resp)) {
1387                         console.error("Mark lost failed: " + evt.toString());
1388                         return;
1389                     }
1390                     // inform the caller as each item is processed
1391                     deferred.notify(barcode);
1392                 })
1393             );
1394         });
1395
1396         $q.all(promises).then(function() {deferred.resolve()});
1397         return deferred.promise;
1398     }
1399
1400     service.abort_transits = function(transit_ids) {
1401         return egConfirmDialog.open(
1402             egCore.strings.ABORT_TRANSIT_CONFIRM, '',
1403             {   num_transits : transit_ids.length,
1404                 ok : function() {},
1405                 cancel : function() {}
1406             }
1407
1408         ).result.then(function() {
1409             var promises = [];
1410             angular.forEach(transit_ids, function(transit_id) {
1411                 promises.push(
1412                     egCore.net.request(
1413                         'open-ils.circ',
1414                         'open-ils.circ.transit.abort',
1415                         egCore.auth.token(), {transitid : transit_id}
1416                     ).then(function(resp) {
1417                         if (evt = egCore.evt.parse(resp)) {
1418                             console.error('abort transit failed: ' + evt);
1419                         }
1420                     })
1421                 );
1422             });
1423
1424             return $q.all(promises);
1425         });
1426     }
1427
1428     service.add_copy_alerts = function(item_ids) {
1429         return egAddCopyAlertDialog.open({
1430             copy_ids : item_ids,
1431             ok : function() { },
1432             cancel : function() {}
1433         }).result.then(function() { });
1434     }
1435
1436     service.manage_copy_alerts = function(item_ids) {
1437         return egCopyAlertEditorDialog.open({
1438             copy_id : item_ids[0],
1439             ok : function() { },
1440             cancel : function() {}
1441         }).result.then(function() { });
1442     }
1443
1444     // alert when copy location alert_message is set.
1445     // This does not affect processing, it only produces a click-through
1446     service.handle_checkin_loc_alert = function(evt, params, options) {
1447         if (angular.isArray(evt)) evt = evt[0];
1448
1449         var copy = evt && evt.payload ? evt.payload.copy : null;
1450
1451         if (copy && !options.suppress_checkin_popups
1452             && copy.location().checkin_alert() == 't') {
1453
1454             return egAlertDialog.open(
1455                 egCore.strings.LOCATION_ALERT_MSG, {copy : copy}).result;
1456         }
1457
1458         return $q.when();
1459     }
1460
1461     service.handle_checkin_resp = function(evt, params, options) {
1462         if (!angular.isArray(evt)) evt = [evt];
1463
1464         var final_resp = {evt : evt, params : params, options : options};
1465
1466         var copy, hold, transit;
1467         if (evt[0].payload) {
1468             copy = evt[0].payload.copy;
1469             hold = evt[0].payload.hold;
1470             transit = evt[0].payload.transit;
1471         }
1472
1473         // track the barcode regardless of whether it's valid
1474         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
1475
1476         angular.forEach(evt, function(e){ console.debug('checkin event ' + e.textcode); });
1477
1478         if (evt.filter(function(e){return service.checkin_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
1479             return service.handle_overridable_checkin_event(evt, params, options);
1480
1481         switch (evt[0].textcode) {
1482
1483             case 'SUCCESS':
1484             case 'NO_CHANGE':
1485
1486                 switch(Number(copy.status().id())) {
1487
1488                     case 0: /* AVAILABLE */                                        
1489                     case 4: /* MISSING */                                          
1490                     case 7: /* RESHELVING */ 
1491
1492                         egCore.audio.play('success.checkin');
1493
1494                         // see if the copy location requires an alert
1495                         return service.handle_checkin_loc_alert(evt, params, options)
1496                         .then(function() {return final_resp});
1497
1498                     case 8: /* ON HOLDS SHELF */
1499                         egCore.audio.play('info.checkin.holds_shelf');
1500                         
1501                         if (hold) {
1502
1503                             if (hold.pickup_lib() == egCore.auth.user().ws_ou()) {
1504                                 // inform user if the item is on the local holds shelf
1505                             
1506                                 evt[0].route_to = egCore.strings.ROUTE_TO_HOLDS_SHELF;
1507                                 return service.route_dialog(
1508                                     './circ/share/t_hold_shelf_dialog', 
1509                                     evt[0], params, options
1510                                 ).then(function() { return final_resp });
1511
1512                             } else {
1513                                 // normally, if the hold was on the shelf at a 
1514                                 // different location, it would be put into 
1515                                 // transit, resulting in a ROUTE_ITEM event.
1516                                 egCore.audio.play('warning.checkin.wrong_shelf');
1517                                 return $q.when(final_resp);
1518                             }
1519                         } else {
1520
1521                             console.error('checkin: item on holds shelf, '
1522                                 + 'but hold info not returned from checkin');
1523                             return $q.when(final_resp);
1524                         }
1525
1526                     case 11: /* CATALOGING */
1527                         egCore.audio.play('info.checkin.cataloging');
1528                         evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1529                         return $q.when(final_resp);
1530
1531                     case 15: /* ON_RESERVATION_SHELF */
1532                         egCore.audio.play('info.checkin.reservation');
1533                         // TODO: show booking reservation dialog
1534                         return $q.when(final_resp);
1535
1536                     default:
1537                         egCore.audio.play('success.checkin');
1538                         console.debug('Unusual checkin copy status (may have been set via copy alert): '
1539                             + copy.status().id() + ' : ' + copy.status().name());
1540                         return $q.when(final_resp);
1541                 }
1542                 
1543             case 'ROUTE_ITEM':
1544                 return service.route_dialog(
1545                     './circ/share/t_transit_dialog', 
1546                     evt[0], params, options
1547                 ).then(function() { return final_resp });
1548
1549             case 'ASSET_COPY_NOT_FOUND':
1550                 egCore.audio.play('error.checkin.not_found');
1551                 return egAlertDialog.open(
1552                     egCore.strings.UNCAT_ALERT_DIALOG, params)
1553                     .result.then(function() {return final_resp});
1554
1555             case 'ITEM_NOT_CATALOGED':
1556                 egCore.audio.play('error.checkin.not_cataloged');
1557                 evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1558                 if (options.no_precat_alert) 
1559                     return $q.when(final_resp);
1560                 return egAlertDialog.open(
1561                     egCore.strings.PRECAT_CHECKIN_MSG, params)
1562                     .result.then(function() {return final_resp});
1563
1564             default:
1565                 egCore.audio.play('error.checkin.unknown');
1566                 console.warn('unhandled checkin response : ' + evt[0].textcode);
1567                 return $q.when(final_resp);
1568         }
1569     }
1570
1571     // collect transit, address, and hold info that's not already
1572     // included in responses.
1573     service.collect_route_data = function(tmpl, evt, params, options) {
1574         if (angular.isArray(evt)) evt = evt[0];
1575         var promises = [];
1576         var data = {};
1577
1578         if (evt.org && !tmpl.match(/hold_shelf/)) {
1579             promises.push(
1580                 service.get_org_addr(evt.org, 'holds_address')
1581                 .then(function(addr) { data.address = addr })
1582             );
1583         }
1584
1585         if (evt.payload.hold) {
1586             promises.push(
1587                 egCore.pcrud.retrieve('au', 
1588                     evt.payload.hold.usr(), {
1589                         flesh : 1,
1590                         flesh_fields : {'au' : ['card']}
1591                     }
1592                 ).then(function(patron) {data.patron = patron})
1593             );
1594         }
1595
1596
1597         if (!tmpl.match(/hold_shelf/)) {
1598             var courier_deferred = $q.defer();
1599             promises.push(courier_deferred.promise);
1600             promises.push(
1601                 service.find_copy_transit(evt, params, options)
1602                 .then(function(trans) {
1603                     data.transit = trans;
1604                     egCore.org.settings('lib.courier_code', trans.dest().id())
1605                     .then(function(s) {
1606                         data.dest_courier_code = s['lib.courier_code'];
1607                         courier_deferred.resolve();
1608                     });
1609                 })
1610             );
1611         }
1612
1613         return $q.all(promises).then(function() { return data });
1614     }
1615
1616     service.route_dialog = function(tmpl, evt, params, options) {
1617         if (angular.isArray(evt)) evt = evt[0];
1618
1619         return service.collect_route_data(tmpl, evt, params, options)
1620         .then(function(data) {
1621
1622             var template = data.transit ?
1623                 (data.patron ? 'hold_transit_slip' : 'transit_slip') :
1624                 'hold_shelf_slip';
1625             if (service.never_auto_print[template]) {
1626                 // do not show the dialog or print if the
1627                 // disabled automatic print attempt type list includes
1628                 // the specified template
1629                 return;
1630             }
1631
1632             // All actions flow from the print data
1633
1634             var print_context = {
1635                 copy : egCore.idl.toHash(evt.payload.copy),
1636                 title : evt.title,
1637                 author : evt.author,
1638                 call_number : egCore.idl.toHash(evt.payload.volume)
1639             };
1640
1641             var acn = print_context.call_number; // fix up pre/suffixes
1642             if (acn.prefix == -1) acn.prefix = "";
1643             if (acn.suffix == -1) acn.suffix = "";
1644
1645             if (data.transit) {
1646                 // route_dialog includes the "route to holds shelf" 
1647                 // dialog, which has no transit
1648                 print_context.transit = egCore.idl.toHash(data.transit);
1649                 print_context.dest_courier_code = data.dest_courier_code;
1650                 if (data.address) {
1651                     print_context.dest_address = egCore.idl.toHash(data.address);
1652                 }
1653                 print_context.dest_location =
1654                     egCore.idl.toHash(egCore.org.get(data.transit.dest()));
1655             }
1656
1657             if (data.patron) {
1658                 print_context.hold = egCore.idl.toHash(evt.payload.hold);
1659                 var notes = print_context.hold.notes;
1660                 if(notes.length > 0){
1661                     print_context.hold_notes = [];
1662                     angular.forEach(notes, function(n){
1663                         print_context.hold_notes.push(n);
1664                     });
1665                 }
1666                 print_context.patron = egCore.idl.toHash(data.patron);
1667             }
1668
1669             var sound = 'info.checkin.transit';
1670             if (evt.payload.hold) sound += '.hold';
1671             egCore.audio.play(sound);
1672
1673             function print_transit(template) {
1674                 return egCore.print.print({
1675                     context : 'default', 
1676                     template : template, 
1677                     scope : print_context
1678                 });
1679             }
1680
1681             // when auto-print is on, skip the dialog and go straight
1682             // to printing.
1683             if (options.auto_print_holds_transits) 
1684                 return print_transit(template);
1685
1686             return $uibModal.open({
1687                 templateUrl: tmpl,
1688                 backdrop: 'static',
1689                 controller: [
1690                             '$scope','$uibModalInstance',
1691                     function($scope , $uibModalInstance) {
1692
1693                     $scope.today = new Date();
1694
1695                     // copy the print scope into the dialog scope
1696                     angular.forEach(print_context, function(val, key) {
1697                         $scope[key] = val;
1698                     });
1699
1700                     $scope.ok = function() {$uibModalInstance.close()}
1701
1702                     $scope.print = function() { 
1703                         $uibModalInstance.close();
1704                         print_transit(template);
1705                     }
1706                 }]
1707
1708             }).result;
1709         });
1710     }
1711
1712     // action == what action to take if the user confirms the alert
1713     service.copy_alert_dialog = function(evt, params, options, action) {
1714         if (angular.isArray(evt)) evt = evt[0];
1715         if (!angular.isArray(evt.payload)) {
1716             return egConfirmDialog.open(
1717                 egCore.strings.COPY_ALERT_MSG_DIALOG_TITLE, 
1718                 evt.payload,  // payload == alert message text
1719                 {   copy_barcode : params.copy_barcode,
1720                     ok : function() {},
1721                     cancel : function() {}
1722                 }
1723             ).result.then(function() {
1724                 options.override = true;
1725                 return service[action](params, options);
1726             });
1727         } else { // we got a list of copy alert objects ...
1728             return egCopyAlertManagerDialog.open({
1729                 alerts : evt.payload,
1730                 mode : action,
1731                 ok : function(the_next_status) {
1732                         if (the_next_status !== null) {
1733                             params.next_copy_status = [ the_next_status ];
1734                             params.capture = 'nocapture';
1735                         }
1736                      },
1737                 cancel : function() {}
1738             }).result.then(function() {
1739                 options.override = true;
1740                 return service[action](params, options);
1741             });
1742         }
1743     }
1744
1745     // action == what action to take if the user confirms the alert
1746     service.hold_capture_delay_dialog = function(evt, params, options, action) {
1747         if (angular.isArray(evt)) evt = evt[0];
1748         return $uibModal.open({
1749             templateUrl: './circ/checkin/t_hold_verify',
1750             backdrop: 'static',
1751             controller:
1752                        ['$scope','$uibModalInstance','params',
1753                 function($scope , $uibModalInstance , params) {
1754                 $scope.copy_barcode = params.copy_barcode;
1755                 $scope.capture = function() {
1756                     params.capture = 'capture';
1757                     $uibModalInstance.close();
1758                 };
1759                 $scope.nocapture = function() {
1760                     params.capture = 'nocapture';
1761                     $uibModalInstance.close();
1762                 };
1763                 $scope.cancel = function() { $uibModalInstance.dismiss(); };
1764             }],
1765             resolve : {
1766                 params : function() {
1767                     return params;
1768                 }
1769             }
1770         }).result.then(
1771             function(r) {
1772                 return service[action](params, options);
1773             }
1774         );
1775     }
1776
1777     // check the barcode.  If it's no good, show the warning dialog
1778     // Resolves on success, rejected on error
1779     service.test_barcode = function(bc) {
1780
1781         var ok = service.check_barcode(bc);
1782         if (ok) return $q.when();
1783
1784         egCore.audio.play('warning.circ.bad_barcode');
1785         return $uibModal.open({
1786             templateUrl: './circ/share/t_bad_barcode_dialog',
1787             backdrop: 'static',
1788             controller: 
1789                 ['$scope', '$uibModalInstance', 
1790                 function($scope, $uibModalInstance) {
1791                 $scope.barcode = bc;
1792                 $scope.ok = function() { $uibModalInstance.close() }
1793                 $scope.cancel = function() { $uibModalInstance.dismiss() }
1794             }]
1795         }).result;
1796     }
1797
1798     // check() and checkdigit() copied directly 
1799     // from chrome/content/util/barcode.js
1800
1801     service.check_barcode = function(bc) {
1802         if (bc != Number(bc)) return false;
1803         bc = bc.toString();
1804         // "16.00" == Number("16.00"), but the . is bad.
1805         // Throw out any barcode that isn't just digits
1806         if (bc.search(/\D/) != -1) return false;
1807         var last_digit = bc.substr(bc.length-1);
1808         var stripped_barcode = bc.substr(0,bc.length-1);
1809         return service.barcode_checkdigit(stripped_barcode).toString() == last_digit;
1810     }
1811
1812     service.barcode_checkdigit = function(bc) {
1813         var reverse_barcode = bc.toString().split('').reverse();
1814         var check_sum = 0; var multiplier = 2;
1815         for (var i = 0; i < reverse_barcode.length; i++) {
1816             var digit = reverse_barcode[i];
1817             var product = digit * multiplier; product = product.toString();
1818             var temp_sum = 0;
1819             for (var j = 0; j < product.length; j++) {
1820                 temp_sum += Number( product[j] );
1821             }
1822             check_sum += Number( temp_sum );
1823             multiplier = ( multiplier == 2 ? 1 : 2 );
1824         }
1825         check_sum = check_sum.toString();
1826         var next_multiple_of_10 = (check_sum.match(/(\d*)\d$/)[1] * 10) + 10;
1827         var check_digit = next_multiple_of_10 - Number(check_sum);
1828         if (check_digit == 10) check_digit = 0;
1829         return check_digit;
1830     }
1831
1832     service.handle_barcode_completion = function(barcode) {
1833         return egCore.net.request(
1834             'open-ils.actor',
1835             'open-ils.actor.get_barcodes',
1836             egCore.auth.token(), egCore.auth.user().ws_ou(), 
1837             'asset', barcode)
1838
1839         .then(function(resp) {
1840             // TODO: handle event during barcode lookup
1841             if (evt = egCore.evt.parse(resp)) {
1842                 console.error(evt.toString());
1843                 return $q.reject();
1844             }
1845
1846             // no matching barcodes: return the barcode as entered
1847             // by the user (so that, e.g., checkout can fall back to
1848             // precat/noncat handling)
1849             if (!resp || !resp[0]) {
1850                 return barcode;
1851             }
1852
1853             // exactly one matching barcode: return it
1854             if (resp.length == 1) {
1855                 return resp[0].barcode;
1856             }
1857
1858             // multiple matching barcodes: let the user pick one 
1859             console.debug('multiple matching barcodes');
1860             var matches = [];
1861             var promises = [];
1862             var final_barcode;
1863             angular.forEach(resp, function(cp) {
1864                 promises.push(
1865                     egCore.net.request(
1866                         'open-ils.circ',
1867                         'open-ils.circ.copy_details.retrieve',
1868                         egCore.auth.token(), cp.id
1869                     ).then(function(r) {
1870                         matches.push({
1871                             barcode: r.copy.barcode(),
1872                             title: r.mvr.title(),
1873                             org_name: egCore.org.get(r.copy.circ_lib()).name(),
1874                             org_shortname: egCore.org.get(r.copy.circ_lib()).shortname()
1875                         });
1876                     })
1877                 );
1878             });
1879             return $q.all(promises)
1880             .then(function() {
1881                 return $uibModal.open({
1882                     templateUrl: './circ/share/t_barcode_choice_dialog',
1883                     backdrop: 'static',
1884                     controller:
1885                         ['$scope', '$uibModalInstance',
1886                         function($scope, $uibModalInstance) {
1887                         $scope.matches = matches;
1888                         $scope.ok = function(barcode) {
1889                             $uibModalInstance.close();
1890                             final_barcode = barcode;
1891                         }
1892                         $scope.cancel = function() {$uibModalInstance.dismiss()}
1893                     }],
1894                 }).result.then(function() { return final_barcode });
1895             })
1896         });
1897     }
1898
1899     service.create_penalty = function(user_id) {
1900         return $uibModal.open({
1901             templateUrl: './circ/share/t_new_message_dialog',
1902             backdrop: 'static',
1903             controller: 
1904                    ['$scope','$uibModalInstance','staffPenalties',
1905             function($scope , $uibModalInstance , staffPenalties) {
1906                 $scope.focusNote = true;
1907                 $scope.penalties = staffPenalties;
1908                 $scope.require_initials = service.require_initials;
1909                 $scope.args = {penalty : 21}; // default to Note
1910                 $scope.setPenalty = function(id) {
1911                     args.penalty = id;
1912                 }
1913                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1914                 $scope.cancel = function($event) { 
1915                     $uibModalInstance.dismiss();
1916                     $event.preventDefault();
1917                 }
1918             }],
1919             resolve : { staffPenalties : service.get_staff_penalty_types }
1920         }).result.then(
1921             function(args) {
1922                 var pen = new egCore.idl.ausp();
1923                 pen.usr(user_id);
1924                 pen.org_unit(egCore.auth.user().ws_ou());
1925                 pen.note(args.note);
1926                 if (args.initials) pen.note(args.note + ' [' + args.initials + ']');
1927                 if (args.custom_penalty) {
1928                     pen.standing_penalty(args.custom_penalty);
1929                 } else {
1930                     pen.standing_penalty(args.penalty);
1931                 }
1932                 pen.staff(egCore.auth.user().id());
1933                 pen.set_date('now');
1934
1935                 return egCore.net.request(
1936                     'open-ils.actor',
1937                     'open-ils.actor.user.penalty.apply',
1938                     egCore.auth.token(), pen
1939                 );
1940             }
1941         );
1942     }
1943
1944     // assumes, for now anyway,  penalty type is fleshed onto usr_penalty.
1945     service.edit_penalty = function(usr_penalty) {
1946         return $uibModal.open({
1947             templateUrl: './circ/share/t_new_message_dialog',
1948             backdrop: 'static',
1949             controller: 
1950                    ['$scope','$uibModalInstance','staffPenalties',
1951             function($scope , $uibModalInstance , staffPenalties) {
1952                 $scope.focusNote = true;
1953                 $scope.penalties = staffPenalties;
1954                 $scope.require_initials = service.require_initials;
1955                 $scope.args = {
1956                     penalty : usr_penalty.standing_penalty().id(),
1957                     note : usr_penalty.note()
1958                 }
1959                 $scope.setPenalty = function(id) { args.penalty = id; }
1960                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1961                 $scope.cancel = function($event) { 
1962                     $uibModalInstance.dismiss();
1963                     $event.preventDefault();
1964                 }
1965             }],
1966             resolve : { staffPenalties : service.get_staff_penalty_types }
1967         }).result.then(
1968             function(args) {
1969                 usr_penalty.note(args.note);
1970                 if (args.initials) usr_penalty.note(args.note + ' [' + args.initials + ']');
1971                 usr_penalty.standing_penalty(args.penalty);
1972                 return egCore.pcrud.update(usr_penalty);
1973             }
1974         );
1975     }
1976
1977     return service;
1978
1979 }]);
1980
1981