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