]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/services/circ.js
LP#1522635 Webstaff lost (etc.) checkout completes
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / services / circ.js
1 /**
2  * Checkin, checkout, and renew
3  */
4
5 angular.module('egCoreMod')
6
7 .factory('egCirc',
8        ['$uibModal','$q','egCore','egAlertDialog','egConfirmDialog',
9         'egWorkLog',
10 function($uibModal , $q , egCore , egAlertDialog , egConfirmDialog,
11          egWorkLog) {
12
13     var service = {
14         // auto-override these events after the first override
15         auto_override_checkout_events : {},
16         require_initials : false
17     };
18
19     egCore.startup.go().finally(function() {
20         egCore.org.settings([
21             'ui.staff.require_initials.patron_standing_penalty',
22             'ui.admin.work_log.max_entries',
23             'ui.admin.patron_log.max_entries'
24         ]).then(function(set) {
25             service.require_initials = Boolean(set['ui.staff.require_initials.patron_standing_penalty']);
26         });
27     });
28
29     service.reset = function() {
30         service.auto_override_checkout_events = {};
31     }
32
33     // these events can be overridden by staff during checkout
34     service.checkout_overridable_events = [
35         'PATRON_EXCEEDS_OVERDUE_COUNT',
36         'PATRON_EXCEEDS_CHECKOUT_COUNT',
37         'PATRON_EXCEEDS_FINES',
38         'PATRON_BARRED',
39         'CIRC_EXCEEDS_COPY_RANGE',
40         'ITEM_DEPOSIT_REQUIRED',
41         'ITEM_RENTAL_FEE_REQUIRED',
42         'PATRON_EXCEEDS_LOST_COUNT',
43         'COPY_CIRC_NOT_ALLOWED',
44         'COPY_NOT_AVAILABLE',
45         'COPY_IS_REFERENCE',
46         'COPY_ALERT_MESSAGE',
47         'ITEM_ON_HOLDS_SHELF'                 
48     ]
49
50     // after the first override of any of these events, 
51     // auto-override them in subsequent calls.
52     service.checkout_auto_override_after_first = [
53         'PATRON_EXCEEDS_OVERDUE_COUNT',
54         'PATRON_BARRED',
55         'PATRON_EXCEEDS_LOST_COUNT',
56         'PATRON_EXCEEDS_CHECKOUT_COUNT',
57         'PATRON_EXCEEDS_FINES'
58     ]
59
60
61     // overridable during renewal
62     service.renew_overridable_events = [
63         'PATRON_EXCEEDS_OVERDUE_COUNT',
64         'PATRON_EXCEEDS_LOST_COUNT',
65         'PATRON_EXCEEDS_CHECKOUT_COUNT',
66         'PATRON_EXCEEDS_FINES',
67         'CIRC_EXCEEDS_COPY_RANGE',
68         'ITEM_DEPOSIT_REQUIRED',
69         'ITEM_RENTAL_FEE_REQUIRED',
70         'ITEM_DEPOSIT_PAID',
71         'COPY_CIRC_NOT_ALLOWED',
72         'COPY_IS_REFERENCE',
73         'COPY_ALERT_MESSAGE',
74         'COPY_NEEDED_FOR_HOLD',
75         'MAX_RENEWALS_REACHED',
76         'CIRC_CLAIMS_RETURNED'
77     ];
78
79     // these checkin events do not produce alerts when 
80     // options.suppress_alerts is in effect.
81     service.checkin_suppress_overrides = [
82         'COPY_BAD_STATUS',
83         'PATRON_BARRED',
84         'PATRON_INACTIVE',
85         'PATRON_ACCOUNT_EXPIRED',
86         'ITEM_DEPOSIT_PAID',
87         'CIRC_CLAIMS_RETURNED',
88         'COPY_ALERT_MESSAGE',
89         'COPY_STATUS_LOST',
90         'COPY_STATUS_LONG_OVERDUE',
91         'COPY_STATUS_MISSING',
92         'PATRON_EXCEEDS_FINES'
93     ]
94
95     // these events can be overridden by staff during checkin
96     service.checkin_overridable_events = 
97         service.checkin_suppress_overrides.concat([
98         'TRANSIT_CHECKIN_INTERVAL_BLOCK'
99     ])
100
101     // Performs a checkout.
102     // Returns a promise resolved with the original params and options
103     // and the final checkout event (e.g. in the case of override).
104     // Rejected if the checkout cannot be completed.
105     //
106     // params : passed directly as arguments to the server API 
107     // options : non-parameter controls.  e.g. "override", "check_barcode"
108     service.checkout = function(params, options) {
109         if (!options) options = {};
110
111         console.debug('egCirc.checkout() : ' 
112             + js2JSON(params) + ' : ' + js2JSON(options));
113
114         var promise = options.check_barcode ? 
115             service.test_barcode(params.copy_barcode) : $q.when();
116
117         // avoid re-check on override, etc.
118         delete options.check_barcode;
119
120         return promise.then(function() {
121
122             var method = 'open-ils.circ.checkout.full';
123             if (options.override) method += '.override';
124
125             return egCore.net.request(
126                 'open-ils.circ', method, egCore.auth.token(), params
127
128             ).then(function(evt) {
129
130                 if (!angular.isArray(evt)) evt = [evt];
131
132                 return service.flesh_response_data('checkout', evt, params, options)
133                 .then(function() {
134                     return service.handle_checkout_resp(evt, params, options);
135                 })
136                 .then(function(final_resp) {
137                     return service.munge_resp_data(final_resp,'checkout',method)
138                 })
139             });
140         });
141     }
142
143     // Performs a renewal.
144     // Returns a promise resolved with the original params and options
145     // and the final checkout event (e.g. in the case of override)
146     // Rejected if the renewal cannot be completed.
147     service.renew = function(params, options) {
148         if (!options) options = {};
149
150         console.debug('egCirc.renew() : ' 
151             + js2JSON(params) + ' : ' + js2JSON(options));
152
153         var promise = options.check_barcode ? 
154             service.test_barcode(params.copy_barcode) : $q.when();
155
156         // avoid re-check on override, etc.
157         delete options.check_barcode;
158
159         return promise.then(function() {
160
161             var method = 'open-ils.circ.renew';
162             if (options.override) method += '.override';
163
164             return egCore.net.request(
165                 'open-ils.circ', method, egCore.auth.token(), params
166
167             ).then(function(evt) {
168
169                 if (!angular.isArray(evt)) evt = [evt];
170
171                 return service.flesh_response_data(
172                     'renew', evt, params, options)
173                 .then(function() {
174                     return service.handle_renew_resp(evt, params, options);
175                 })
176                 .then(function(final_resp) {
177                     return service.munge_resp_data(final_resp,'renew',method)
178                 })
179             });
180         });
181     }
182
183     // Performs a checkin
184     // Returns a promise resolved with the original params and options,
185     // plus the final checkin event (e.g. in the case of override).
186     // Rejected if the checkin cannot be completed.
187     service.checkin = function(params, options) {
188         if (!options) options = {};
189
190         console.debug('egCirc.checkin() : ' 
191             + js2JSON(params) + ' : ' + js2JSON(options));
192
193         var promise = options.check_barcode ? 
194             service.test_barcode(params.copy_barcode) : $q.when();
195
196         // avoid re-check on override, etc.
197         delete options.check_barcode;
198
199         return promise.then(function() {
200
201             var method = 'open-ils.circ.checkin';
202             if (options.override) method += '.override';
203
204             return egCore.net.request(
205                 'open-ils.circ', method, egCore.auth.token(), params
206
207             ).then(function(evt) {
208
209                 if (!angular.isArray(evt)) evt = [evt];
210                 return service.flesh_response_data(
211                     'checkin', evt, params, options)
212                 .then(function() {
213                     return service.handle_checkin_resp(evt, params, options);
214                 })
215                 .then(function(final_resp) {
216                     return service.munge_resp_data(final_resp,'checkin',method)
217                 })
218             });
219         });
220     }
221
222     // provide consistent formatting of the final response data
223     service.munge_resp_data = function(final_resp,worklog_action,worklog_method) {
224         var data = final_resp.data = {};
225
226         if (!final_resp.evt[0]) return;
227
228         var payload = final_resp.evt[0].payload;
229         if (!payload) return;
230
231         data.circ = payload.circ;
232         data.parent_circ = payload.parent_circ;
233         data.hold = payload.hold;
234         data.record = payload.record;
235         data.acp = payload.copy;
236         data.acn = payload.volume ?  payload.volume : payload.copy ? payload.copy.call_number() : null;
237         data.au = payload.patron;
238         data.transit = payload.transit;
239         data.status = payload.status;
240         data.message = payload.message;
241         data.title = final_resp.evt[0].title;
242         data.author = final_resp.evt[0].author;
243         data.isbn = final_resp.evt[0].isbn;
244         data.route_to = final_resp.evt[0].route_to;
245
246         // for checkin, the mbts lives on the main circ
247         if (payload.circ && payload.circ.billable_transaction())
248             data.mbts = payload.circ.billable_transaction().summary();
249
250         // on renewals, the mbts lives on the parent circ
251         if (payload.parent_circ && payload.parent_circ.billable_transaction())
252             data.mbts = payload.parent_circ.billable_transaction().summary();
253
254         if (!data.route_to) {
255             if (data.transit) {
256                 data.route_to = data.transit.dest().shortname();
257             } else if (data.acp) {
258                 data.route_to = data.acp.location().name();
259             }
260         }
261
262         egWorkLog.record(
263             worklog_action == 'checkout'
264             ? egCore.strings.EG_WORK_LOG_CHECKOUT
265             : (worklog_action == 'renew'
266                 ? egCore.strings.EG_WORK_LOG_RENEW
267                 : egCore.strings.EG_WORK_LOG_CHECKIN // worklog_action == 'checkin'
268             ),{
269                 'action' : worklog_action,
270                 'method' : worklog_method,
271                 'response' : final_resp
272             }
273         );
274
275         return final_resp;
276     }
277
278     service.handle_overridable_checkout_event = function(evt, params, options) {
279
280         if (options.override) {
281             // override attempt already made and failed.
282             // NOTE: I don't think we'll ever get here, since the
283             // override attempt should produce a perm failure...
284             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
285             return $q.reject();
286
287         } 
288
289         if (evt.filter(function(e){return !service.auto_override_checkout_events[e.textcode];}).length == 0) {
290             // user has already opted to override these type
291             // of events.  Re-run the checkout w/ override.
292             options.override = true;
293             return service.checkout(params, options);
294         } 
295
296         // Ask the user if they would like to override this event.
297         // Some events offer a stock override dialog, while others
298         // require additional context.
299
300         switch(evt[0].textcode) {
301             case 'COPY_NOT_AVAILABLE':
302                 return service.copy_not_avail_dialog(evt[0], params, options);
303             case 'COPY_ALERT_MESSAGE':
304                 return service.copy_alert_dialog(evt[0], params, options, 'checkout');
305             default: 
306                 return service.override_dialog(evt, params, options, 'checkout');
307         }
308     }
309
310     service.handle_overridable_renew_event = function(evt, params, options) {
311
312         if (options.override) {
313             // override attempt already made and failed.
314             // NOTE: I don't think we'll ever get here, since the
315             // override attempt should produce a perm failure...
316             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
317             return $q.reject();
318
319         } 
320
321         // renewal auto-overrides are the same as checkout
322         if (evt.filter(function(e){return !service.auto_override_checkout_events[e.textcode];}).length == 0) {
323             // user has already opted to override these type
324             // of events.  Re-run the renew w/ override.
325             options.override = true;
326             return service.renew(params, options);
327         } 
328
329         // Ask the user if they would like to override this event.
330         // Some events offer a stock override dialog, while others
331         // require additional context.
332
333         switch(evt[0].textcode) {
334             case 'COPY_ALERT_MESSAGE':
335                 return service.copy_alert_dialog(evt[0], params, options, 'renew');
336             default: 
337                 return service.override_dialog(evt, params, options, 'renew');
338         }
339     }
340
341
342     service.handle_overridable_checkin_event = function(evt, params, options) {
343
344         if (options.override) {
345             // override attempt already made and failed.
346             // NOTE: I don't think we'll ever get here, since the
347             // override attempt should produce a perm failure...
348             angular.forEach(evt, function(e){ console.debug('override failed: ' + e.textcode); });
349             return $q.reject();
350
351         } 
352
353         if (options.suppress_checkin_popups
354             && evt.filter(function(e){return service.checkin_suppress_overrides.indexOf(e.textcode) == -1;}).length == 0) {
355             // Events are suppressed.  Re-run the checkin w/ override.
356             options.override = true;
357             return service.checkin(params, options);
358         } 
359
360         // Ask the user if they would like to override this event.
361         // Some events offer a stock override dialog, while others
362         // require additional context.
363
364         switch(evt[0].textcode) {
365             case 'COPY_ALERT_MESSAGE':
366                 return service.copy_alert_dialog(evt[0], params, options, 'checkin');
367             default: 
368                 return service.override_dialog(evt, params, options, 'checkin');
369         }
370     }
371
372
373     service.handle_renew_resp = function(evt, params, options) {
374
375         var final_resp = {evt : evt, params : params, options : options};
376
377         // track the barcode regardless of whether it refers to a copy
378         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
379
380         // Overridable Events
381         if (evt.filter(function(e){return service.renew_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
382             return service.handle_overridable_renew_event(evt, params, options);
383
384         // Other events
385         switch (evt[0].textcode) {
386             case 'SUCCESS':
387                 egCore.audio.play('success.renew');
388                 return $q.when(final_resp);
389
390             case 'COPY_IN_TRANSIT':
391             case 'PATRON_CARD_INACTIVE':
392             case 'PATRON_INACTIVE':
393             case 'PATRON_ACCOUNT_EXPIRED':
394             case 'CIRC_CLAIMS_RETURNED':
395                 egCore.audio.play('warning.renew');
396                 return service.exit_alert(
397                     egCore.strings[evt[0].textcode],
398                     {barcode : params.copy_barcode}
399                 );
400
401             case 'PERM_FAILURE':
402                 egCore.audio.play('warning.renew.permission');
403                 return service.exit_alert(
404                     egCore.strings[evt[0].textcode],
405                     {permission : evt[0].ilsperm}
406                 );
407
408             default:
409                 egCore.audio.play('warning.renew.unknown');
410                 return service.exit_alert(
411                     egCore.strings.CHECKOUT_FAILED_GENERIC, {
412                         barcode : params.copy_barcode,
413                         textcode : evt[0].textcode,
414                         desc : evt[0].desc
415                     }
416                 );
417         }
418     }
419
420
421     service.handle_checkout_resp = function(evt, params, options) {
422
423         var final_resp = {evt : evt, params : params, options : options};
424
425         // track the barcode regardless of whether it refers to a copy
426         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
427
428         // Overridable Events
429         if (evt.filter(function(e){return service.checkout_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
430             return service.handle_overridable_checkout_event(evt, params, options);
431
432         // Other events
433         switch (evt[0].textcode) {
434             case 'SUCCESS':
435                 return $q.when(final_resp);
436
437             case 'ITEM_NOT_CATALOGED':
438                 egCore.audio.play('warning.checkout.no_cataloged');
439                 return service.precat_dialog(params, options);
440
441             case 'OPEN_CIRCULATION_EXISTS':
442                 return service.circ_exists_dialog(evt, params, options);
443
444             case 'COPY_IN_TRANSIT':
445                 return service.copy_in_transit_dialog(evt, params, options);
446
447             case 'PATRON_CARD_INACTIVE':
448             case 'PATRON_INACTIVE':
449             case 'PATRON_ACCOUNT_EXPIRED':
450             case 'CIRC_CLAIMS_RETURNED':
451                 return service.exit_alert(
452                     egCore.strings[evt[0].textcode],
453                     {barcode : params.copy_barcode}
454                 );
455
456             case 'PERM_FAILURE':
457                 return service.exit_alert(
458                     egCore.strings[evt[0].textcode],
459                     {permission : evt[0].ilsperm}
460                 );
461
462             default:
463                 return service.exit_alert(
464                     egCore.strings.CHECKOUT_FAILED_GENERIC, {
465                         barcode : params.copy_barcode,
466                         textcode : evt[0].textcode,
467                         desc : evt[0].desc
468                     }
469                 );
470         }
471     }
472
473     // returns a promise resolved with the list of circ mods
474     service.get_circ_mods = function() {
475         if (egCore.env.ccm) 
476             return $q.when(egCore.env.ccm.list);
477
478         return egCore.pcrud.retrieveAll('ccm', null, {atomic : true})
479         .then(function(list) { 
480             egCore.env.absorbList(list, 'ccm');
481             return list;
482         });
483     };
484
485     // returns a promise resolved with the list of noncat types
486     service.get_noncat_types = function() {
487         if (egCore.env.cnct) 
488             return $q.when(egCore.env.cnct.list);
489
490         return egCore.pcrud.search('cnct', 
491             {owning_lib : 
492                 egCore.org.fullPath(egCore.auth.user().ws_ou(), true)}, 
493             null, {atomic : true}
494         ).then(function(list) { 
495             egCore.env.absorbList(list, 'cnct');
496             return list;
497         });
498     }
499
500     service.get_staff_penalty_types = function() {
501         if (egCore.env.csp) 
502             return $q.when(egCore.env.csp.list);
503         return egCore.pcrud.search(
504             // id <= 100 are reserved for system use
505             'csp', {id : {'>': 100}}, {}, {atomic : true})
506         .then(function(penalties) {
507             return egCore.env.absorbList(penalties, 'csp').list;
508         });
509     }
510
511     // ideally all of these data should be returned with the response,
512     // but until then, grab what we need.
513     service.flesh_response_data = function(action, evt, params, options) {
514         var promises = [];
515         var payload;
516         if (!evt[0] || !(payload = evt[0].payload)) return $q.when();
517
518         promises.push(service.flesh_copy_location(payload.copy));
519         if (payload.copy) {
520             promises.push(
521                 service.flesh_copy_status(payload.copy)
522
523                 .then(function() {
524                     // copy is in transit, but no transit was delivered
525                     // in the payload.  Do this here instead of below to
526                     // ensure consistent copy status fleshiness
527                     if (!payload.transit && payload.copy.status().id() == 6) { // in-transit
528                         return service.find_copy_transit(evt, params, options)
529                         .then(function(trans) {
530                             if (trans) {
531                                 trans.source(egCore.org.get(trans.source()));
532                                 trans.dest(egCore.org.get(trans.dest()));
533                                 payload.transit = trans;
534                             }
535                         })
536                     }
537                 })
538             );
539         }
540
541         // local flesh transit
542         if (transit = payload.transit) {
543             transit.source(egCore.org.get(transit.source()));
544             transit.dest(egCore.org.get(transit.dest()));
545         } 
546
547         // TODO: renewal responses should include the patron
548         if (!payload.patron && payload.circ) {
549             promises.push(
550                 egCore.pcrud.retrieve('au', payload.circ.usr())
551                 .then(function(user) {payload.patron = user})
552             );
553         }
554
555         // extract precat values
556         angular.forEach(evt, function(e){ e.title = payload.record ? payload.record.title() : 
557             (payload.copy ? payload.copy.dummy_title() : null);});
558
559         angular.forEach(evt, function(e){ e.author = payload.record ? payload.record.author() : 
560             (payload.copy ? payload.copy.dummy_author() : null);});
561
562         angular.forEach(evt, function(e){ e.isbn = payload.record ? payload.record.isbn() : 
563             (payload.copy ? payload.copy.dummy_isbn() : null);});
564
565         return $q.all(promises);
566     }
567
568     // fetches the full list of copy statuses
569     service.flesh_copy_status = function(copy) {
570         if (!copy) return $q.when();
571         if (egCore.env.ccs) 
572             return $q.when(copy.status(egCore.env.ccs.map[copy.status()]));
573         return egCore.pcrud.retrieveAll('ccs', {}, {atomic : true}).then(
574             function(list) {
575                 egCore.env.absorbList(list, 'ccs');
576                 copy.status(egCore.env.ccs.map[copy.status()]);
577             }
578         );
579     }
580
581     // there may be *many* copy locations and we may be handling items
582     // for other locations.  Fetch copy locations as-needed and cache.
583     service.flesh_copy_location = function(copy) {
584         if (!copy) return $q.when();
585         if (angular.isObject(copy.location())) return $q.when(copy);
586         if (egCore.env.acpl) {
587             if (egCore.env.acpl.map[copy.location()]) {
588                 copy.location(egCore.env.acpl.map[copy.location()]);
589                 return $q.when(copy);
590             }
591         } 
592         return egCore.pcrud.retrieve('acpl', copy.location())
593         .then(function(loc) {
594             egCore.env.absorbList([loc], 'acpl'); // append to cache
595             copy.location(loc);
596             return copy;
597         });
598     }
599
600
601     // fetch org unit addresses as needed.
602     service.get_org_addr = function(org_id, addr_type) {
603         var org = egCore.org.get(org_id);
604         var addr_id = org[addr_type]();
605
606         if (egCore.env.aoa && egCore.env.aoa.map[addr_id]) 
607             return $q.when(egCore.env.aoa.map[addr_id]); 
608
609         return egCore.pcrud.retrieve('aoa', addr_id).then(function(addr) {
610             egCore.env.absorbList([addr], 'aoa');
611             return egCore.env.aoa.map[addr_id]; 
612         });
613     }
614
615     service.exit_alert = function(msg, scope) {
616         return egAlertDialog.open(msg, scope).result.then(
617             function() {return $q.reject()});
618     }
619
620     // opens a dialog asking the user if they would like to override
621     // the returned event.
622     service.override_dialog = function(evt, params, options, action) {
623         if (!angular.isArray(evt)) evt = [evt];
624         return $uibModal.open({
625             templateUrl: './circ/share/t_event_override_dialog',
626             controller: 
627                 ['$scope', '$uibModalInstance', 
628                 function($scope, $uibModalInstance) {
629                 $scope.events = evt;
630                 $scope.auto_override =
631                     evt.filter(function(e){
632                         return service.checkout_auto_override_after_first.indexOf(evt.textcode) > -1;
633                     }).length > 0;
634                 $scope.copy_barcode = params.copy_barcode; // may be null
635                 $scope.ok = function() { $uibModalInstance.close() }
636                 $scope.cancel = function ($event) { 
637                     $uibModalInstance.dismiss();
638                     $event.preventDefault();
639                 }
640             }]
641         }).result.then(
642             function() {
643                 options.override = true;
644
645                 if (action == 'checkin') {
646                     return service.checkin(params, options);
647                 }
648
649                 // checkout/renew support override-after-first
650                 angular.forEach(evt, function(e){
651                     if (service.checkout_auto_override_after_first.indexOf(e.textcode) > -1)
652                         service.auto_override_checkout_events[e.textcode] = true;
653                 });
654
655                 return service[action](params, options);
656             }
657         );
658     }
659
660     service.copy_not_avail_dialog = function(evt, params, options) {
661         if (angular.isArray(evt)) evt = evt[0];
662         return $uibModal.open({
663             templateUrl: './circ/share/t_copy_not_avail_dialog',
664             controller: 
665                        ['$scope','$uibModalInstance','copyStatus',
666                 function($scope , $uibModalInstance , copyStatus) {
667                 $scope.copyStatus = copyStatus;
668                 $scope.ok = function() {$uibModalInstance.close()}
669                 $scope.cancel = function() {$uibModalInstance.dismiss()}
670             }],
671             resolve : {
672                 copyStatus : function() {
673                     return egCore.pcrud.retrieve(
674                         'ccs', evt.payload.status());
675                 }
676             }
677         }).result.then(
678             function() {
679                 options.override = true;
680                 return service.checkout(params, options);
681             }
682         );
683     }
684
685     // Opens a dialog allowing the user to fill in the desired non-cat count.
686     // Unlike other dialogs, which kickoff circ actions internally
687     // as a result of events, this dialog does not kick off any circ
688     // actions. It just collects the count and and resolves the promise.
689     //
690     // This assumes the caller has already handled the noncat-type
691     // selection and just needs to collect the count info.
692     service.noncat_dialog = function(params, options) {
693         var noncatMax = 99; // hard-coded max
694         
695         // the caller should presumably have fetched the noncat_types via
696         // our API already, but fetch them again (from cache) to be safe.
697         return service.get_noncat_types().then(function() {
698
699             params.noncat = true;
700             var type = egCore.env.cnct.map[params.noncat_type];
701
702             return $uibModal.open({
703                 templateUrl: './circ/share/t_noncat_dialog',
704                 controller: 
705                     ['$scope', '$uibModalInstance',
706                     function($scope, $uibModalInstance) {
707                     $scope.focusMe = true;
708                     $scope.type = type;
709                     $scope.count = 1;
710                     $scope.noncatMax = noncatMax;
711                     $scope.ok = function(count) { $uibModalInstance.close(count) }
712                     $scope.cancel = function ($event) { 
713                         $uibModalInstance.dismiss() 
714                         $event.preventDefault();
715                     }
716                 }],
717             }).result.then(
718                 function(count) {
719                     if (count && count > 0 && count <= noncatMax) { 
720                         // NOTE: in Chrome, form validation ensure a valid number
721                         params.noncat_count = count;
722                         return $q.when(params);
723                     } else {
724                         return $q.reject();
725                     }
726                 }
727             );
728         });
729     }
730
731     // Opens a dialog allowing the user to fill in pre-cat copy info.
732     service.precat_dialog = function(params, options) {
733
734         return $uibModal.open({
735             templateUrl: './circ/share/t_precat_dialog',
736             controller: 
737                 ['$scope', '$uibModalInstance', 'circMods',
738                 function($scope, $uibModalInstance, circMods) {
739                 $scope.focusMe = true;
740                 $scope.precatArgs = {
741                     copy_barcode : params.copy_barcode,
742                     circ_modifier : circMods.length ? circMods[0].code() : null
743                 };
744                 $scope.circModifiers = circMods;
745                 $scope.ok = function(args) { $uibModalInstance.close(args) }
746                 $scope.cancel = function () { $uibModalInstance.dismiss() }
747             }],
748             resolve : {
749                 circMods : function() { 
750                     return service.get_circ_mods();
751                 }
752             }
753         }).result.then(
754             function(args) {
755                 if (!args || !args.dummy_title) return $q.reject();
756                 angular.forEach(args, function(val, key) {params[key] = val});
757                 params.precat = true;
758                 return service.checkout(params, options);
759             }
760         );
761     }
762
763     // find the open transit for the given copy barcode; flesh the org
764     // units locally.
765     service.find_copy_transit = function(evt, params, options) {
766         if (angular.isArray(evt)) evt = evt[0];
767
768         if (evt && evt.payload && evt.payload.transit)
769             return $q.when(evt.payload.transit);
770
771          return egCore.pcrud.search('atc',
772             {   dest_recv_time : null},
773             {   flesh : 1, 
774                 flesh_fields : {atc : ['target_copy']},
775                 join : {
776                     acp : {
777                         filter : {
778                             barcode : params.copy_barcode,
779                             deleted : 'f'
780                         }
781                     }
782                 },
783                 limit : 1,
784                 order_by : {atc : 'source_send_time desc'}, 
785             }
786         ).then(function(transit) {
787             transit.source(egCore.org.get(transit.source()));
788             transit.dest(egCore.org.get(transit.dest()));
789             return transit;
790         });
791     }
792
793     service.copy_in_transit_dialog = function(evt, params, options) {
794         if (angular.isArray(evt)) evt = evt[0];
795         return $uibModal.open({
796             templateUrl: './circ/share/t_copy_in_transit_dialog',
797             controller: 
798                        ['$scope','$uibModalInstance','transit',
799                 function($scope , $uibModalInstance , transit) {
800                 $scope.transit = transit;
801                 $scope.ok = function() { $uibModalInstance.close(transit) }
802                 $scope.cancel = function() { $uibModalInstance.dismiss() }
803             }],
804             resolve : {
805                 // fetch the conflicting open transit w/ fleshed copy
806                 transit : function() {
807                     return service.find_copy_transit(evt, params, options);
808                 }
809             }
810         }).result.then(
811             function(transit) {
812                 // user chose to abort the transit then checkout
813                 return service.abort_transit(transit.id())
814                 .then(function() {
815                     return service.checkout(params, options);
816                 });
817             }
818         );
819     }
820
821     service.abort_transit = function(transit_id) {
822         return egCore.net.request(
823             'open-ils.circ',
824             'open-ils.circ.transit.abort',
825             egCore.auth.token(), {transitid : transit_id}
826         ).then(function(resp) {
827             if (evt = egCore.evt.parse(resp)) {
828                 alert(evt);
829                 return $q.reject();
830             }
831             return $q.when();
832         });
833     }
834
835     service.last_copy_circ = function(copy_id) {
836         return egCore.pcrud.search('circ', 
837             {target_copy : copy_id},
838             {order_by : {circ : 'xact_start desc' }, limit : 1}
839         );
840     }
841
842     service.circ_exists_dialog = function(evt, params, options) {
843         if (angular.isArray(evt)) evt = evt[0];
844
845         if (!evt.payload.old_circ) {
846             return egCore.pcrud.search('circ',
847                 {target_copy : evt.payload.copy.id(), checkin_time : null},
848                 {limit : 1} // should only ever be 1
849             ).then(function(old_circ) {
850                 evt.payload.old_circ = old_circ;
851                return service.circ_exists_dialog_impl(evt, params, options);
852             });
853         } else {
854             return service.circ_exists_dialog_impl( evt, params, options );
855         }
856     },
857
858     service.circ_exists_dialog_impl = function (evt, params, options) {
859
860         var openCirc = evt.payload.old_circ;
861         var sameUser = openCirc.usr() == params.patron_id;
862         
863         return $uibModal.open({
864             templateUrl: './circ/share/t_circ_exists_dialog',
865             controller: 
866                        ['$scope','$uibModalInstance',
867                 function($scope , $uibModalInstance) {
868                 $scope.args = {forgive_fines : false};
869                 $scope.circDate = openCirc.xact_start();
870                 $scope.sameUser = sameUser;
871                 $scope.ok = function() { $uibModalInstance.close($scope.args) }
872                 $scope.cancel = function($event) { 
873                     $uibModalInstance.dismiss();
874                     $event.preventDefault(); // form, avoid calling ok();
875                 }
876             }]
877         }).result.then(
878             function(args) {
879                 if (sameUser) {
880                     params.void_overdues = args.forgive_fines;
881                     options.override = true;
882                     return service.renew(params, options);
883                 }
884
885                 return service.checkin({
886                     barcode : params.copy_barcode,
887                     noop : true,
888                     override : true,
889                     void_overdues : args.forgive_fines
890                 }).then(function(checkin_resp) {
891                     if (checkin_resp.evt[0].textcode == 'SUCCESS') {
892                         return service.checkout(params, options);
893                     } else {
894                         alert(egCore.evt.parse(checkin_resp.evt[0]));
895                         return $q.reject();
896                     }
897                 });
898             }
899         );
900     }
901
902     service.batch_backdate = function(circ_ids, backdate) {
903         return egCore.net.request(
904             'open-ils.circ',
905             'open-ils.circ.post_checkin_backdate.batch',
906             egCore.auth.token(), circ_ids, backdate);
907     }
908
909     service.backdate_dialog = function(circ_ids) {
910         return $uibModal.open({
911             templateUrl: './circ/share/t_backdate_dialog',
912             controller: 
913                        ['$scope','$uibModalInstance',
914                 function($scope , $uibModalInstance) {
915
916                 var today = new Date();
917                 $scope.dialog = {
918                     num_circs : circ_ids.length,
919                     num_processed : 0,
920                     backdate : today
921                 }
922
923                 $scope.$watch('dialog.backdate', function(newval) {
924                     if (newval && newval > today) 
925                         $scope.dialog.backdate = today;
926                 });
927
928
929                 $scope.cancel = function() { 
930                     $uibModalInstance.dismiss();
931                 }
932
933                 $scope.ok = function() { 
934
935                     var bd = $scope.dialog.backdate.toISOString().replace(/T.*/,'');
936                     service.batch_backdate(circ_ids, bd)
937                     .then(
938                         function() { // on complete
939                             $uibModalInstance.close({backdate : bd});
940                         },
941                         null,
942                         function(resp) { // on response
943                             console.debug('backdate returned ' + resp);
944                             if (resp == '1') {
945                                 $scope.num_processed++;
946                             } else {
947                                 console.error(egCore.evt.parse(resp));
948                             }
949                         }
950                     );
951                 }
952             }]
953         }).result;
954     }
955
956     service.mark_claims_returned = function(barcode, date, override) {
957
958         var method = 'open-ils.circ.circulation.set_claims_returned';
959         if (override) method += '.override';
960
961         console.debug('claims returned ' + method);
962
963         return egCore.net.request(
964             'open-ils.circ', method, egCore.auth.token(),
965             {barcode : barcode, backdate : date})
966
967         .then(function(resp) {
968
969             if (resp == 1) { // success
970                 console.debug('claims returned succeeded for ' + barcode);
971                 return barcode;
972
973             } else if (evt = egCore.evt.parse(resp)) {
974                 console.debug('claims returned failed: ' + evt.toString());
975
976                 if (evt.textcode == 'PATRON_EXCEEDS_CLAIMS_RETURN_COUNT') {
977                     // TODO check perms before offering override option?
978
979                     if (override) return;// just to be safe
980
981                     return egConfirmDialog.open(
982                         egCore.strings.TOO_MANY_CLAIMS_RETURNED, '', {}
983                     ).result.then(function() {
984                         return service.mark_claims_returned(barcode, date, true);
985                     });
986                 }
987
988                 if (evt.textcode == 'PERM_FAILURE') {
989                     console.error('claims returned permission denied')
990                     // TODO: auth override dialog?
991                 }
992             }
993         });
994     }
995
996     service.mark_claims_returned_dialog = function(copy_barcodes) {
997         if (!copy_barcodes.length) return;
998
999         return $uibModal.open({
1000             templateUrl: './circ/share/t_mark_claims_returned_dialog',
1001             controller: 
1002                        ['$scope','$uibModalInstance',
1003                 function($scope , $uibModalInstance) {
1004
1005                 var today = new Date();
1006                 $scope.args = {
1007                     barcodes : copy_barcodes,
1008                     date : today
1009                 };
1010
1011                 $scope.$watch('args.date', function(newval) {
1012                     if (newval && newval > today) 
1013                         $scope.args.backdate = today;
1014                 });
1015
1016                 $scope.cancel = function() {$uibModalInstance.dismiss()}
1017                 $scope.ok = function() { 
1018
1019                     var date = $scope.args.date.toISOString().replace(/T.*/,'');
1020
1021                     var deferred = $q.defer();
1022
1023                     // serialize the action on each barcode so that the 
1024                     // caller will never see multiple alerts at the same time.
1025                     function mark_one() {
1026                         var bc = copy_barcodes.pop();
1027                         if (!bc) {
1028                             deferred.resolve();
1029                             $uibModalInstance.close();
1030                             return;
1031                         }
1032
1033                         // finally -> continue even when one fails
1034                         service.mark_claims_returned(bc, date)
1035                         .finally(function(barcode) {
1036                             if (barcode) deferred.notify(barcode);
1037                             mark_one();
1038                         });
1039                     }
1040                     mark_one(); // kick it off
1041                     return deferred.promise;
1042                 }
1043             }]
1044         }).result;
1045     }
1046
1047     // serially checks in each barcode with claims_never_checked_out set
1048     // returns promise, notified on each barcode, resolved after all
1049     // checkins are complete.
1050     service.mark_claims_never_checked_out = function(barcodes) {
1051         if (!barcodes.length) return;
1052
1053         var deferred = $q.defer();
1054         egConfirmDialog.open(
1055             egCore.strings.MARK_NEVER_CHECKED_OUT, '', {barcodes : barcodes}
1056
1057         ).result.then(function() {
1058             function mark_one() {
1059                 var bc = barcodes.pop();
1060
1061                 if (!bc) { // all done
1062                     deferred.resolve();
1063                     return;
1064                 }
1065
1066                 service.checkin(
1067                     {claims_never_checked_out : true, copy_barcode : bc})
1068                 .finally(function() { 
1069                     deferred.notify(bc);
1070                     mark_one();
1071                 })
1072             }
1073             mark_one();
1074         });
1075
1076         return deferred.promise;
1077     }
1078
1079     service.mark_damaged = function(copy_ids) {
1080         return egConfirmDialog.open(
1081             egCore.strings.MARK_DAMAGED_CONFIRM, '',
1082             {   num_items : copy_ids.length,
1083                 ok : function() {},
1084                 cancel : function() {}
1085             }
1086
1087         ).result.then(function() {
1088             var promises = [];
1089             angular.forEach(copy_ids, function(copy_id) {
1090                 promises.push(
1091                     egCore.net.request(
1092                         'open-ils.circ',
1093                         'open-ils.circ.mark_item_damaged',
1094                         egCore.auth.token(), copy_id
1095                     ).then(function(resp) {
1096                         if (evt = egCore.evt.parse(resp)) {
1097                             console.error('mark damaged failed: ' + evt);
1098                         }
1099                     })
1100                 );
1101             });
1102
1103             return $q.all(promises);
1104         });
1105     }
1106
1107     service.mark_missing = function(copy_ids) {
1108         return egConfirmDialog.open(
1109             egCore.strings.MARK_MISSING_CONFIRM, '',
1110             {   num_items : copy_ids.length,
1111                 ok : function() {},
1112                 cancel : function() {}
1113             }
1114         ).result.then(function() {
1115             var promises = [];
1116             angular.forEach(copy_ids, function(copy_id) {
1117                 promises.push(
1118                     egCore.net.request(
1119                         'open-ils.circ',
1120                         'open-ils.circ.mark_item_missing',
1121                         egCore.auth.token(), copy_id
1122                     ).then(function(resp) {
1123                         if (evt = egCore.evt.parse(resp)) {
1124                             console.error('mark missing failed: ' + evt);
1125                         }
1126                     })
1127                 );
1128             });
1129
1130             return $q.all(promises);
1131         });
1132     }
1133
1134
1135
1136     // Mark circulations as lost via copy barcode.  As each item is 
1137     // processed, the returned promise is notified of the barcode.
1138     // No confirmation dialog is presented.
1139     service.mark_lost = function(copy_barcodes) {
1140         var deferred = $q.defer();
1141         var promises = [];
1142
1143         angular.forEach(copy_barcodes, function(barcode) {
1144             promises.push(
1145                 egCore.net.request(
1146                     'open-ils.circ',
1147                     'open-ils.circ.circulation.set_lost',
1148                     egCore.auth.token(), {barcode : barcode}
1149                 ).then(function(resp) {
1150                     if (evt = egCore.evt.parse(resp)) {
1151                         console.error("Mark lost failed: " + evt.toString());
1152                         return;
1153                     }
1154                     // inform the caller as each item is processed
1155                     deferred.notify(barcode);
1156                 })
1157             );
1158         });
1159
1160         $q.all(promises).then(function() {deferred.resolve()});
1161         return deferred.promise;
1162     }
1163
1164     service.abort_transits = function(transit_ids) {
1165         return egConfirmDialog.open(
1166             egCore.strings.ABORT_TRANSIT_CONFIRM, '',
1167             {   num_transits : transit_ids.length,
1168                 ok : function() {},
1169                 cancel : function() {}
1170             }
1171
1172         ).result.then(function() {
1173             var promises = [];
1174             angular.forEach(transit_ids, function(transit_id) {
1175                 promises.push(
1176                     egCore.net.request(
1177                         'open-ils.circ',
1178                         'open-ils.circ.transit.abort',
1179                         egCore.auth.token(), {transitid : transit_id}
1180                     ).then(function(resp) {
1181                         if (evt = egCore.evt.parse(resp)) {
1182                             console.error('abort transit failed: ' + evt);
1183                         }
1184                     })
1185                 );
1186             });
1187
1188             return $q.all(promises);
1189         });
1190     }
1191
1192
1193
1194     // alert when copy location alert_message is set.
1195     // This does not affect processing, it only produces a click-through
1196     service.handle_checkin_loc_alert = function(evt, params, options) {
1197         if (angular.isArray(evt)) evt = evt[0];
1198
1199         var copy = evt && evt.payload ? evt.payload.copy : null;
1200
1201         if (copy && !options.suppress_checkin_popups
1202             && copy.location().checkin_alert() == 't') {
1203
1204             return egAlertDialog.open(
1205                 egCore.strings.LOCATION_ALERT_MSG, {copy : copy}).result;
1206         }
1207
1208         return $q.when();
1209     }
1210
1211     service.handle_checkin_resp = function(evt, params, options) {
1212         if (!angular.isArray(evt)) evt = [evt];
1213
1214         var final_resp = {evt : evt, params : params, options : options};
1215
1216         var copy, hold, transit;
1217         if (evt[0].payload) {
1218             copy = evt[0].payload.copy;
1219             hold = evt[0].payload.hold;
1220             transit = evt[0].payload.transit;
1221         }
1222
1223         // track the barcode regardless of whether it's valid
1224         angular.forEach(evt, function(e){ e.copy_barcode = params.copy_barcode; });
1225
1226         angular.forEach(evt, function(e){ console.debug('checkin event ' + e.textcode); });
1227
1228         if (evt.filter(function(e){return service.checkin_overridable_events.indexOf(e.textcode) > -1;}).length > 0)
1229             return service.handle_overridable_checkin_event(evt, params, options);
1230
1231         switch (evt[0].textcode) {
1232
1233             case 'SUCCESS':
1234             case 'NO_CHANGE':
1235
1236                 switch(Number(copy.status().id())) {
1237
1238                     case 0: /* AVAILABLE */                                        
1239                     case 4: /* MISSING */                                          
1240                     case 7: /* RESHELVING */ 
1241
1242                         egCore.audio.play('success.checkin');
1243
1244                         // see if the copy location requires an alert
1245                         return service.handle_checkin_loc_alert(evt, params, options)
1246                         .then(function() {return final_resp});
1247
1248                     case 8: /* ON HOLDS SHELF */
1249                         egCore.audio.play('info.checkin.holds_shelf');
1250                         
1251                         if (hold) {
1252
1253                             if (hold.pickup_lib() == egCore.auth.user().ws_ou()) {
1254                                 // inform user if the item is on the local holds shelf
1255                             
1256                                 evt[0].route_to = egCore.strings.ROUTE_TO_HOLDS_SHELF;
1257                                 return service.route_dialog(
1258                                     './circ/share/t_hold_shelf_dialog', 
1259                                     evt[0], params, options
1260                                 ).then(function() { return final_resp });
1261
1262                             } else {
1263                                 // normally, if the hold was on the shelf at a 
1264                                 // different location, it would be put into 
1265                                 // transit, resulting in a ROUTE_ITEM event.
1266                                 egCore.audio.play('warning.checkin.wrong_shelf');
1267                                 return $q.when(final_resp);
1268                             }
1269                         } else {
1270
1271                             console.error('checkin: item on holds shelf, '
1272                                 + 'but hold info not returned from checkin');
1273                             return $q.when(final_resp);
1274                         }
1275
1276                     case 11: /* CATALOGING */
1277                         egCore.audio.play('info.checkin.cataloging');
1278                         evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1279                         return $q.when(final_resp);
1280
1281                     case 15: /* ON_RESERVATION_SHELF */
1282                         egCore.audio.play('info.checkin.reservation');
1283                         // TODO: show booking reservation dialog
1284                         return $q.when(final_resp);
1285
1286                     default:
1287                         egCore.audio.play('error.checkin.unknown');
1288                         console.error('Unhandled checkin copy status: ' 
1289                             + copy.status().id() + ' : ' + copy.status().name());
1290                         return $q.when(final_resp);
1291                 }
1292                 
1293             case 'ROUTE_ITEM':
1294                 return service.route_dialog(
1295                     './circ/share/t_transit_dialog', 
1296                     evt[0], params, options
1297                 ).then(function() { return final_resp });
1298
1299             case 'ASSET_COPY_NOT_FOUND':
1300                 egCore.audio.play('warning.checkin.not_found');
1301                 return egAlertDialog.open(
1302                     egCore.strings.UNCAT_ALERT_DIALOG, params)
1303                     .result.then(function() {return final_resp});
1304
1305             case 'ITEM_NOT_CATALOGED':
1306                 egCore.audio.play('warning.checkin.not_cataloged');
1307                 evt[0].route_to = egCore.strings.ROUTE_TO_CATALOGING;
1308                 if (options.no_precat_alert) 
1309                     return $q.when(final_resp);
1310                 return egAlertDialog.open(
1311                     egCore.strings.PRECAT_CHECKIN_MSG, params)
1312                     .result.then(function() {return final_resp});
1313
1314             default:
1315                 egCore.audio.play('error.checkin.unknown');
1316                 console.warn('unhandled checkin response : ' + evt[0].textcode);
1317                 return $q.when(final_resp);
1318         }
1319     }
1320
1321     // collect transit, address, and hold info that's not already
1322     // included in responses.
1323     service.collect_route_data = function(tmpl, evt, params, options) {
1324         if (angular.isArray(evt)) evt = evt[0];
1325         var promises = [];
1326         var data = {};
1327
1328         if (evt.org && !tmpl.match(/hold_shelf/)) {
1329             promises.push(
1330                 service.get_org_addr(evt.org, 'holds_address')
1331                 .then(function(addr) { data.address = addr })
1332             );
1333         }
1334
1335         if (evt.payload.hold) {
1336             promises.push(
1337                 egCore.pcrud.retrieve('au', 
1338                     evt.payload.hold.usr(), {
1339                         flesh : 1,
1340                         flesh_fields : {'au' : ['card']}
1341                     }
1342                 ).then(function(patron) {data.patron = patron})
1343             );
1344         }
1345
1346         if (!tmpl.match(/hold_shelf/)) {
1347             promises.push(
1348                 service.find_copy_transit(evt, params, options)
1349                 .then(function(trans) {data.transit = trans})
1350             );
1351         }
1352
1353         return $q.all(promises).then(function() { return data });
1354     }
1355
1356     service.route_dialog = function(tmpl, evt, params, options) {
1357         if (angular.isArray(evt)) evt = evt[0];
1358
1359         return service.collect_route_data(tmpl, evt, params, options)
1360         .then(function(data) {
1361             
1362             // All actions flow from the print data
1363
1364             var print_context = {
1365                 copy : egCore.idl.toHash(evt.payload.copy),
1366                 title : evt.title,
1367                 author : evt.author
1368             }
1369
1370             if (data.transit) {
1371                 // route_dialog includes the "route to holds shelf" 
1372                 // dialog, which has no transit
1373                 print_context.transit = egCore.idl.toHash(data.transit);
1374                 print_context.dest_address = egCore.idl.toHash(data.address);
1375                 print_context.dest_location =
1376                     egCore.idl.toHash(egCore.org.get(data.transit.dest()));
1377             }
1378
1379             if (data.patron) {
1380                 print_context.hold = egCore.idl.toHash(evt.payload.hold);
1381                 print_context.patron = egCore.idl.toHash(data.patron);
1382             }
1383
1384             var sound = 'info.checkin.transit';
1385             if (evt.payload.hold) sound += '.hold';
1386             egCore.audio.play(sound);
1387
1388             function print_transit() {
1389                 var template = data.transit ? 
1390                     (data.patron ? 'hold_transit_slip' : 'transit_slip') :
1391                     'hold_shelf_slip';
1392
1393                 return egCore.print.print({
1394                     context : 'default', 
1395                     template : template, 
1396                     scope : print_context
1397                 });
1398             }
1399
1400             // when auto-print is on, skip the dialog and go straight
1401             // to printing.
1402             if (options.auto_print_holds_transits) 
1403                 return print_transit();
1404
1405             return $uibModal.open({
1406                 templateUrl: tmpl,
1407                 controller: [
1408                             '$scope','$uibModalInstance',
1409                     function($scope , $uibModalInstance) {
1410
1411                     $scope.today = new Date();
1412
1413                     // copy the print scope into the dialog scope
1414                     angular.forEach(print_context, function(val, key) {
1415                         $scope[key] = val;
1416                     });
1417
1418                     $scope.ok = function() {$uibModalInstance.close()}
1419
1420                     $scope.print = function() { 
1421                         $uibModalInstance.close();
1422                         print_transit();
1423                     }
1424                 }]
1425
1426             }).result;
1427         });
1428     }
1429
1430     // action == what action to take if the user confirms the alert
1431     service.copy_alert_dialog = function(evt, params, options, action) {
1432         if (angular.isArray(evt)) evt = evt[0];
1433         return egConfirmDialog.open(
1434             egCore.strings.COPY_ALERT_MSG_DIALOG_TITLE, 
1435             evt.payload,  // payload == alert message text
1436             {   copy_barcode : params.copy_barcode,
1437                 ok : function() {},
1438                 cancel : function() {}
1439             }
1440         ).result.then(function() {
1441             options.override = true;
1442             return service[action](params, options);
1443         });
1444     }
1445
1446     // check the barcode.  If it's no good, show the warning dialog
1447     // Resolves on success, rejected on error
1448     service.test_barcode = function(bc) {
1449
1450         var ok = service.check_barcode(bc);
1451         if (ok) return $q.when();
1452
1453         return $uibModal.open({
1454             templateUrl: './circ/share/t_bad_barcode_dialog',
1455             controller: 
1456                 ['$scope', '$uibModalInstance', 
1457                 function($scope, $uibModalInstance) {
1458                 $scope.barcode = bc;
1459                 $scope.ok = function() { $uibModalInstance.close() }
1460                 $scope.cancel = function() { $uibModalInstance.dismiss() }
1461             }]
1462         }).result;
1463     }
1464
1465     // check() and checkdigit() copied directly 
1466     // from chrome/content/util/barcode.js
1467
1468     service.check_barcode = function(bc) {
1469         if (bc != Number(bc)) return false;
1470         bc = bc.toString();
1471         // "16.00" == Number("16.00"), but the . is bad.
1472         // Throw out any barcode that isn't just digits
1473         if (bc.search(/\D/) != -1) return false;
1474         var last_digit = bc.substr(bc.length-1);
1475         var stripped_barcode = bc.substr(0,bc.length-1);
1476         return service.barcode_checkdigit(stripped_barcode).toString() == last_digit;
1477     }
1478
1479     service.barcode_checkdigit = function(bc) {
1480         var reverse_barcode = bc.toString().split('').reverse();
1481         var check_sum = 0; var multiplier = 2;
1482         for (var i = 0; i < reverse_barcode.length; i++) {
1483             var digit = reverse_barcode[i];
1484             var product = digit * multiplier; product = product.toString();
1485             var temp_sum = 0;
1486             for (var j = 0; j < product.length; j++) {
1487                 temp_sum += Number( product[j] );
1488             }
1489             check_sum += Number( temp_sum );
1490             multiplier = ( multiplier == 2 ? 1 : 2 );
1491         }
1492         check_sum = check_sum.toString();
1493         var next_multiple_of_10 = (check_sum.match(/(\d*)\d$/)[1] * 10) + 10;
1494         var check_digit = next_multiple_of_10 - Number(check_sum);
1495         if (check_digit == 10) check_digit = 0;
1496         return check_digit;
1497     }
1498
1499     service.create_penalty = function(user_id) {
1500         return $uibModal.open({
1501             templateUrl: './circ/share/t_new_message_dialog',
1502             controller: 
1503                    ['$scope','$uibModalInstance','staffPenalties',
1504             function($scope , $uibModalInstance , staffPenalties) {
1505                 $scope.focusNote = true;
1506                 $scope.penalties = staffPenalties;
1507                 $scope.require_initials = service.require_initials;
1508                 $scope.args = {penalty : 21}; // default to Note
1509                 $scope.setPenalty = function(id) {
1510                     args.penalty = id;
1511                 }
1512                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1513                 $scope.cancel = function($event) { 
1514                     $uibModalInstance.dismiss();
1515                     $event.preventDefault();
1516                 }
1517             }],
1518             resolve : { staffPenalties : service.get_staff_penalty_types }
1519         }).result.then(
1520             function(args) {
1521                 var pen = new egCore.idl.ausp();
1522                 pen.usr(user_id);
1523                 pen.org_unit(egCore.auth.user().ws_ou());
1524                 pen.note(args.note);
1525                 if (args.initials) pen.note(args.note + ' [' + args.initials + ']');
1526                 if (args.custom_penalty) {
1527                     pen.standing_penalty(args.custom_penalty);
1528                 } else {
1529                     pen.standing_penalty(args.penalty);
1530                 }
1531                 pen.staff(egCore.auth.user().id());
1532                 pen.set_date('now');
1533                 return egCore.pcrud.create(pen);
1534             }
1535         );
1536     }
1537
1538     // assumes, for now anyway,  penalty type is fleshed onto usr_penalty.
1539     service.edit_penalty = function(usr_penalty) {
1540         return $uibModal.open({
1541             templateUrl: './circ/share/t_new_message_dialog',
1542             controller: 
1543                    ['$scope','$uibModalInstance','staffPenalties',
1544             function($scope , $uibModalInstance , staffPenalties) {
1545                 $scope.focusNote = true;
1546                 $scope.penalties = staffPenalties;
1547                 $scope.require_initials = service.require_initials;
1548                 $scope.args = {
1549                     penalty : usr_penalty.standing_penalty().id(),
1550                     note : usr_penalty.note()
1551                 }
1552                 $scope.setPenalty = function(id) { args.penalty = id; }
1553                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1554                 $scope.cancel = function($event) { 
1555                     $uibModalInstance.dismiss();
1556                     $event.preventDefault();
1557                 }
1558             }],
1559             resolve : { staffPenalties : service.get_staff_penalty_types }
1560         }).result.then(
1561             function(args) {
1562                 usr_penalty.note(args.note);
1563                 if (args.initials) usr_penalty.note(args.note + ' [' + args.initials + ']');
1564                 usr_penalty.standing_penalty(args.penalty);
1565                 return egCore.pcrud.update(usr_penalty);
1566             }
1567         );
1568     }
1569
1570     return service;
1571
1572 }]);
1573
1574