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