]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/app.js
0b1a1a7d523d1faac692d60f9a4c742efeb1a319
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / patron / app.js
1 /**
2  * Patron App
3  *
4  * Search, checkout, items out, holds, bills, edit, etc.
5  */
6
7 angular.module('egPatronApp', ['ngRoute', 'ui.bootstrap', 'egUserBucketMod', 
8     'egCoreMod', 'egUiMod', 'egGridMod', 'egUserMod', 'ngToast',
9     'egPatronSearchMod'])
10
11 .config(['ngToastProvider', function(ngToastProvider) {
12     ngToastProvider.configure({
13         verticalPosition: 'bottom',
14         animation: 'fade'
15     });
16 }])
17
18 .config(function($routeProvider, $locationProvider, $compileProvider) {
19     $locationProvider.html5Mode(true);
20     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); // grid export
21         
22     // data loaded at startup which only requires an authtoken goes
23     // here. this allows the requests to be run in parallel instead of
24     // waiting until startup has completed.
25     var resolver = {delay : ['egCore','egUser', function(egCore , egUser) {
26
27         // fetch the org settings we care about during egStartup
28         // and toss them into egCore.env as egCore.env.aous[name] = value.
29         // note: only load settings here needed by all tabs; load tab-
30         // specific settings from within their respective controllers
31         egCore.env.classLoaders.aous = function() {
32             return egCore.org.settings([
33                 'ui.staff.require_initials.patron_info_notes',
34                 'circ.do_not_tally_claims_returned',
35                 'circ.tally_lost',
36                 'circ.obscure_dob',
37                 'ui.circ.show_billing_tab_on_bills',
38                 'circ.patron_expires_soon_warning',
39                 'ui.circ.items_out.lost',
40                 'ui.circ.items_out.longoverdue',
41                 'ui.circ.items_out.claimsreturned'
42             ]).then(function(settings) { 
43                 // local settings are cached within egOrg.  Caching them
44                 // again in egEnv just simplifies the syntax for access.
45                 egCore.env.aous = settings;
46             });
47         }
48
49         egCore.env.loadClasses.push('aous');
50
51         // app-globally modify the default flesh fields for 
52         // fleshed user retrieval.
53         if (egUser.defaultFleshFields.indexOf('profile') == -1) {
54             egUser.defaultFleshFields = egUser.defaultFleshFields.concat([
55                 'profile',
56                 'net_access_level',
57                 'ident_type',
58                 'ident_type2',
59                 'cards',
60                 'groups'
61             ]);
62         }
63
64         return egCore.startup.go();
65     }]};
66
67     $routeProvider.when('/circ/patron/search', {
68         templateUrl: './circ/patron/t_search',
69         controller: 'PatronSearchCtrl',
70         resolve : resolver
71     });
72
73     $routeProvider.when('/circ/patron/bcsearch', {
74         templateUrl: './circ/patron/t_bcsearch',
75         controller: 'PatronBarcodeSearchCtrl',
76         resolve : resolver
77     });
78
79     $routeProvider.when('/circ/patron/credentials', {
80         templateUrl: './circ/patron/t_credentials',
81         controller: 'PatronVerifyCredentialsCtrl',
82         resolve : resolver
83     });
84
85     $routeProvider.when('/circ/patron/last', {
86         templateUrl: './circ/patron/t_last_patron',
87         controller: 'PatronFetchLastCtrl',
88         resolve : resolver
89     });
90
91     // the following require a patron ID
92
93     $routeProvider.when('/circ/patron/:id/alerts', {
94         templateUrl: './circ/patron/t_alerts',
95         controller: 'PatronAlertsCtrl',
96         resolve : resolver
97     });
98
99     $routeProvider.when('/circ/patron/:id/checkout', {
100         templateUrl: './circ/patron/t_checkout',
101         controller: 'PatronCheckoutCtrl',
102         resolve : resolver
103     });
104
105     $routeProvider.when('/circ/patron/:id/items_out', {
106         templateUrl: './circ/patron/t_items_out',
107         controller: 'PatronItemsOutCtrl',
108         resolve : resolver
109     });
110
111     $routeProvider.when('/circ/patron/:id/holds', {
112         templateUrl: './circ/patron/t_holds',
113         controller: 'PatronHoldsCtrl',
114         resolve : resolver
115     });
116
117     $routeProvider.when('/circ/patron/:id/holds/create', {
118         templateUrl: './circ/patron/t_holds_create',
119         controller: 'PatronHoldsCreateCtrl',
120         resolve : resolver
121     });
122
123     $routeProvider.when('/circ/patron/:id/holds/:hold_id', {
124         templateUrl: './circ/patron/t_holds',
125         controller: 'PatronHoldsCtrl',
126         resolve : resolver
127     });
128
129     $routeProvider.when('/circ/patron/:id/hold/:hold_id', {
130         templateUrl: './circ/patron/t_hold_details',
131         controller: 'PatronHoldDetailsCtrl',
132         resolve : resolver
133     });
134
135     $routeProvider.when('/circ/patron/:id/bills', {
136         templateUrl: './circ/patron/t_bills',
137         controller: 'PatronBillsCtrl',
138         resolve : resolver
139     });
140
141     $routeProvider.when('/circ/patron/:id/bill/:xact_id/:xact_tab', {
142         templateUrl: './circ/patron/t_xact_details',
143         controller: 'XactDetailsCtrl',
144         resolve : resolver
145     });
146
147     $routeProvider.when('/circ/patron/:id/bill_history/:history_tab', {
148         templateUrl: './circ/patron/t_bill_history',
149         controller: 'BillHistoryCtrl',
150         resolve : resolver
151     });
152
153     $routeProvider.when('/circ/patron/:id/messages', {
154         templateUrl: './circ/patron/t_messages',
155         controller: 'PatronMessagesCtrl',
156         resolve : resolver
157     });
158
159     $routeProvider.when('/circ/patron/:id/edit', {
160         templateUrl: './circ/patron/t_edit',
161         controller: 'PatronRegCtrl',
162         resolve : resolver
163     });
164
165     $routeProvider.when('/circ/patron/:id/credentials', {
166         templateUrl: './circ/patron/t_credentials',
167         controller: 'PatronVerifyCredentialsCtrl',
168         resolve : resolver
169     });
170
171     $routeProvider.when('/circ/patron/:id/notes', {
172         templateUrl: './circ/patron/t_notes',
173         controller: 'PatronNotesCtrl',
174         resolve : resolver
175     });
176
177     $routeProvider.when('/circ/patron/:id/triggered_events', {
178         templateUrl: './circ/patron/t_triggered_events',
179         controller: 'PatronTriggeredEventsCtrl',
180         resolve : resolver
181     });
182
183     $routeProvider.when('/circ/patron/:id/message_center', {
184         templateUrl: './circ/patron/t_message_center',
185         controller: 'PatronMessageCenterCtrl',
186         resolve : resolver
187     });
188
189     $routeProvider.when('/circ/patron/:id/edit_perms', {
190         templateUrl: './circ/patron/t_edit_perms',
191         controller: 'PatronPermsCtrl',
192         resolve : resolver
193     });
194
195     $routeProvider.when('/circ/patron/:id/group', {
196         templateUrl: './circ/patron/t_group',
197         controller: 'PatronGroupCtrl',
198         resolve : resolver
199     });
200
201     $routeProvider.when('/circ/patron/:id/stat_cats', {
202         templateUrl: './circ/patron/t_stat_cats',
203         controller: 'PatronStatCatsCtrl',
204         resolve : resolver
205     });
206
207     $routeProvider.when('/circ/patron/:id/surveys', {
208         templateUrl: './circ/patron/t_surveys',
209         controller: 'PatronSurveyCtrl',
210         resolve : resolver
211     });
212
213     $routeProvider.otherwise({redirectTo : '/circ/patron/search'});
214 })
215
216 /**
217  * Manages tabbed patron view.
218  * This is the parent scope of all patron tab scopes.
219  *
220  * */
221 .controller('PatronCtrl',
222        ['$scope','$q','$location','$filter','egCore','egNet','egUser','egAlertDialog','egConfirmDialog','egPromptDialog','patronSvc',
223 function($scope,  $q , $location , $filter , egCore , egNet , egUser , egAlertDialog , egConfirmDialog , egPromptDialog , patronSvc) {
224
225     $scope.is_patron_edit = function() {
226         return Boolean($location.path().match(/patron\/\d+\/edit$/));
227     }
228
229     // To support the fixed position patron edit actions bar,
230     // its markup has to live outside the scope of the patron 
231     // edit controller.  Insert a scope blob here that can be
232     // modifed from within the patron edit controller.
233     $scope.edit_passthru = {};
234
235     // returns true if a redirect occurs
236     function redirectToAlertPanel() {
237
238         $scope.alert_penalties = 
239             function() {return patronSvc.alert_penalties}
240
241         if (patronSvc.alertsShown()) return false;
242
243         // if the patron has any unshown alerts, show them now
244         if (patronSvc.hasAlerts && 
245             !$location.path().match(/alerts$/)) {
246
247             $location
248                 .path('/circ/patron/' + patronSvc.current.id() + '/alerts')
249                 .search('card', null);
250             return true;
251         }
252
253         // no alert required.  If the patron has fines and the show-bills
254         // OUS is applied, direct to the bills page.
255         if ($scope.patron_stats().fines.balance_owed > 0 // TODO: != 0 ?
256             && egCore.env.aous['ui.circ.show_billing_tab_on_bills']
257             && !$location.path().match(/bills$/)) {
258
259             $scope.tab = 'bills';
260             $location
261                 .path('/circ/patron/' + patronSvc.current.id() + '/bills')
262                 .search('card', null);
263
264             return true;
265         }
266
267         return false;
268     }
269
270     // called after each route-specified controller is instantiated.
271     // this doubles as a way to inform the top-level controller that
272     // egStartup.go() has completed, which means we are clear to 
273     // fetch the patron, etc.
274     $scope.initTab = function(tab, patron_id) {
275         console.log('init tab ' + tab);
276         $scope.tab = tab;
277         $scope.aous = egCore.env.aous;
278         $scope.auth_user_id = egCore.auth.user().id();
279
280         if (patron_id) {
281             $scope.patron_id = patron_id;
282             return patronSvc.setPrimary($scope.patron_id)
283             .then(function() {
284                 // the page title context label comes from the tab.
285                 egCore.strings.setPageTitle(
286                     egCore.strings.PAGE_TITLE_PATRON_NAME, 
287                     egCore.strings['PAGE_TITLE_PATRON_' + tab.toUpperCase()],
288                     {   lname : patronSvc.current.family_name(),
289                         fname : patronSvc.current.first_given_name(),
290                         mname : patronSvc.current.second_given_name()
291                     }
292                 );
293             })
294             .then(function() {return patronSvc.checkAlerts()})
295             .then(redirectToAlertPanel)
296             .then(function(){
297                 $scope.ident_type_name = $scope.patron().ident_type().name()
298                 $scope.hasIdentTypeName = $scope.ident_type_name.length > 0;
299             });
300         } else {
301             // No patron, use the tab name as the page title.
302             egCore.strings.setPageTitle(
303                 egCore.strings['PAGE_TITLE_PATRON_' + tab.toUpperCase()]);
304         }
305         return $q.when();
306     }
307
308     $scope._show_dob = {};
309     $scope.show_dob = function (val) {
310         if ($scope.patron()) {
311             if (typeof val != 'undefined') $scope._show_dob[$scope.patron().id()] = val;
312             return $scope._show_dob[$scope.patron().id()];
313         }
314         return !egCore.env.aous['circ.obscure_dob'];
315     }
316         
317     $scope.obscure_dob = function() { 
318         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'];
319     }
320     $scope.now_show_dob = function() { 
321         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'] ?
322             $scope.show_dob() : true; 
323     }
324
325     $scope.patron = function() { return patronSvc.current }
326     $scope.patron_stats = function() { return patronSvc.patron_stats }
327     $scope.summary_stat_cats = function() { return patronSvc.summary_stat_cats }
328     $scope.hasAlerts = function() { return patronSvc.hasAlerts }
329     $scope.isPatronExpired = function() { return patronSvc.patronExpired }
330     $scope.doesPatronExpireSoon = function() { return patronSvc.patronExpiresSoon }
331
332     $scope.print_address = function(addr) {
333         egCore.print.print({
334             context : 'default', 
335             template : 'patron_address', 
336             scope : {
337                 patron : egCore.idl.toHash(patronSvc.current),
338                 address : egCore.idl.toHash(addr)
339             }
340         });
341     }
342
343     $scope.copy_address = function(addr) {
344         // Alas, navigator.clipboard is not yet supported in FF and others.
345         var lNode = document.querySelector('#patron-address-copy-' + addr.id());
346
347         // Un-hide the textarea just long enough to copy its data.
348         // Using node.style instead of ng-show/ng-hide in hopes it 
349         // will be quicker, so the user never sees the textarea.
350         lNode.style.visibility = 'visible';
351         lNode.focus();
352         lNode.select();
353
354         if (!document.execCommand('copy')) {
355             console.error('Copy command failed');
356         }
357
358         lNode.style.visibility = 'hidden';
359     }
360
361     $scope.toggle_expand_summary = function() {
362         if ($scope.collapsePatronSummary) {
363             $scope.collapsePatronSummary = false;
364             egCore.hatch.removeItem('eg.circ.patron.summary.collapse');
365         } else {
366             $scope.collapsePatronSummary = true;
367             egCore.hatch.setItem('eg.circ.patron.summary.collapse', true);
368         }
369     }
370     
371     // always expand the patron summary in the search UI, regardless
372     // of stored preference.
373     $scope.collapse_summary = function() {
374         return $scope.tab != 'search' && $scope.collapsePatronSummary;
375     }
376
377     function _purge_account(dest_usr,override) {
378         egNet.request(
379             'open-ils.actor',
380             'open-ils.actor.user.delete' + (override ? '.override' : ''),
381             egCore.auth.token(),
382             $scope.patron().id(),
383             dest_usr
384         ).then(function(resp){
385             if (evt = egCore.evt.parse(resp)) {
386                 if (evt.code == '2004' /* ACTOR_USER_DELETE_OPEN_XACTS */) {
387                     egConfirmDialog.open(
388                         egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_OVERRIDE_PROMPT,
389                         {ok : function() {
390                             _purge_account(dest_usr,true);
391                         }}
392                     );
393                 } else {
394                     alert(js2JSON(evt));
395                 }
396             } else {
397                 location.href = egCore.env.basePath + '/circ/patron/search';
398             }
399         });
400     }
401
402     function _purge_account_with_destination(dest_barcode) {
403         egCore.pcrud.search('ac', {barcode : dest_barcode})
404         .then(function(card) {
405             if (!card) {
406                 egAlertDialog.open(egCore.strings.PATRON_PURGE_STAFF_BAD_BARCODE);
407             } else {
408                 _purge_account(card.usr());
409             }
410         });
411     }
412
413     $scope.purge_account = function() {
414         egConfirmDialog.open(
415             egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_CONFIRM,
416             {ok : function() {
417                 egConfirmDialog.open(
418                     egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_LAST_CHANCE,
419                     {ok : function() {
420                         egNet.request(
421                             'open-ils.actor',
422                             'open-ils.actor.user.has_work_perm_at',
423                             egCore.auth.token(), 'STAFF_LOGIN', $scope.patron().id()
424                         ).then(function(resp) {
425                             var is_staff = resp.length > 0;
426                             if (is_staff) {
427                                 egPromptDialog.open(
428                                     egCore.strings.PATRON_PURGE_STAFF_PROMPT,
429                                     null, // TODO: this would be cool if it worked: egCore.auth.user().card().barcode(),
430                                     {ok : function(barcode) {_purge_account_with_destination(barcode)}}
431                                 );
432                             } else {
433                                 _purge_account();
434                             }
435                         });
436                     }
437                 });
438             }
439         });
440     }
441
442     egCore.hatch.getItem('eg.circ.patron.summary.collapse')
443     .then(function(val) {$scope.collapsePatronSummary = Boolean(val)});
444 }])
445
446 .controller('PatronBarcodeSearchCtrl',
447        ['$scope','$location','egCore','egConfirmDialog','egUser','patronSvc','$uibModal','$q',
448 function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc , $uibModal , $q) {
449     $scope.selectMe = true; // focus text input
450     patronSvc.clearPrimary(); // clear the default user
451
452     // jump to the patron checkout UI
453     function loadPatron(user_id) {
454         egCore.audio.play('success.patron.by_barcode');
455         $location
456         .path('/circ/patron/' + user_id + '/checkout')
457         .search('card', $scope.args.barcode);
458         patronSvc.search_barcode = $scope.args.barcode;
459     }
460
461     // create an opt-in=yes response for the loaded user
462     function createOptIn(user_id) {
463         egCore.net.request(
464             'open-ils.actor',
465             'open-ils.actor.user.org_unit_opt_in.create',
466             egCore.auth.token(), user_id).then(function(resp) {
467                 if (evt = egCore.evt.parse(resp)) return alert(evt);
468                 loadPatron(user_id);
469             }
470         );
471     }
472
473     $scope.submitBarcode = function(args) {
474         $scope.bcNotFound = null;
475         $scope.optInRestricted = false;
476         if (!args.barcode) return;
477         args.barcode = args.barcode.replace(/^\s/g,'');
478         args.barcode = args.barcode.replace(/\s$/g,'');
479         // blur so next time it's set to true it will re-apply select()
480         $scope.selectMe = false;
481
482         var user_id;
483
484         // given a scanned barcode, this function finds any matching users
485         // and handles multiple matches due to barcode completion
486         function handleBarcodeCompletion(scanned_barcode) {
487             var deferred = $q.defer();
488
489             egCore.net.request(
490                 'open-ils.actor',
491                 'open-ils.actor.get_barcodes',
492                 egCore.auth.token(), egCore.auth.user().ws_ou(), 
493                 'actor', scanned_barcode)
494
495             .then(function(resp) { // get_barcodes
496
497                 if (evt = egCore.evt.parse(resp)) {
498                     alert(evt); // FIXME
499                     deferred.reject();
500                     return;
501                 }
502
503                 if (!resp || !resp[0]) {
504                     $scope.bcNotFound = args.barcode;
505                     $scope.selectMe = true;
506                     egCore.audio.play('warning.patron.not_found');
507                     deferred.reject();
508                     return;
509                 }
510
511                 if (resp.length == 1) {
512                     // exactly one matching barcode: return it
513                     deferred.resolve();
514                     user_id = resp[0].id;
515                 } else {
516                     // multiple matching barcodes: let the user pick one 
517                     var barcode_map = {};
518                     var matches = [];
519                     var promises = [];
520                     var selected_barcode;
521                     angular.forEach(resp, function(match) {
522                         promises.push(
523                             egUser.get(match.id, {useFields : ['home_ou']}).then(function(user) {
524                                 barcode_map[match.barcode] = user.id();
525                                 matches.push( {
526                                     barcode: match.barcode,
527                                     title: user.first_given_name() + ' ' + user.family_name(),
528                                     org_name: user.home_ou().name(),
529                                     org_shortname: user.home_ou().shortname()
530                                 });
531                             })
532                         );
533                     });
534                     return $q.all(promises)
535                     .then(function() {
536                         $uibModal.open({
537                             templateUrl: './circ/share/t_barcode_choice_dialog',
538                             controller:
539                                 ['$scope', '$uibModalInstance',
540                                 function($scope, $uibModalInstance) {
541                                 $scope.matches = matches;
542                                 $scope.ok = function(barcode) {
543                                     $uibModalInstance.close();
544                                     selected_barcode = barcode;
545                                 }
546                                 $scope.cancel = function() {$uibModalInstance.dismiss()}
547                             }],
548                         }).result.then(function() {
549                             deferred.resolve();
550                             user_id = barcode_map[selected_barcode];
551                         });
552                     });
553                 }
554             });
555             return deferred.promise;
556         }
557
558         // call our function to lookup matching users for the scanned barcode
559         handleBarcodeCompletion(args.barcode).then(function() {
560
561             // see if an opt-in request is needed
562             return egCore.net.request(
563                 'open-ils.actor',
564                 'open-ils.actor.user.org_unit_opt_in.check',
565                 egCore.auth.token(), user_id
566             ).then(function(optInResp) { // opt_in_check
567
568                 if (evt = egCore.evt.parse(optInResp)) {
569                     alert(evt); // FIXME
570                     return;
571                 }
572
573                 if (optInResp == 2) {
574                     // opt-in disallowed at this location by patron's home library
575                     $scope.optInRestricted = true;
576                     $scope.selectMe = true;
577                     egCore.audio.play('warning.patron.opt_in_restricted');
578                     return;
579                 }
580             
581                 if (optInResp == 1) {
582                     // opt-in handled or not needed
583                     return loadPatron(user_id);
584                 }
585
586                 // opt-in needed, show the opt-in dialog
587                 egUser.get(user_id, {useFields : []})
588
589                 .then(function(user) { // retrieve user
590                     var org = egCore.org.get(user.home_ou());
591                     egConfirmDialog.open(
592                         egCore.strings.OPT_IN_DIALOG_TITLE,
593                         egCore.strings.OPT_IN_DIALOG,
594                         {   family_name : user.family_name(),
595                             first_given_name : user.first_given_name(),
596                             org_name : org.name(),
597                             org_shortname : org.shortname(),
598                             ok : function() { createOptIn(user.id()) },
599                             cancel : function() {}
600                         }
601                     );
602                 })
603             })
604         })
605     }
606 }])
607
608
609 /**
610  * Manages patron search
611  */
612 .controller('PatronSearchCtrl',
613        ['$scope','$q','$routeParams','$timeout','$window','$location','egCore','ngToast',
614        '$filter','egUser', 'patronSvc','egGridDataProvider','$document','bucketSvc',
615        'egPatronMerge','egProgressDialog','$controller','$interpolate','$uibModal',
616 function($scope,  $q,  $routeParams,  $timeout,  $window,  $location,  egCore , ngToast,
617          $filter,  egUser,  patronSvc , egGridDataProvider , $document , bucketSvc,
618         egPatronMerge , egProgressDialog , $controller , $interpolate , $uibModal) {
619
620     angular.extend(this, $controller('BasePatronSearchCtrl', {$scope : $scope}));
621     $scope.initTab('search');
622
623     $scope.gridControls = {
624         activateItem : function(item) {
625             $location.path('/circ/patron/' + item.id() + '/checkout');
626         },
627         selectedItems : function() { return [] }
628     }
629
630     $scope.bucketSvc = bucketSvc;
631     $scope.bucketSvc.fetchUserBuckets();
632     $scope.addToBucket = function(item, data, recs) {
633         if (recs.length == 0) return;
634         var added_count = 0;
635         var failed_count = 0;
636         var p = [];
637         angular.forEach(recs,
638             function(rec) {
639                 var item = new egCore.idl.cubi();
640                 item.bucket(data.id());
641                 item.target_user(rec.id());
642                 p.push(egCore.net.request(
643                     'open-ils.actor',
644                     'open-ils.actor.container.item.create',
645                     egCore.auth.token(), 'user', item
646                 ).then(
647                     function(){ added_count++ },
648                     function(){ failed_count++ }
649                 ));
650             }
651         );
652
653         $q.all(p).then( function () {
654             if (added_count) ngToast.create($interpolate(egCore.strings.BUCKET_ADD_SUCCESS)({ count: ''+added_count, name: data.name()} ));
655             if (failed_count) ngToast.warning($interpolate(egCore.strings.BUCKET_ADD_FAIL)({ count: ''+failed_count, name: data.name() } ));
656         });
657     }
658
659     var temp_scope = $scope;
660     $scope.openCreateBucketDialog = function() {
661         $uibModal.open({
662             templateUrl: './circ/patron/bucket/t_bucket_create',
663             backdrop: 'static',
664             controller:
665                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
666                 $scope.focusMe = true;
667                 $scope.ok = function(args) { $uibModalInstance.close(args) }
668                 $scope.cancel = function () { $uibModalInstance.dismiss() }
669             }]
670         }).result.then(function (args) {
671             if (!args || !args.name) return;
672             bucketSvc.createBucket(args.name, args.desc).then(
673                 function(id) {
674                     if (id) {
675                         $scope.bucketSvc.fetchBucket(id).then(function (b) {
676                             $scope.addToBucket(
677                                 null,
678                                 b,
679                                 $scope.gridControls.selectedItems()
680                             );
681                             $scope.bucketSvc.fetchUserBuckets(true);
682                         });
683                     }
684                 }
685             );
686         });
687     }
688
689     $scope.$watch(
690         function() {return $scope.gridControls.selectedItems()},
691         function(list) {
692             if (list[0]) 
693                 patronSvc.setPrimary(null, list[0]);
694         },
695         true
696     );
697
698     $scope.need_one_selected = function() {
699         var items = $scope.gridControls.selectedItems();
700         return (items.length > 0) ? false : true;
701     }
702     $scope.need_two_selected = function() {
703         var items = $scope.gridControls.selectedItems();
704         return (items.length == 2) ? false : true;
705     }
706     $scope.merge_patrons = function() {
707         var items = $scope.gridControls.selectedItems();
708         if (items.length != 2) return false;
709
710         var patron_ids = [];
711         angular.forEach(items, function(i) {
712             patron_ids.push(i.id());
713         });
714         egPatronMerge.do_merge(patron_ids).then(
715             function() {
716                 // ensure that we're not drawing from cached
717                 // resuts, as a successful merge just deleted a
718                 // record
719                 delete patronSvc.lastSearch;
720                 $scope.gridControls.refresh();
721             },
722             function(evt) {
723                 if (evt && evt.textcode == 'MERGE_SELF_NOT_ALLOWED') {
724                     ngToast.warning(egCore.strings.MERGE_SELF_NOT_ALLOWED);
725                 }
726             }
727         );
728     }
729    
730 }])
731
732 /**
733  * Manages messages
734  */
735 .controller('PatronMessagesCtrl',
736        ['$scope','$q','$routeParams','egCore','$uibModal','patronSvc','egCirc',
737 function($scope , $q , $routeParams,  egCore , $uibModal , patronSvc , egCirc) {
738     $scope.initTab('messages', $routeParams.id);
739     var usr_id = $routeParams.id;
740     var org_ids = egCore.org.fullPath(egCore.auth.user().ws_ou(), true);
741
742     // setup date filters
743     var start = new Date(); // now - 1 year
744     start.setFullYear(start.getFullYear() - 1),
745     $scope.dates = {
746         start_date : start,
747         end_date : new Date()
748     }
749
750     function date_range() {
751         var start = $scope.dates.start_date.toISOString().replace(/T.*/,'');
752         var end = $scope.dates.end_date.toISOString().replace(/T.*/,'');
753         var today = new Date().toISOString().replace(/T.*/,'');
754         if (end == today) end = 'now';
755         return [start, end];
756     }
757
758     // grid queries
759    
760     var activeGrid = $scope.activeGridControls = {
761         setSort : function() {
762             return ['set_date'];
763         },
764         setQuery : function() {
765             return {
766                 usr : usr_id,
767                 org_unit : org_ids,
768                 '-or' : [
769                     {stop_date : null},
770                     {stop_date : {'>' : 'now'}}
771                 ]
772             }
773         }
774     }
775
776     var archiveGrid = $scope.archiveGridControls = {
777         setSort : function() {
778             return ['set_date'];
779         },
780         watchQuery : function() {
781             return {
782                 usr : usr_id, 
783                 org_unit : org_ids,
784                 stop_date : {'<=' : 'now'},
785                 set_date : {between : date_range()}
786             };
787         }
788     };
789
790     $scope.removePenalty = function(selected) {
791         // the grid stores flattened penalties.  Fetch penalty objects first
792
793         var ids = selected.map(function(s){ return s.id });
794         egCore.pcrud.search('ausp', 
795             {id : ids}, {}, 
796             {atomic : true, authoritative : true}
797
798         // then delete them
799         ).then(function(penalties) {
800             return egCore.pcrud.remove(penalties);
801
802         // then refresh the grid
803         }).then(function() {
804             activeGrid.refresh();
805         });
806     }
807
808     $scope.archivePenalty = function(selected) {
809         // the grid stores flattened penalties.  Fetch penalty objects first
810
811         var ids = selected.map(function(s){ return s.id });
812         egCore.pcrud.search('ausp', 
813             {id : ids}, {}, 
814             {atomic : true, authoritative : true}
815
816         // then delete them
817         ).then(function(penalties) {
818             angular.forEach(penalties, function(p){ p.stop_date('now') });
819             return egCore.pcrud.update(penalties);
820
821         // then refresh the grid
822         }).then(function() {
823             activeGrid.refresh();
824             archiveGrid.refresh();
825         });
826     }
827
828     // leverage egEnv for caching
829     function fetchPenaltyTypes() {
830         if (egCore.env.csp) 
831             return $q.when(egCore.env.csp.list);
832         return egCore.pcrud.search(
833             // id <= 100 are reserved for system use
834             'csp', {id : {'>': 100}}, {}, {atomic : true})
835         .then(function(penalties) {
836             egCore.env.absorbList(penalties, 'csp');
837             return penalties;
838         });
839     }
840
841     $scope.createPenalty = function() {
842         egCirc.create_penalty(usr_id).then(function() {
843             activeGrid.refresh();
844             // force a refresh of the user, since they may now
845             // have blocking penalties, etc.
846             patronSvc.setPrimary(patronSvc.current.id(), null, true);
847         });
848     }
849
850     $scope.editPenalty = function(selected) {
851         if (selected.length == 0) return;
852
853         // grab the penalty from the user object
854         var penalty = patronSvc.current.standing_penalties().filter(
855             function(p) {return p.id() == selected[0].id})[0];
856
857         egCirc.edit_penalty(penalty).then(function() {
858             activeGrid.refresh();
859             // force a refresh of the user, since they may now
860             // have blocking penalties, etc.
861             patronSvc.setPrimary(patronSvc.current.id(), null, true);
862         });
863     }
864 }])
865
866
867 /**
868  * Credentials tester
869  */
870 .controller('PatronVerifyCredentialsCtrl',
871        ['$scope','$routeParams','$location','egCore',
872 function($scope,  $routeParams , $location , egCore) {
873     $scope.verified = null;
874     $scope.focusMe = true;
875
876     // called with a patron, pre-populate the form args
877     $scope.initTab('other', $routeParams.id).then(
878         function() {
879             if ($routeParams.id && $scope.patron()) {
880                 $scope.prepop = true;
881                 $scope.username = $scope.patron().usrname();
882                 $scope.barcode = $scope.patron().card().barcode();
883             } else {
884                 $scope.username = '';
885                 $scope.barcode = '';
886                 $scope.password = '';
887             }
888         }
889     );
890
891     // verify login credentials
892     $scope.verify = function() {
893         $scope.verified = null;
894         $scope.notFound = false;
895
896         egCore.net.request(
897             'open-ils.actor',
898             'open-ils.actor.verify_user_password',
899             egCore.auth.token(), $scope.barcode,
900             $scope.username, hex_md5($scope.password || '')
901
902         ).then(function(resp) {
903             $scope.focusMe = true;
904             if (evt = egCore.evt.parse(resp)) {
905                 alert(evt);
906             } else if (resp == 1) {
907                 $scope.verified = true;
908             } else {
909                 $scope.verified = false;
910             }
911         });
912     }
913
914     // load the main patron UI for the provided username or barcode
915     $scope.load = function($event) {
916         $scope.notFound = false;
917         $scope.verified = null;
918
919         egCore.net.request(
920             'open-ils.actor',
921             'open-ils.actor.user.retrieve_id_by_barcode_or_username',
922             egCore.auth.token(), $scope.barcode, $scope.username
923
924         ).then(function(resp) {
925
926             if (Number(resp)) {
927                 $location.path('/circ/patron/' + resp + '/checkout');
928                 return;
929             }
930
931             // something went wrong...
932             $scope.focusMe = true;
933             if (evt = egCore.evt.parse(resp)) {
934                 if (evt.textcode == 'ACTOR_USR_NOT_FOUND') {
935                     $scope.notFound = true;
936                     return;
937                 }
938                 return alert(evt);
939             } else {
940                 alert(resp);
941             }
942         });
943
944         // load() button sits within the verify form.  
945         // avoid submitting the verify() form action on load()
946         $event.preventDefault();
947     }
948 }])
949
950 .controller('PatronAlertsCtrl',
951        ['$scope','$routeParams','$location','egCore','patronSvc',
952 function($scope,  $routeParams , $location , egCore , patronSvc) {
953
954     $scope.initTab('other', $routeParams.id)
955     .then(function() {
956         $scope.patronExpired = patronSvc.patronExpired;
957         $scope.patronExpiresSoon = patronSvc.patronExpiresSoon;
958         $scope.retrievedWithInactive = patronSvc.fetchedWithInactiveCard();
959         $scope.invalidAddresses = patronSvc.invalidAddresses;
960     });
961
962 }])
963
964 .controller('PatronNotesCtrl',
965        ['$scope','$filter','$routeParams','$location','egCore','patronSvc','$uibModal',
966         'egConfirmDialog',
967 function($scope,  $filter , $routeParams , $location , egCore , patronSvc , $uibModal,
968          egConfirmDialog) {
969     $scope.initTab('other', $routeParams.id);
970     var usr_id = $routeParams.id;
971
972     // fetch the notes
973     function refreshPage() {
974         $scope.notes = [];
975         egCore.pcrud.search('aun', 
976             {usr : usr_id}, 
977             {flesh : 1, flesh_fields : {aun : ['creator']}}, 
978             {authoritative : true})
979         .then(null, null, function(note) {
980             $scope.notes.push(note);
981         });
982     }
983
984     // open the new-note dialog and create the note
985     $scope.newNote = function() {
986         $uibModal.open({
987             templateUrl: './circ/patron/t_new_note_dialog',
988             backdrop: 'static',
989             controller: 
990                 ['$scope', '$uibModalInstance',
991             function($scope, $uibModalInstance) {
992                 $scope.focusNote = true;
993                 $scope.args = {};
994                 $scope.require_initials = egCore.env.aous['ui.staff.require_initials.patron_info_notes'];
995                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
996                 $scope.cancel = function () { $uibModalInstance.dismiss() }
997             }],
998         }).result.then(
999             function(args) {
1000                 if (!args.value) return;
1001                 var note = new egCore.idl.aun();
1002                 note.usr(usr_id);
1003                 note.title(args.title);
1004                 note.value(args.value);
1005                 note.pub(args.pub ? 't' : 'f');
1006                 note.creator(egCore.auth.user().id());
1007                 if (args.initials) 
1008                     note.value(note.value() + ' [' + args.initials + ']');
1009                 egCore.pcrud.create(note).then(function() {refreshPage()});
1010             }
1011         );
1012     }
1013
1014     // delete the selected note
1015     $scope.deleteNote = function(note) {
1016         egConfirmDialog.open(
1017             egCore.strings.PATRON_NOTE_DELETE_CONFIRM_TITLE, egCore.strings.PATRON_NOTE_DELETE_CONFIRM,
1018             {ok : function() {
1019                 egCore.pcrud.remove(note).then(function() {refreshPage()});
1020             },
1021             note_title : note.title(),
1022             create_date : note.create_date()
1023         });
1024     }
1025
1026     // print the selected note
1027     $scope.printNote = function(note) {
1028         var hash = egCore.idl.toHash(note);
1029         hash.usr = egCore.idl.toHash($scope.patron());
1030         egCore.print.print({
1031             context : 'default', 
1032             template : 'patron_note', 
1033             scope : {note : hash}
1034         });
1035     }
1036
1037     // perform the initial note fetch
1038     refreshPage();
1039 }])
1040
1041 .controller('PatronGroupCtrl',
1042        ['$scope','$routeParams','$q','$window','$timeout','$location','egCore',
1043         'patronSvc','$uibModal','egPromptDialog','egConfirmDialog',
1044 function($scope,  $routeParams , $q , $window , $timeout,  $location , egCore ,
1045          patronSvc , $uibModal , egPromptDialog , egConfirmDialog) {
1046
1047     var usr_id = $routeParams.id;
1048
1049     $scope.totals = {owed : 0, total_out : 0, overdue : 0}
1050
1051     var grid = $scope.gridControls = {
1052         activateItem : function(item) {
1053             $location.path('/circ/patron/' + item.id + '/checkout');
1054         },
1055         itemRetrieved : function(item) {
1056
1057             if (item.id == patronSvc.current.id()) {
1058                 item.stats = patronSvc.patron_stats;
1059
1060             } else {
1061                 // flesh stats for other group members
1062                 patronSvc.getUserStats(item.id).then(function(stats) {
1063                     item.stats = stats;
1064                     $scope.totals.total_out += stats.checkouts.total_out; 
1065                     $scope.totals.overdue += stats.checkouts.overdue; 
1066                 });
1067             }
1068         },
1069         setSort : function() {
1070             return ['create_date'];
1071         },
1072         watchQuery: function() {
1073             if (patronSvc.current) {
1074                 return {
1075                     usrgroup : patronSvc.current.usrgroup(),
1076                     deleted : 'f'
1077                 };
1078             }
1079             return null;
1080         }
1081     }
1082
1083     $scope.initTab('other', $routeParams.id)
1084     .then(function(redirect) {
1085         // if we are redirecting to the alerts page, avoid updating the
1086         // grid query.
1087         if (redirect) return;
1088         // let initTab() fetch the user first so we can know the usrgroup
1089         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
1090     });
1091
1092     $scope.removeFromGroup = function(selected) {
1093         var promises = [];
1094         angular.forEach(selected, function(user) {
1095             console.debug('removing user ' + user.id + ' from group');
1096
1097             promises.push(
1098                 egCore.net.request(
1099                     'open-ils.actor',
1100                     'open-ils.actor.usergroup.new',
1101                     egCore.auth.token(), user.id, true
1102                 )
1103             );
1104         });
1105
1106         $q.all(promises).then(function() {grid.refresh()});
1107     }
1108
1109     function addUserToGroup(user) {
1110         user.usrgroup(patronSvc.current.usrgroup());
1111         user.ischanged(true);
1112         egCore.net.request(
1113             'open-ils.actor',
1114             'open-ils.actor.patron.update',
1115             egCore.auth.token(), user
1116
1117         ).then(function() {grid.refresh()});
1118     }
1119
1120     // fetch each user ("selected" has flattened users)
1121     // update the usrgroup, then update the user object
1122     // After all updates are complete, refresh the grid.
1123     function moveUsersToGroup(target_user, selected) {
1124         var promises = [];
1125
1126         angular.forEach(selected, function(user) {
1127             promises.push(
1128                 egCore.pcrud.retrieve('au', user.id)
1129                 .then(function(u) {
1130                     u.usrgroup(target_user.usrgroup());
1131                     u.ischanged(true);
1132                     return egCore.net.request(
1133                         'open-ils.actor',
1134                         'open-ils.actor.patron.update',
1135                         egCore.auth.token(), u
1136                     );
1137                 })
1138             );
1139         });
1140
1141         $q.all(promises).then(function() {grid.refresh()});
1142     }
1143
1144     function showMoveToGroupConfirm(barcode, selected, outbound) {
1145
1146         // find the user
1147         egCore.pcrud.search('ac', {barcode : barcode})
1148
1149         // fetch the fleshed user
1150         .then(function(card) {
1151
1152             if (!card) return; // TODO: warn user
1153
1154             egCore.pcrud.retrieve('au', card.usr())
1155             .then(function(user) {
1156                 user.card(card);
1157                 $uibModal.open({
1158                     templateUrl: './circ/patron/t_move_to_group_dialog',
1159                     backdrop: 'static',
1160                     controller: [
1161                                 '$scope','$uibModalInstance',
1162                         function($scope , $uibModalInstance) {
1163                             $scope.user = user;
1164                             $scope.selected = selected;
1165                             $scope.outbound = outbound;
1166                             $scope.ok = 
1167                                 function(count) { $uibModalInstance.close() }
1168                             $scope.cancel = 
1169                                 function () { $uibModalInstance.dismiss() }
1170                         }
1171                     ]
1172                 }).result.then(function() {
1173                     if (outbound) {
1174                         moveUsersToGroup(user, selected);
1175                     } else {
1176                         addUserToGroup(user);
1177                     }
1178                 });
1179             });
1180         });
1181     }
1182
1183     // selected == move selected patrons to another patron's group
1184     // !selected == patron from a different group moves into our group
1185     function moveToGroup(selected, outbound) {
1186         egPromptDialog.open(
1187             egCore.strings.GROUP_ADD_USER, '',
1188             {ok : function(value) {
1189                 if (value) 
1190                     showMoveToGroupConfirm(value, selected, outbound);
1191             }}
1192         );
1193     }
1194
1195     $scope.moveToGroup = function() { moveToGroup([], false) };
1196     $scope.moveToAnotherGroup = function(selected) { moveToGroup(selected, true) };
1197
1198     $scope.cloneUser = function(selected) {
1199         if (!selected.length) return;
1200         var url = $location.absUrl().replace(
1201             /\/patron\/.*/, 
1202             '/patron/register/clone/' + selected[0].id);
1203         $window.open(url, '_blank').focus();
1204     }
1205
1206     $scope.retrieveSelected = function(selected) {
1207         if (!selected.length) return;
1208         angular.forEach(selected, function(usr) {
1209             $timeout(function() {
1210                 var url = $location.absUrl().replace(
1211                     /\/patron\/.*/,
1212                     '/patron/' + usr.id + '/checkout');
1213                 $window.open(url, '_blank')
1214             });
1215         });
1216     }
1217
1218 }])
1219
1220 .controller('PatronStatCatsCtrl',
1221        ['$scope','$routeParams','$q','egCore','patronSvc',
1222 function($scope,  $routeParams , $q , egCore , patronSvc) {
1223     $scope.initTab('other', $routeParams.id)
1224     .then(function(redirect) {
1225         // Entries for org-visible stat cats are fleshed.  Any others
1226         // have to be fleshed within.
1227
1228         var to_flesh = {};
1229         angular.forEach(patronSvc.current.stat_cat_entries(), 
1230             function(entry) {
1231                 if (!angular.isObject(entry.stat_cat())) {
1232                     to_flesh[entry.stat_cat()] = entry;
1233                 }
1234             }
1235         );
1236
1237         if (!Object.keys(to_flesh).length) return;
1238
1239         egCore.pcrud.search('actsc', {id : Object.keys(to_flesh)})
1240         .then(null, null, function(cat) { // stream
1241             cat.owner(egCore.org.get(cat.owner())); // owner flesh
1242             to_flesh[cat.id()].stat_cat(cat);
1243         });
1244     });
1245 }])
1246
1247 .controller('PatronSurveyCtrl',
1248        ['$scope','$routeParams','$location','egCore','patronSvc',
1249 function($scope,  $routeParams , $location , egCore , patronSvc) {
1250     $scope.initTab('other', $routeParams.id);
1251     var usr_id = $routeParams.id;
1252     var org_ids = egCore.org.fullPath(egCore.auth.user().ws_ou(), true);
1253
1254     $scope.surveys = [];
1255     var svr_responses = {};
1256
1257     // fetch all survey responses for this user.
1258     egCore.pcrud.search('asvr',
1259         {usr : usr_id},
1260         {flesh : 2, flesh_fields : {asvr : ['survey','question','answer']}}
1261     ).then(
1262         function() {
1263             // All responses collected and deduplicated.
1264             // Create one collection of responses per survey.
1265
1266             angular.forEach(svr_responses, function(questions, survey_id) {
1267                 var collection = {responses : []};
1268                 angular.forEach(questions, function(response) {
1269                     collection.survey = response.survey(); // same for one.
1270                     collection.responses.push(response);
1271                 });
1272                 $scope.surveys.push(collection);
1273             });
1274         },
1275         null, 
1276         function(response) {
1277
1278             // Discard responses for out-of-scope surveys.
1279             if (org_ids.indexOf(response.survey().owner()) < 0) 
1280                 return;
1281
1282             // survey_id => question_id => response
1283             var svr_id = response.survey().id();
1284             var qst_id = response.question().id();
1285
1286             if (!svr_responses[svr_id]) 
1287                 svr_responses[svr_id] = [];
1288
1289             if (!svr_responses[svr_id][qst_id]) {
1290                 svr_responses[svr_id][qst_id] = response;
1291
1292             } else {
1293                 // We have multiple responses for the same question.
1294                 // For this UI we only care about the most recent response.
1295                 if (response.effective_date() > 
1296                     svr_responses[svr_id][qst_id].effective_date())
1297                     svr_responses[svr_id][qst_id] = response;
1298             }
1299         }
1300     );
1301 }])
1302
1303 .controller('PatronFetchLastCtrl',
1304        ['$scope','$location','egCore',
1305 function($scope , $location , egCore) {
1306
1307     var ids = egCore.hatch.getLoginSessionItem('eg.circ.recent_patrons') || [];
1308     if (ids.length) 
1309         return $location.path('/circ/patron/' + ids[0] + '/checkout');
1310
1311     $scope.no_last = true;
1312 }])
1313
1314 .controller('PatronTriggeredEventsCtrl',
1315        ['$scope','$routeParams','$location','egCore','patronSvc',
1316 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1317     $scope.initTab('other', $routeParams.id);
1318
1319     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
1320     url += '?patron_id=' + encodeURIComponent($routeParams.id);
1321
1322     $scope.triggered_events_url = url;
1323     $scope.funcs = {};
1324 }])
1325
1326 .controller('PatronMessageCenterCtrl',
1327        ['$scope','$routeParams','$location','egCore','patronSvc',
1328 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1329     $scope.initTab('other', $routeParams.id);
1330
1331     var url = $location.protocol() + '://' + $location.host()
1332         + egCore.env.basePath.replace(/\/staff.*/,  '/actor/user/message');
1333     url += '/' + encodeURIComponent($routeParams.id);
1334
1335     $scope.message_center_url = url;
1336     $scope.funcs = {};
1337 }])
1338
1339 .controller('PatronPermsCtrl',
1340        ['$scope','$routeParams','$window','$location','egCore',
1341 function($scope , $routeParams , $window , $location , egCore) {
1342     $scope.initTab('other', $routeParams.id);
1343
1344     var url = $location.absUrl().replace(
1345         /\/eg\/staff.*/, '/xul/server/patron/user_edit.xhtml');
1346
1347     url += '?usr=' + encodeURIComponent($routeParams.id);
1348
1349     // user_edit does not load the session via cookie.  It uses URL 
1350     // params or xulG instead.  Pass via xulG.
1351     $scope.funcs = {
1352         ses : egCore.auth.token(),
1353         on_patron_save : function() {
1354             $scope.funcs.reload();
1355         }
1356     }
1357
1358     $scope.user_perms_url = url;
1359 }])
1360