]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/app.js
e075c4f6f82f340bed1d8be1824c3e18d4c9283b
[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', 
8     'egCoreMod', 'egUiMod', 'egGridMod', 'egUserMod', 'ngToast'])
9
10 .config(['ngToastProvider', function(ngToastProvider) {
11     ngToastProvider.configure({
12         verticalPosition: 'bottom',
13         animation: 'fade'
14     });
15 }])
16
17 .config(function($routeProvider, $locationProvider, $compileProvider) {
18     $locationProvider.html5Mode(true);
19     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
20
21     // data loaded at startup which only requires an authtoken goes
22     // here. this allows the requests to be run in parallel instead of
23     // waiting until startup has completed.
24     var resolver = {delay : ['egCore','egUser', function(egCore , egUser) {
25
26         // fetch the org settings we care about during egStartup
27         // and toss them into egCore.env as egCore.env.aous[name] = value.
28         // note: only load settings here needed by all tabs; load tab-
29         // specific settings from within their respective controllers
30         egCore.env.classLoaders.aous = function() {
31             return egCore.org.settings([
32                 'ui.staff.require_initials.patron_info_notes',
33                 'circ.do_not_tally_claims_returned',
34                 'circ.tally_lost',
35                 'circ.obscure_dob',
36                 'ui.circ.show_billing_tab_on_bills',
37                 'circ.patron_expires_soon_warning',
38                 'ui.circ.items_out.lost',
39                 'ui.circ.items_out.longoverdue',
40                 'ui.circ.items_out.claimsreturned'
41             ]).then(function(settings) { 
42                 // local settings are cached within egOrg.  Caching them
43                 // again in egEnv just simplifies the syntax for access.
44                 egCore.env.aous = settings;
45             });
46         }
47
48         egCore.env.loadClasses.push('aous');
49
50         // app-globally modify the default flesh fields for 
51         // fleshed user retrieval.
52         if (egUser.defaultFleshFields.indexOf('profile') == -1) {
53             egUser.defaultFleshFields = egUser.defaultFleshFields.concat([
54                 'profile',
55                 'net_access_level',
56                 'ident_type',
57                 'ident_type2',
58                 'cards',
59                 'groups'
60             ]);
61         }
62
63         return egCore.startup.go().then(function() {
64
65             // This call requires orgs to be loaded, because it
66             // calls egCore.org.ancestors(), so call it after startup
67             return egCore.pcrud.search('actsc', 
68                 {owner : egCore.org.ancestors(
69                     egCore.auth.user().ws_ou(), true)},
70                 {}, {atomic : true}
71             ).then(function(cats) {
72                 egCore.env.absorbList(cats, 'actsc');
73             });
74         });
75     }]};
76
77     $routeProvider.when('/circ/patron/search', {
78         templateUrl: './circ/patron/t_search',
79         controller: 'PatronSearchCtrl',
80         resolve : resolver
81     });
82
83     $routeProvider.when('/circ/patron/bcsearch', {
84         templateUrl: './circ/patron/t_bcsearch',
85         controller: 'PatronBarcodeSearchCtrl',
86         resolve : resolver
87     });
88
89     $routeProvider.when('/circ/patron/credentials', {
90         templateUrl: './circ/patron/t_credentials',
91         controller: 'PatronVerifyCredentialsCtrl',
92         resolve : resolver
93     });
94
95     $routeProvider.when('/circ/patron/last', {
96         templateUrl: './circ/patron/t_last_patron',
97         controller: 'PatronFetchLastCtrl',
98         resolve : resolver
99     });
100
101     // the following require a patron ID
102
103     $routeProvider.when('/circ/patron/:id/alerts', {
104         templateUrl: './circ/patron/t_alerts',
105         controller: 'PatronAlertsCtrl',
106         resolve : resolver
107     });
108
109     $routeProvider.when('/circ/patron/:id/checkout', {
110         templateUrl: './circ/patron/t_checkout',
111         controller: 'PatronCheckoutCtrl',
112         resolve : resolver
113     });
114
115     $routeProvider.when('/circ/patron/:id/items_out', {
116         templateUrl: './circ/patron/t_items_out',
117         controller: 'PatronItemsOutCtrl',
118         resolve : resolver
119     });
120
121     $routeProvider.when('/circ/patron/:id/holds', {
122         templateUrl: './circ/patron/t_holds',
123         controller: 'PatronHoldsCtrl',
124         resolve : resolver
125     });
126
127     $routeProvider.when('/circ/patron/:id/holds/create', {
128         templateUrl: './circ/patron/t_holds_create',
129         controller: 'PatronHoldsCreateCtrl',
130         resolve : resolver
131     });
132
133     $routeProvider.when('/circ/patron/:id/holds/:hold_id', {
134         templateUrl: './circ/patron/t_holds',
135         controller: 'PatronHoldsCtrl',
136         resolve : resolver
137     });
138
139     $routeProvider.when('/circ/patron/:id/hold/:hold_id', {
140         templateUrl: './circ/patron/t_hold_details',
141         controller: 'PatronHoldDetailsCtrl',
142         resolve : resolver
143     });
144
145     $routeProvider.when('/circ/patron/:id/bills', {
146         templateUrl: './circ/patron/t_bills',
147         controller: 'PatronBillsCtrl',
148         resolve : resolver
149     });
150
151     $routeProvider.when('/circ/patron/:id/bill/:xact_id', {
152         templateUrl: './circ/patron/t_xact_details',
153         controller: 'XactDetailsCtrl',
154         resolve : resolver
155     });
156
157     $routeProvider.when('/circ/patron/:id/bill_history/:history_tab', {
158         templateUrl: './circ/patron/t_bill_history',
159         controller: 'BillHistoryCtrl',
160         resolve : resolver
161     });
162
163     $routeProvider.when('/circ/patron/:id/messages', {
164         templateUrl: './circ/patron/t_messages',
165         controller: 'PatronMessagesCtrl',
166         resolve : resolver
167     });
168
169     $routeProvider.when('/circ/patron/:id/edit', {
170         templateUrl: './circ/patron/t_edit',
171         controller: 'PatronRegCtrl',
172         resolve : resolver
173     });
174
175     $routeProvider.when('/circ/patron/:id/credentials', {
176         templateUrl: './circ/patron/t_credentials',
177         controller: 'PatronVerifyCredentialsCtrl',
178         resolve : resolver
179     });
180
181     $routeProvider.when('/circ/patron/:id/notes', {
182         templateUrl: './circ/patron/t_notes',
183         controller: 'PatronNotesCtrl',
184         resolve : resolver
185     });
186
187     $routeProvider.when('/circ/patron/:id/triggered_events', {
188         templateUrl: './circ/patron/t_triggered_events',
189         controller: 'PatronTriggeredEventsCtrl',
190         resolve : resolver
191     });
192
193     $routeProvider.when('/circ/patron/:id/message_center', {
194         templateUrl: './circ/patron/t_message_center',
195         controller: 'PatronMessageCenterCtrl',
196         resolve : resolver
197     });
198
199     $routeProvider.when('/circ/patron/:id/edit_perms', {
200         templateUrl: './circ/patron/t_edit_perms',
201         controller: 'PatronPermsCtrl',
202         resolve : resolver
203     });
204
205     $routeProvider.when('/circ/patron/:id/group', {
206         templateUrl: './circ/patron/t_group',
207         controller: 'PatronGroupCtrl',
208         resolve : resolver
209     });
210
211     $routeProvider.when('/circ/patron/:id/stat_cats', {
212         templateUrl: './circ/patron/t_stat_cats',
213         controller: 'PatronStatCatsCtrl',
214         resolve : resolver
215     });
216
217     $routeProvider.when('/circ/patron/:id/surveys', {
218         templateUrl: './circ/patron/t_surveys',
219         controller: 'PatronSurveyCtrl',
220         resolve : resolver
221     });
222
223     $routeProvider.otherwise({redirectTo : '/circ/patron/search'});
224 })
225
226 /**
227  * Patron service
228  */
229 .factory('patronSvc',
230        ['$q','$timeout','$location','egCore','egUser','$locale',
231 function($q , $timeout , $location , egCore,  egUser , $locale) {
232
233     var service = {
234         // cached patron search results
235         patrons : [],
236
237         // currently selected patron object
238         current : null, 
239
240         // patron circ stats (overdues, fines, holds)
241         patron_stats : null,
242
243         // event types manually overridden, which should always be
244         // overridden for checkouts to this patron for this instance of
245         // the interface.
246         checkout_overrides : {},        
247         //holds the searched barcode
248         search_barcode : null,      
249     };
250
251     // when we change the default patron, we need to clear out any
252     // data collected on that patron
253     service.resetPatronLists = function() {
254         service.checkouts = [];
255         service.items_out = []
256         service.items_out_ids = [];
257         service.holds = [];
258         service.hold_ids = [];
259         service.checkout_overrides = {};
260         service.patron_stats = null;
261         service.noncat_ids = [];
262         service.hasAlerts = false;
263         service.patronExpired = false;
264         service.patronExpiresSoon = false;
265         service.invalidAddresses = false;
266     }
267     service.resetPatronLists();  // initialize
268
269     // Returns true if the last alerted patron matches the current
270     // patron.  Otherwise, the last alerted patron is set to the 
271     // current patron and false is returned.
272     service.alertsShown = function() {
273         var key = 'eg.circ.last_alerted_patron';
274         var last_id = egCore.hatch.getSessionItem(key);
275         if (last_id && last_id == service.current.id()) return true;
276         egCore.hatch.setSessionItem(key, service.current.id());
277         return false;
278     }
279
280     // shortcut to force-reload the current primary
281     service.refreshPrimary = function() {
282         if (!service.current) return $q.when();
283         return service.setPrimary(service.current.id(), null, true);
284     }
285
286     // clear the currently focused user
287     service.clearPrimary = function() {
288         // reset with no patron
289         service.resetPatronLists();
290         service.current = null;
291         service.patron_stats = null;
292         return $q.when();
293     }
294
295     // sets the primary display user, fetching data as necessary.
296     service.setPrimary = function(id, user, force) {
297         var user_id = id ? id : (user ? user.id() : null);
298
299         console.debug('setting primary user to: ' + user_id);
300
301         if (!user_id) return $q.reject();
302
303         // when loading a new patron, update the last patron setting
304         if (!service.current || service.current.id() != user_id)
305             egCore.hatch.setLoginSessionItem('eg.circ.last_patron', user_id);
306
307         // avoid running multiple retrievals for the same patron, which
308         // can happen during dbl-click by maintaining a single running
309         // data retrieval promise
310         if (service.primaryUserPromise) {
311             if (service.primaryUserId == user_id) {
312                 return service.primaryUserPromise.promise;
313             } else {
314                 service.primaryUserPromise = null;
315             }
316         }
317
318         service.primaryUserPromise = $q.defer();
319         service.primaryUserId = user_id;
320
321         service.getPrimary(id, user, force)
322         .then(function() {
323             service.checkAlerts();
324             var p = service.primaryUserPromise;
325             service.primaryUserId = null;
326             // clear before resolution just to be safe.
327             service.primaryUserPromise = null;
328             p.resolve();
329         });
330
331         return service.primaryUserPromise.promise;
332     }
333
334     service.getPrimary = function(id, user, force) {
335
336         if (user) {
337             if (!force && service.current && 
338                 service.current.id() == user.id()) {
339                 if (service.patron_stats) {
340                     return $q.when();
341                 } else {
342                     return service.fetchUserStats();
343                 }
344             }
345
346             service.resetPatronLists();
347             service.current = user;
348             service.localFlesh(user);
349             return service.fetchUserStats();
350
351         } else if (id) {
352             if (!force && service.current && service.current.id() == id) {
353                 if (service.patron_stats) {
354                     return $q.when();
355                 } else {
356                     return service.fetchUserStats();
357                 }
358             }
359
360             service.resetPatronLists();
361
362             return egUser.get(id).then(
363                 function(user) {
364                     service.current = user;
365                     service.localFlesh(user);
366                     return service.fetchUserStats();
367                 },
368                 function(err) {
369                     console.error(
370                         "unable to fetch user "+id+': '+js2JSON(err))
371                 }
372             );
373         } else {
374
375             // fetching a null user clears the primary user.
376             // NOTE: this should probably reject() and log an error, 
377             // but calling clear for backwards compat for now.
378             return service.clearPrimary();
379         }
380     }
381
382     // flesh some additional user fields locally
383     service.localFlesh = function(user) {
384         if (!angular.isObject(typeof user.home_ou()))
385             user.home_ou(egCore.org.get(user.home_ou()));
386
387         angular.forEach(
388             user.standing_penalties(),
389             function(penalty) {
390                 if (!angular.isObject(penalty.org_unit()))
391                     penalty.org_unit(egCore.org.get(penalty.org_unit()));
392             }
393         );
394
395         // stat_cat_entries == stat_cat_entry_user_map
396         angular.forEach(user.stat_cat_entries(), function(map) {
397             if (angular.isObject(map.stat_cat())) return;
398             // At page load, we only retrieve org-visible stat cats.
399             // For the common case, ignore entries for remote stat cats.
400             var cat = egCore.env.actsc.map[map.stat_cat()];
401             if (cat) {
402                 map.stat_cat(cat);
403                 cat.owner(egCore.org.get(cat.owner()));
404             }
405         });
406     }
407
408     // resolves to true if the patron account has expired or will
409     // expire soon, based on YAOUS circ.patron_expires_soon_warning
410     // note: returning a promise is no longer strictly necessary
411     // (no more async activity) if the calling function is changed too.
412     service.testExpire = function() {
413
414         var expire = Date.parse(service.current.expire_date());
415         if (expire < new Date()) {
416             return $q.when(service.patronExpired = true);
417         }
418
419         var soon = egCore.env.aous['circ.patron_expires_soon_warning'];
420         if (Number(soon)) {
421             var preExpire = new Date();
422             preExpire.setDate(preExpire.getDate() + Number(soon));
423             if (expire < preExpire) 
424                 return $q.when(service.patronExpiresSoon = true);
425         }
426
427         return $q.when(false);
428     }
429
430     // resolves to true if the patron account has any invalid addresses.
431     service.testInvalidAddrs = function() {
432
433         if (service.invalidAddresses)
434             return $q.when(true);
435
436         var fail = false;
437
438         angular.forEach(
439             service.current.addresses(), 
440             function(addr) { if (addr.valid() == 'f') fail = true }
441         );
442
443         return $q.when(fail);
444     }
445     //resolves to true if the patron was fetched with an inactive card
446     service.fetchedWithInactiveCard = function() {
447         var bc = service.search_barcode
448         var cards = service.current.cards();
449         var card = cards.filter(function(c) { return c.barcode() == bc })[0];
450         return (card && card.active() == 'f');
451     }   
452     // resolves to true if there is any aspect of the patron account
453     // which should produce a message in the alerts panel
454     service.checkAlerts = function() {
455
456         if (service.hasAlerts) // already checked
457             return $q.when(true); 
458
459         var deferred = $q.defer();
460         var p = service.current;
461
462         if (service.alert_penalties.length ||
463             p.alert_message() ||
464             p.active() == 'f' ||
465             p.barred() == 't' ||
466             service.patron_stats.holds.ready) {
467
468             service.hasAlerts = true;
469         }
470
471         // see if the user was retrieved with an inactive card
472         if(service.fetchedWithInactiveCard()){
473             service.hasAlerts = true;
474         }
475
476         // regardless of whether we know of alerts, we still need 
477         // to test/fetch the expire data for display
478         service.testExpire().then(function(bool) {
479             if (bool) service.hasAlerts = true;
480             deferred.resolve(service.hasAlerts);
481         });
482
483         service.testInvalidAddrs().then(function(bool) {
484             if (bool) service.invalidAddresses = true;
485             deferred.resolve(service.invalidAddresses);
486         });
487
488         return deferred.promise;
489     }
490
491     service.fetchGroupFines = function() {
492         return egCore.net.request(
493             'open-ils.actor',
494             'open-ils.actor.usergroup.members.balance_owed',
495             egCore.auth.token(), service.current.usrgroup()
496         ).then(function(list) {
497             var total = 0;
498             angular.forEach(list, function(u) { 
499                 total += 100 * Number(u.balance_owed)
500             });
501             service.patron_stats.fines.group_balance_owed = total / 100;
502         });
503     }
504
505     service.getUserStats = function(id) {
506         return egCore.net.request(
507             'open-ils.actor',
508             'open-ils.actor.user.opac.vital_stats.authoritative', 
509             egCore.auth.token(), id
510         ).then(
511             function(stats) {
512                 // force numeric to ensure correct boolean handling in templates
513                 stats.fines.balance_owed = Number(stats.fines.balance_owed);
514                 stats.checkouts.overdue = Number(stats.checkouts.overdue);
515                 stats.checkouts.claims_returned = 
516                     Number(stats.checkouts.claims_returned);
517                 stats.checkouts.lost = Number(stats.checkouts.lost);
518                 stats.checkouts.out = Number(stats.checkouts.out);
519                 stats.checkouts.total_out = 
520                     stats.checkouts.out + stats.checkouts.overdue;
521
522                 if (!egCore.env.aous['circ.do_not_tally_claims_returned'])
523                     stats.checkouts.total_out += stats.checkouts.claims_returned;
524
525                 if (egCore.env.aous['circ.tally_lost'])
526                     stats.checkouts.total_out += stats.checkouts.lost
527
528                 return stats;
529             }
530         );
531     }
532
533     // Fetches the IDs of any active non-cat checkouts for the current
534     // user.  Also sets the patron_stats non_cat count value to match.
535     service.getUserNonCats = function(id) {
536         return egCore.net.request(
537             'open-ils.circ',
538             'open-ils.circ.open_non_cataloged_circulation.user.authoritative',
539             egCore.auth.token(), id
540         ).then(function(noncat_ids) {
541             service.noncat_ids = noncat_ids;
542             service.patron_stats.checkouts.noncat = noncat_ids.length;
543         });
544     }
545
546     // grab additional circ info
547     service.fetchUserStats = function() {
548         return service.getUserStats(service.current.id())
549         .then(function(stats) {
550             service.patron_stats = stats
551             service.alert_penalties = service.current.standing_penalties()
552                 .filter(function(pen) { 
553                 return pen.standing_penalty().staff_alert() == 't' 
554             });
555
556             service.summary_stat_cats = [];
557             angular.forEach(service.current.stat_cat_entries(), 
558                 function(map) {
559                     if (angular.isObject(map.stat_cat()) &&
560                         map.stat_cat().usr_summary() == 't') {
561                         service.summary_stat_cats.push(map);
562                     }
563                 }
564             );
565
566             // run these two in parallel
567             var p1 = service.getUserNonCats(service.current.id());
568             var p2 = service.fetchGroupFines();
569             return $q.all([p1, p2]);
570         });
571     }
572
573     // Avoid using parens [e.g. (1.23)] to indicate negative numbers, 
574     // which is the Angular default.
575     // http://stackoverflow.com/questions/17441254/why-angularjs-currency-filter-formats-negative-numbers-with-parenthesis
576     // FIXME: This change needs to be moved into a project-wide collection
577     // of locale overrides.
578     $locale.NUMBER_FORMATS.PATTERNS[1].negPre = '-';
579     $locale.NUMBER_FORMATS.PATTERNS[1].negSuf = '';
580
581     return service;
582 }])
583
584 /**
585  * Manages tabbed patron view.
586  * This is the parent scope of all patron tab scopes.
587  *
588  * */
589 .controller('PatronCtrl',
590        ['$scope','$q','$location','$filter','egCore','egUser','patronSvc',
591 function($scope,  $q,  $location , $filter,  egCore,  egUser,  patronSvc) {
592
593     $scope.is_patron_edit = function() {
594         return Boolean($location.path().match(/patron\/\d+\/edit$/));
595     }
596
597     // To support the fixed position patron edit actions bar,
598     // its markup has to live outside the scope of the patron 
599     // edit controller.  Insert a scope blob here that can be
600     // modifed from within the patron edit controller.
601     $scope.edit_passthru = {};
602
603     // returns true if a redirect occurs
604     function redirectToAlertPanel() {
605
606         $scope.alert_penalties = 
607             function() {return patronSvc.alert_penalties}
608
609         if (patronSvc.alertsShown()) return false;
610
611         // if the patron has any unshown alerts, show them now
612         if (patronSvc.hasAlerts && 
613             !$location.path().match(/alerts$/)) {
614
615             $location
616                 .path('/circ/patron/' + patronSvc.current.id() + '/alerts')
617                 .search('card', null);
618             return true;
619         }
620
621         // no alert required.  If the patron has fines and the show-bills
622         // OUS is applied, direct to the bills page.
623         if ($scope.patron_stats().fines.balance_owed > 0 // TODO: != 0 ?
624             && egCore.env.aous['ui.circ.show_billing_tab_on_bills']
625             && !$location.path().match(/bills$/)) {
626
627             $scope.tab = 'bills';
628             $location
629                 .path('/circ/patron/' + patronSvc.current.id() + '/bills')
630                 .search('card', null);
631
632             return true;
633         }
634
635         return false;
636     }
637
638     // called after each route-specified controller is instantiated.
639     // this doubles as a way to inform the top-level controller that
640     // egStartup.go() has completed, which means we are clear to 
641     // fetch the patron, etc.
642     $scope.initTab = function(tab, patron_id) {
643         console.log('init tab ' + tab);
644         $scope.tab = tab;
645         $scope.aous = egCore.env.aous;
646
647         if (patron_id) {
648             $scope.patron_id = patron_id;
649             return patronSvc.setPrimary($scope.patron_id)
650             .then(function() {return patronSvc.checkAlerts()})
651             .then(redirectToAlertPanel);
652         }
653         return $q.when();
654     }
655
656     $scope._show_dob = {};
657     $scope.show_dob = function (val) {
658         if ($scope.patron()) {
659             if (typeof val != 'undefined') $scope._show_dob[$scope.patron().id()] = val;
660             return $scope._show_dob[$scope.patron().id()];
661         }
662         return !egCore.env.aous['circ.obscure_dob'];
663     }
664         
665     $scope.obscure_dob = function() { 
666         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'];
667     }
668     $scope.now_show_dob = function() { 
669         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'] ?
670             $scope.show_dob() : true; 
671     }
672
673     $scope.patron = function() { return patronSvc.current }
674     $scope.patron_stats = function() { return patronSvc.patron_stats }
675     $scope.summary_stat_cats = function() { return patronSvc.summary_stat_cats }
676     $scope.hasAlerts = function() { return patronSvc.hasAlerts }
677     $scope.isPatronExpired = function() { return patronSvc.patronExpired }
678
679     $scope.print_address = function(addr) {
680         egCore.print.print({
681             context : 'default', 
682             template : 'patron_address', 
683             scope : {
684                 patron : egCore.idl.toHash(patronSvc.current),
685                 address : egCore.idl.toHash(addr)
686             }
687         });
688     }
689
690     $scope.toggle_expand_summary = function() {
691         if ($scope.collapsePatronSummary) {
692             $scope.collapsePatronSummary = false;
693             egCore.hatch.removeItem('eg.circ.patron.summary.collapse');
694         } else {
695             $scope.collapsePatronSummary = true;
696             egCore.hatch.setItem('eg.circ.patron.summary.collapse', true);
697         }
698     }
699     
700     // always expand the patron summary in the search UI, regardless
701     // of stored preference.
702     $scope.collapse_summary = function() {
703         return $scope.tab != 'search' && $scope.collapsePatronSummary;
704     }
705
706     egCore.hatch.getItem('eg.circ.patron.summary.collapse')
707     .then(function(val) {$scope.collapsePatronSummary = Boolean(val)});
708 }])
709
710 .controller('PatronBarcodeSearchCtrl',
711        ['$scope','$location','egCore','egConfirmDialog','egUser','patronSvc',
712 function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc) {
713     $scope.selectMe = true; // focus text input
714     patronSvc.clearPrimary(); // clear the default user
715
716     // jump to the patron checkout UI
717     function loadPatron(user_id) {
718         egCore.audio.play('success.patron.by_barcode');
719         $location
720         .path('/circ/patron/' + user_id + '/checkout')
721         .search('card', $scope.args.barcode);
722         patronSvc.search_barcode = $scope.args.barcode;
723     }
724
725     // create an opt-in=yes response for the loaded user
726     function createOptIn(user_id) {
727         egCore.net.request(
728             'open-ils.actor',
729             'open-ils.actor.user.org_unit_opt_in.create',
730             egCore.auth.token(), user_id).then(function(resp) {
731                 if (evt = egCore.evt.parse(resp)) return alert(evt);
732                 loadPatron(user_id);
733             }
734         );
735     }
736
737     $scope.submitBarcode = function(args) {
738         $scope.bcNotFound = null;
739         $scope.optInRestricted = false;
740         if (!args.barcode) return;
741
742         // blur so next time it's set to true it will re-apply select()
743         $scope.selectMe = false;
744
745         var user_id;
746
747         // lookup barcode
748         egCore.net.request(
749             'open-ils.actor',
750             'open-ils.actor.get_barcodes',
751             egCore.auth.token(), egCore.auth.user().ws_ou(), 
752             'actor', args.barcode)
753
754         .then(function(resp) { // get_barcodes
755
756             if (evt = egCore.evt.parse(resp)) {
757                 alert(evt); // FIXME
758                 return;
759             }
760
761             if (!resp || !resp[0]) {
762                 $scope.bcNotFound = args.barcode;
763                 $scope.selectMe = true;
764                 egCore.audio.play('warning.patron.not_found');
765                 return;
766             }
767
768             // see if an opt-in request is needed
769             user_id = resp[0].id;
770             return egCore.net.request(
771                 'open-ils.actor',
772                 'open-ils.actor.user.org_unit_opt_in.check',
773                 egCore.auth.token(), user_id);
774
775         }).then(function(optInResp) { // opt_in_check
776
777             if (evt = egCore.evt.parse(optInResp)) {
778                 alert(evt); // FIXME
779                 return;
780             }
781
782             if (optInResp == 2) {
783                 // opt-in disallowed at this location by patron's home library
784                 $scope.optInRestricted = true;
785                 $scope.selectMe = true;
786                 egCore.audio.play('warning.patron.opt_in_restricted');
787                 return;
788             }
789            
790             if (optInResp == 1) {
791                 // opt-in handled or not needed
792                 return loadPatron(user_id);
793             }
794
795             // opt-in needed, show the opt-in dialog
796             egUser.get(user_id, {useFields : []})
797
798             .then(function(user) { // retrieve user
799                 egConfirmDialog.open(
800                     egCore.strings.OPT_IN_DIALOG, '',
801                     {   org : egCore.org.get(user.home_ou()),
802                         user : user,
803                         ok : function() { createOptIn(user.id()) },
804                         cancel : function() {}
805                     }
806                 );
807             })
808         });
809     }
810 }])
811
812
813 /**
814  * Manages patron search
815  */
816 .controller('PatronSearchCtrl',
817        ['$scope','$q','$routeParams','$timeout','$window','$location','egCore',
818        '$filter','egUser', 'patronSvc','egGridDataProvider','$document',
819        'egPatronMerge',
820 function($scope,  $q,  $routeParams,  $timeout,  $window,  $location,  egCore,
821         $filter,  egUser,  patronSvc , egGridDataProvider , $document,
822         egPatronMerge) {
823
824     $scope.initTab('search');
825     $scope.focusMe = true;
826     $scope.searchArgs = {
827         // default to searching globally
828         home_ou : egCore.org.tree()
829     };
830
831     // last used patron search form element
832     var lastFormElement;
833
834     $scope.gridControls = {
835         activateItem : function(item) {
836             $location.path('/circ/patron/' + item.id() + '/checkout');
837         },
838         selectedItems : function() {return []}
839     }
840
841     // Handle URL-encoded searches
842     if ($location.search().search) {
843         console.log('URL search = ' + $location.search().search);
844         patronSvc.urlSearch = {search : JSON2js($location.search().search)};
845
846         // why the double-JSON encoded sort?
847         if (patronSvc.urlSearch.search.search_sort) {
848             patronSvc.urlSearch.sort = 
849                 JSON2js(patronSvc.urlSearch.search.search_sort);
850         } else {
851             patronSvc.urlSearch.sort = [];
852         }
853         delete patronSvc.urlSearch.search.search_sort;
854     }
855
856     var propagate;
857     if (patronSvc.lastSearch) {
858         propagate = patronSvc.lastSearch.search;
859         // home_ou needs to be treated specially
860         propagate.home_ou = {
861             value : patronSvc.lastSearch.home_ou,
862             group : 0
863         };
864     } else if (patronSvc.urlSearch) {
865         propagate = patronSvc.urlSearch.search;
866     }
867
868     if (egCore.env.pgt) {
869         $scope.profiles = egCore.env.pgt.list;
870     } else {
871         egCore.pcrud.search('pgt', {parent : null}, 
872             {flesh : -1, flesh_fields : {pgt : ['children']}}
873         ).then(
874             function(tree) {
875                 egCore.env.absorbTree(tree, 'pgt')
876                 $scope.profiles = egCore.env.pgt.list;
877             }
878         );
879     }
880
881     if (propagate) {
882         // populate the search form with our cached / preexisting search info
883         angular.forEach(propagate, function(val, key) {
884             if (key == 'profile')
885                 val.value = $scope.profiles.filter(function(p) { return p.id() == val.value })[0];
886             if (key == 'home_ou')
887                 val.value = egCore.org.get(val.value);
888             $scope.searchArgs[key] = val.value;
889         });
890     }
891
892     var provider = egGridDataProvider.instance({});
893
894     $scope.$watch(
895         function() {return $scope.gridControls.selectedItems()},
896         function(list) {
897             if (list[0]) 
898                 patronSvc.setPrimary(null, list[0]);
899         },
900         true
901     );
902         
903     provider.get = function(offset, count) {
904         var deferred = $q.defer();
905
906         var fullSearch;
907         if (patronSvc.urlSearch) {
908             fullSearch = patronSvc.urlSearch;
909             // enusre the urlSearch only runs once.
910             delete patronSvc.urlSearch;
911
912         } else {
913             patronSvc.search_barcode = $scope.searchArgs.card;
914             
915             var search = compileSearch($scope.searchArgs);
916             if (Object.keys(search) == 0) return $q.when();
917
918             var home_ou = search.home_ou;
919             delete search.home_ou;
920             var inactive = search.inactive;
921             delete search.inactive;
922
923             fullSearch = {
924                 search : search,
925                 sort : compileSort(),
926                 inactive : inactive,
927                 home_ou : home_ou,
928             };
929         }
930
931         fullSearch.count = count;
932         fullSearch.offset = offset;
933
934         if (patronSvc.lastSearch) {
935             // search repeated, return the cached results
936             if (angular.equals(fullSearch, patronSvc.lastSearch)) {
937                 console.log('patron search returning ' + 
938                     patronSvc.patrons.length + ' cached results');
939                 
940                 // notify has to happen after returning the promise
941                 $timeout(
942                     function() {
943                         angular.forEach(patronSvc.patrons, function(user) {
944                             deferred.notify(user);
945                         });
946                         deferred.resolve();
947                     }
948                 );
949                 return deferred.promise;
950             }
951         }
952
953         patronSvc.lastSearch = fullSearch;
954
955         if (fullSearch.search.id) {
956             // search by user id performs a direct ID lookup
957             var userId = fullSearch.search.id.value;
958             $timeout(
959                 function() {
960                     egUser.get(userId).then(function(user) {
961                         patronSvc.localFlesh(user);
962                         patronSvc.patrons = [user];
963                         deferred.notify(user);
964                         deferred.resolve();
965                     });
966                 }
967             );
968             return deferred.promise;
969         }
970
971         // Dispay the search progress bar to indicate a search is in progress
972         $scope.show_search_progress = true;
973
974         patronSvc.patrons = [];
975         egCore.net.request(
976             'open-ils.actor',
977             'open-ils.actor.patron.search.advanced.fleshed',
978             egCore.auth.token(), 
979             fullSearch.search, 
980             fullSearch.count,
981             fullSearch.sort,
982             fullSearch.inactive,
983             fullSearch.home_ou,
984             egUser.defaultFleshFields,
985             fullSearch.offset
986
987         ).then(
988             function() {
989                 // hide progress bar on 0-hits searches
990                 $scope.show_search_progress = false;
991                 deferred.resolve();
992             },
993             null, // onerror
994             function(user) {
995                 // hide progress bar as soon as the first result appears.
996                 $scope.show_search_progress = false;
997                 patronSvc.localFlesh(user); // inline
998                 patronSvc.patrons.push(user);
999                 deferred.notify(user);
1000             }
1001         );
1002
1003         return deferred.promise;
1004     };
1005
1006     $scope.patronSearchGridProvider = provider;
1007
1008     // determine the tree depth of the profile group
1009     $scope.pgt_depth = function(grp) {
1010         var d = 0;
1011         while (grp = egCore.env.pgt.map[grp.parent()]) d++;
1012         return d;
1013     }
1014
1015     $scope.clearForm = function () {
1016         $scope.searchArgs={};
1017         if (lastFormElement) lastFormElement.focus();
1018     }
1019
1020     $scope.applyShowExtras = function($event, bool) {
1021         if (bool) {
1022             $scope.showExtras = true;
1023             egCore.hatch.setItem('eg.circ.patron.search.show_extras', true);
1024         } else {
1025             $scope.showExtras = false;
1026             egCore.hatch.removeItem('eg.circ.patron.search.show_extras');
1027         }
1028         if (lastFormElement) lastFormElement.focus();
1029         $event.preventDefault();
1030     }
1031
1032     egCore.hatch.getItem('eg.circ.patron.search.show_extras')
1033     .then(function(val) {$scope.showExtras = val});
1034
1035     // map form arguments into search params
1036     function compileSearch(args) {
1037         var search = {};
1038         angular.forEach(args, function(val, key) {
1039             if (!val) return;
1040             if (key == 'profile' && args.profile) {
1041                 search.profile = {value : args.profile.id(), group : 0};
1042             } else if (key == 'home_ou' && args.home_ou) {
1043                 search.home_ou = args.home_ou.id(); // passed separately
1044             } else if (key == 'inactive') {
1045                 search.inactive = val;
1046             } else {
1047                 search[key] = {value : val, group : 0};
1048             }
1049             if (key.match(/phone|ident/)) {
1050                 search[key].group = 2;
1051             } else {
1052                 if (key.match(/street|city|state|post_code/)) {
1053                     search[key].group = 1;
1054                 } else if (key == 'card') {
1055                     search[key].group = 3
1056                 }
1057             }
1058         });
1059
1060         return search;
1061     }
1062
1063     function compileSort() {
1064
1065         if (!provider.sort.length) {
1066             return [ // default
1067                 "family_name ASC",
1068                 "first_given_name ASC",
1069                 "second_given_name ASC",
1070                 "dob DESC"
1071             ];
1072         }
1073
1074         var sort = [];
1075         angular.forEach(
1076             provider.sort,
1077             function(sortdef) {
1078                 if (angular.isObject(sortdef)) {
1079                     var name = Object.keys(sortdef)[0];
1080                     var dir = sortdef[name];
1081                     sort.push(name + ' ' + dir);
1082                 } else {
1083                     sort.push(sortdef);
1084                 }
1085             }
1086         );
1087
1088         return sort;
1089     }
1090
1091     $scope.setLastFormElement = function() {
1092         lastFormElement = $document[0].activeElement;
1093     }
1094
1095     // search form submit action; tells the results grid to
1096     // refresh itself.
1097     $scope.search = function(args) { // args === $scope.searchArgs
1098         if (args && Object.keys(args).length) 
1099             $scope.gridControls.refresh();
1100         if (lastFormElement) lastFormElement.focus();
1101     }
1102
1103     // TODO: move this into the (forthcoming) grid row activate action
1104     $scope.onPatronDblClick = function($event, user) {
1105         $location.path('/circ/patron/' + user.id() + '/checkout');
1106     }
1107
1108     if (patronSvc.urlSearch) {
1109         // force the grid to load the url-based search on page load
1110         provider.refresh();
1111     }
1112
1113     $scope.need_two_selected = function() {
1114         var items = $scope.gridControls.selectedItems();
1115         return (items.length == 2) ? false : true;
1116     }
1117     $scope.merge_patrons = function() {
1118         var items = $scope.gridControls.selectedItems();
1119         if (items.length != 2) return false;
1120
1121         var patron_ids = [];
1122         angular.forEach(items, function(i) {
1123             patron_ids.push(i.id());
1124         });
1125         egPatronMerge.do_merge(patron_ids).then(function() {
1126             // ensure that we're not drawing from cached
1127             // resuts, as a successful merge just deleted a
1128             // record
1129             delete patronSvc.lastSearch;
1130             $scope.gridControls.refresh();
1131         });
1132     }
1133    
1134 }])
1135
1136 /**
1137  * Manages messages
1138  */
1139 .controller('PatronMessagesCtrl',
1140        ['$scope','$q','$routeParams','egCore','$uibModal','patronSvc','egCirc',
1141 function($scope , $q , $routeParams,  egCore , $uibModal , patronSvc , egCirc) {
1142     $scope.initTab('messages', $routeParams.id);
1143     var usr_id = $routeParams.id;
1144
1145     // setup date filters
1146     var start = new Date(); // now - 1 year
1147     start.setFullYear(start.getFullYear() - 1),
1148     $scope.dates = {
1149         start_date : start,
1150         end_date : new Date()
1151     }
1152
1153     function date_range() {
1154         var start = $scope.dates.start_date.toISOString().replace(/T.*/,'');
1155         var end = $scope.dates.end_date.toISOString().replace(/T.*/,'');
1156         var today = new Date().toISOString().replace(/T.*/,'');
1157         if (end == today) end = 'now';
1158         return [start, end];
1159     }
1160
1161     // grid queries
1162    
1163     var activeGrid = $scope.activeGridControls = {
1164         setSort : function() {
1165             return ['set_date'];
1166         },
1167         setQuery : function() {
1168             return {
1169                 usr : usr_id,
1170                 '-or' : [
1171                     {stop_date : null},
1172                     {stop_date : {'>' : 'now'}}
1173                 ]
1174             }
1175         }
1176     }
1177
1178     var archiveGrid = $scope.archiveGridControls = {
1179         setSort : function() {
1180             return ['set_date'];
1181         },
1182         setQuery : function() {
1183             return {
1184                 usr : usr_id, 
1185                 stop_date : {'<=' : 'now'},
1186                 set_date : {between : date_range()}
1187             };
1188         }
1189     };
1190
1191     $scope.removePenalty = function(selected) {
1192         // the grid stores flattened penalties.  Fetch penalty objects first
1193
1194         var ids = selected.map(function(s){ return s.id });
1195         egCore.pcrud.search('ausp', 
1196             {id : ids}, {}, 
1197             {atomic : true, authoritative : true}
1198
1199         // then delete them
1200         ).then(function(penalties) {
1201             return egCore.pcrud.remove(penalties);
1202
1203         // then refresh the grid
1204         }).then(function() {
1205             activeGrid.refresh();
1206         });
1207     }
1208
1209     $scope.archivePenalty = function(selected) {
1210         // the grid stores flattened penalties.  Fetch penalty objects first
1211
1212         var ids = selected.map(function(s){ return s.id });
1213         egCore.pcrud.search('ausp', 
1214             {id : ids}, {}, 
1215             {atomic : true, authoritative : true}
1216
1217         // then delete them
1218         ).then(function(penalties) {
1219             angular.forEach(penalties, function(p){ p.stop_date('now') });
1220             return egCore.pcrud.update(penalties);
1221
1222         // then refresh the grid
1223         }).then(function() {
1224             activeGrid.refresh();
1225             archiveGrid.refresh();
1226         });
1227     }
1228
1229     // leverage egEnv for caching
1230     function fetchPenaltyTypes() {
1231         if (egCore.env.csp) 
1232             return $q.when(egCore.env.csp.list);
1233         return egCore.pcrud.search(
1234             // id <= 100 are reserved for system use
1235             'csp', {id : {'>': 100}}, {}, {atomic : true})
1236         .then(function(penalties) {
1237             egCore.env.absorbList(penalties, 'csp');
1238             return penalties;
1239         });
1240     }
1241
1242     $scope.createPenalty = function() {
1243         egCirc.create_penalty(usr_id).then(function() {
1244             activeGrid.refresh();
1245             // force a refresh of the user, since they may now
1246             // have blocking penalties, etc.
1247             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1248         });
1249     }
1250
1251     $scope.editPenalty = function(selected) {
1252         if (selected.length == 0) return;
1253
1254         // grab the penalty from the user object
1255         var penalty = patronSvc.current.standing_penalties().filter(
1256             function(p) {return p.id() == selected[0].id})[0];
1257
1258         egCirc.edit_penalty(penalty).then(function() {
1259             activeGrid.refresh();
1260             // force a refresh of the user, since they may now
1261             // have blocking penalties, etc.
1262             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1263         });
1264     }
1265 }])
1266
1267
1268 /**
1269  * Credentials tester
1270  */
1271 .controller('PatronVerifyCredentialsCtrl',
1272        ['$scope','$routeParams','$location','egCore',
1273 function($scope,  $routeParams , $location , egCore) {
1274     $scope.verified = null;
1275     $scope.focusMe = true;
1276
1277     // called with a patron, pre-populate the form args
1278     $scope.initTab('other', $routeParams.id).then(
1279         function() {
1280             if ($routeParams.id && $scope.patron()) {
1281                 $scope.prepop = true;
1282                 $scope.username = $scope.patron().usrname();
1283                 $scope.barcode = $scope.patron().card().barcode();
1284             } else {
1285                 $scope.username = '';
1286                 $scope.barcode = '';
1287                 $scope.password = '';
1288             }
1289         }
1290     );
1291
1292     // verify login credentials
1293     $scope.verify = function() {
1294         $scope.verified = null;
1295         $scope.notFound = false;
1296
1297         egCore.net.request(
1298             'open-ils.actor',
1299             'open-ils.actor.verify_user_password',
1300             egCore.auth.token(), $scope.barcode,
1301             $scope.username, hex_md5($scope.password || '')
1302
1303         ).then(function(resp) {
1304             $scope.focusMe = true;
1305             if (evt = egCore.evt.parse(resp)) {
1306                 alert(evt);
1307             } else if (resp == 1) {
1308                 $scope.verified = true;
1309             } else {
1310                 $scope.verified = false;
1311             }
1312         });
1313     }
1314
1315     // load the main patron UI for the provided username or barcode
1316     $scope.load = function($event) {
1317         $scope.notFound = false;
1318         $scope.verified = null;
1319
1320         egCore.net.request(
1321             'open-ils.actor',
1322             'open-ils.actor.user.retrieve_id_by_barcode_or_username',
1323             egCore.auth.token(), $scope.barcode, $scope.username
1324
1325         ).then(function(resp) {
1326
1327             if (Number(resp)) {
1328                 $location.path('/circ/patron/' + resp + '/checkout');
1329                 return;
1330             }
1331
1332             // something went wrong...
1333             $scope.focusMe = true;
1334             if (evt = egCore.evt.parse(resp)) {
1335                 if (evt.textcode == 'ACTOR_USR_NOT_FOUND') {
1336                     $scope.notFound = true;
1337                     return;
1338                 }
1339                 return alert(evt);
1340             } else {
1341                 alert(resp);
1342             }
1343         });
1344
1345         // load() button sits within the verify form.  
1346         // avoid submitting the verify() form action on load()
1347         $event.preventDefault();
1348     }
1349 }])
1350
1351 .controller('PatronAlertsCtrl',
1352        ['$scope','$routeParams','$location','egCore','patronSvc',
1353 function($scope,  $routeParams , $location , egCore , patronSvc) {
1354
1355     $scope.initTab('other', $routeParams.id)
1356     .then(function() {
1357         $scope.patronExpired = patronSvc.patronExpired;
1358         $scope.patronExpiresSoon = patronSvc.patronExpiresSoon;
1359         $scope.retrievedWithInactive = patronSvc.fetchedWithInactiveCard();
1360         $scope.invalidAddresses = patronSvc.invalidAddresses;
1361     });
1362
1363 }])
1364
1365 .controller('PatronNotesCtrl',
1366        ['$scope','$filter','$routeParams','$location','egCore','patronSvc','$uibModal',
1367         'egConfirmDialog',
1368 function($scope,  $filter , $routeParams , $location , egCore , patronSvc , $uibModal,
1369          egConfirmDialog) {
1370     $scope.initTab('other', $routeParams.id);
1371     var usr_id = $routeParams.id;
1372
1373     // fetch the notes
1374     function refreshPage() {
1375         $scope.notes = [];
1376         egCore.pcrud.search('aun', 
1377             {usr : usr_id}, 
1378             {flesh : 1, flesh_fields : {aun : ['creator']}}, 
1379             {authoritative : true})
1380         .then(null, null, function(note) {
1381             $scope.notes.push(note);
1382         });
1383     }
1384
1385     // open the new-note dialog and create the note
1386     $scope.newNote = function() {
1387         $uibModal.open({
1388             templateUrl: './circ/patron/t_new_note_dialog',
1389             controller: 
1390                 ['$scope', '$uibModalInstance',
1391             function($scope, $uibModalInstance) {
1392                 $scope.focusNote = true;
1393                 $scope.args = {};
1394                 $scope.require_initials = egCore.env.aous['ui.staff.require_initials.patron_info_notes'];
1395                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1396                 $scope.cancel = function () { $uibModalInstance.dismiss() }
1397             }],
1398         }).result.then(
1399             function(args) {
1400                 if (!args.value) return;
1401                 var note = new egCore.idl.aun();
1402                 note.usr(usr_id);
1403                 note.title(args.title);
1404                 note.value(args.value);
1405                 note.pub(args.pub ? 't' : 'f');
1406                 note.creator(egCore.auth.user().id());
1407                 if (args.initials) 
1408                     note.value(note.value() + ' [' + args.initials + ']');
1409                 egCore.pcrud.create(note).then(function() {refreshPage()});
1410             }
1411         );
1412     }
1413
1414     // delete the selected note
1415     $scope.deleteNote = function(note) {
1416         egConfirmDialog.open(
1417             egCore.strings.PATRON_NOTE_DELETE_CONFIRM_TITLE, egCore.strings.PATRON_NOTE_DELETE_CONFIRM,
1418             {ok : function() {
1419                 egCore.pcrud.remove(note).then(function() {refreshPage()});
1420             },
1421             note_title : note.title(),
1422             create_date : note.create_date()
1423         });
1424     }
1425
1426     // print the selected note
1427     $scope.printNote = function(note) {
1428         var hash = egCore.idl.toHash(note);
1429         hash.usr = egCore.idl.toHash($scope.patron());
1430         egCore.print.print({
1431             context : 'default', 
1432             template : 'patron_note', 
1433             scope : {note : hash}
1434         });
1435     }
1436
1437     // perform the initial note fetch
1438     refreshPage();
1439 }])
1440
1441 .controller('PatronGroupCtrl',
1442        ['$scope','$routeParams','$q','$window','$timeout','$location','egCore',
1443         'patronSvc','$uibModal','egPromptDialog','egConfirmDialog',
1444 function($scope,  $routeParams , $q , $window , $timeout,  $location , egCore ,
1445          patronSvc , $uibModal , egPromptDialog , egConfirmDialog) {
1446
1447     var usr_id = $routeParams.id;
1448
1449     $scope.totals = {owed : 0, total_out : 0, overdue : 0}
1450
1451     var grid = $scope.gridControls = {
1452         activateItem : function(item) {
1453             $location.path('/circ/patron/' + item.id + '/checkout');
1454         },
1455         itemRetrieved : function(item) {
1456
1457             if (item.id == patronSvc.current.id()) {
1458                 item.stats = patronSvc.patron_stats;
1459
1460             } else {
1461                 // flesh stats for other group members
1462                 patronSvc.getUserStats(item.id).then(function(stats) {
1463                     item.stats = stats;
1464                     $scope.totals.total_out += stats.checkouts.total_out; 
1465                     $scope.totals.overdue += stats.checkouts.overdue; 
1466                 });
1467             }
1468         },
1469         setSort : function() {
1470             return ['create_date'];
1471         }
1472     }
1473
1474     $scope.initTab('other', $routeParams.id)
1475     .then(function(redirect) {
1476         // if we are redirecting to the alerts page, avoid updating the
1477         // grid query.
1478         if (redirect) return;
1479         // let initTab() fetch the user first so we can know the usrgroup
1480
1481         grid.setQuery({
1482             usrgroup : patronSvc.current.usrgroup(),
1483             deleted : 'f'
1484         });
1485         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
1486     });
1487
1488     $scope.removeFromGroup = function(selected) {
1489         var promises = [];
1490         angular.forEach(selected, function(user) {
1491             console.debug('removing user ' + user.id + ' from group');
1492
1493             promises.push(
1494                 egCore.net.request(
1495                     'open-ils.actor',
1496                     'open-ils.actor.usergroup.new',
1497                     egCore.auth.token(), user.id, true
1498                 )
1499             );
1500         });
1501
1502         $q.all(promises).then(function() {grid.refresh()});
1503     }
1504
1505     function addUserToGroup(user) {
1506         user.usrgroup(patronSvc.current.usrgroup());
1507         user.ischanged(true);
1508         egCore.net.request(
1509             'open-ils.actor',
1510             'open-ils.actor.patron.update',
1511             egCore.auth.token(), user
1512
1513         ).then(function() {grid.refresh()});
1514     }
1515
1516     // fetch each user ("selected" has flattened users)
1517     // update the usrgroup, then update the user object
1518     // After all updates are complete, refresh the grid.
1519     function moveUsersToGroup(target_user, selected) {
1520         var promises = [];
1521
1522         angular.forEach(selected, function(user) {
1523             promises.push(
1524                 egCore.pcrud.retrieve('au', user.id)
1525                 .then(function(u) {
1526                     u.usrgroup(target_user.usrgroup());
1527                     u.ischanged(true);
1528                     return egCore.net.request(
1529                         'open-ils.actor',
1530                         'open-ils.actor.patron.update',
1531                         egCore.auth.token(), u
1532                     );
1533                 })
1534             );
1535         });
1536
1537         $q.all(promises).then(function() {grid.refresh()});
1538     }
1539
1540     function showMoveToGroupConfirm(barcode, selected, outbound) {
1541
1542         // find the user
1543         egCore.pcrud.search('ac', {barcode : barcode})
1544
1545         // fetch the fleshed user
1546         .then(function(card) {
1547
1548             if (!card) return; // TODO: warn user
1549
1550             egCore.pcrud.retrieve('au', card.usr())
1551             .then(function(user) {
1552                 user.card(card);
1553                 $uibModal.open({
1554                     templateUrl: './circ/patron/t_move_to_group_dialog',
1555                     controller: [
1556                                 '$scope','$uibModalInstance',
1557                         function($scope , $uibModalInstance) {
1558                             $scope.user = user;
1559                             $scope.selected = selected;
1560                             $scope.outbound = outbound;
1561                             $scope.ok = 
1562                                 function(count) { $uibModalInstance.close() }
1563                             $scope.cancel = 
1564                                 function () { $uibModalInstance.dismiss() }
1565                         }
1566                     ]
1567                 }).result.then(function() {
1568                     if (outbound) {
1569                         moveUsersToGroup(user, selected);
1570                     } else {
1571                         addUserToGroup(user);
1572                     }
1573                 });
1574             });
1575         });
1576     }
1577
1578     // selected == move selected patrons to another patron's group
1579     // !selected == patron from a different group moves into our group
1580     function moveToGroup(selected, outbound) {
1581         egPromptDialog.open(
1582             egCore.strings.GROUP_ADD_USER, '',
1583             {ok : function(value) {
1584                 if (value) 
1585                     showMoveToGroupConfirm(value, selected, outbound);
1586             }}
1587         );
1588     }
1589
1590     $scope.moveToGroup = function() { moveToGroup([], false) };
1591     $scope.moveToAnotherGroup = function(selected) { moveToGroup(selected, true) };
1592
1593     $scope.cloneUser = function(selected) {
1594         if (!selected.length) return;
1595         var url = $location.absUrl().replace(
1596             /\/patron\/.*/, 
1597             '/patron/register/clone/' + selected[0].id);
1598         $window.open(url, '_blank').focus();
1599     }
1600
1601     $scope.retrieveSelected = function(selected) {
1602         if (!selected.length) return;
1603         angular.forEach(selected, function(usr) {
1604             $timeout(function() {
1605                 var url = $location.absUrl().replace(
1606                     /\/patron\/.*/,
1607                     '/patron/' + usr.id + '/checkout');
1608                 $window.open(url, '_blank')
1609             });
1610         });
1611     }
1612
1613 }])
1614
1615 .controller('PatronStatCatsCtrl',
1616        ['$scope','$routeParams','$q','egCore','patronSvc',
1617 function($scope,  $routeParams , $q , egCore , patronSvc) {
1618     $scope.initTab('other', $routeParams.id)
1619     .then(function(redirect) {
1620         // Entries for org-visible stat cats are fleshed.  Any others
1621         // have to be fleshed within.
1622
1623         var to_flesh = {};
1624         angular.forEach(patronSvc.current.stat_cat_entries(), 
1625             function(entry) {
1626                 if (!angular.isObject(entry.stat_cat())) {
1627                     to_flesh[entry.stat_cat()] = entry;
1628                 }
1629             }
1630         );
1631
1632         if (!Object.keys(to_flesh).length) return;
1633
1634         egCore.pcrud.search('actsc', {id : Object.keys(to_flesh)})
1635         .then(null, null, function(cat) { // stream
1636             cat.owner(egCore.org.get(cat.owner())); // owner flesh
1637             to_flesh[cat.id()].stat_cat(cat);
1638         });
1639     });
1640 }])
1641
1642 .controller('PatronSurveyCtrl',
1643        ['$scope','$routeParams','$location','egCore','patronSvc',
1644 function($scope,  $routeParams , $location , egCore , patronSvc) {
1645     $scope.initTab('other', $routeParams.id);
1646     var usr_id = $routeParams.id;
1647     var org_ids = egCore.org.fullPath(egCore.auth.user().ws_ou(), true);
1648     $scope.surveys = [];
1649     // fetch the surveys
1650     egCore.pcrud.search('asvr',
1651         {usr : usr_id},
1652         {flesh : 4, flesh_fields : {
1653             asvr : ['question', 'survey', 'answer'],
1654             asv : ['responses', 'questions'],
1655             asvq : ['responses', 'question']
1656     }},
1657         {authoritative : true})
1658     .then(null, null, function(survey) {
1659         var sameSurveyId = false;
1660         if (survey.survey().id() && $scope.surveys.length > 0) {
1661             for (sid = 0; sid < $scope.surveys.length; sid++) {
1662                 if (survey.survey().id() == $scope.surveys[sid].id()) sameSurveyId = true; 
1663             }
1664         }
1665         if (!sameSurveyId) $scope.surveys.push(survey.survey());
1666     });
1667 }])
1668
1669 .controller('PatronFetchLastCtrl',
1670        ['$scope','$location','egCore',
1671 function($scope , $location , egCore) {
1672
1673     var id = egCore.hatch.getLoginSessionItem('eg.circ.last_patron');
1674     if (id) return $location.path('/circ/patron/' + id + '/checkout');
1675
1676     $scope.no_last = true;
1677 }])
1678
1679 .controller('PatronTriggeredEventsCtrl',
1680        ['$scope','$routeParams','$location','egCore','patronSvc',
1681 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1682     $scope.initTab('other', $routeParams.id);
1683
1684     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
1685     url += '?patron_id=' + encodeURIComponent($routeParams.id);
1686
1687     $scope.triggered_events_url = url;
1688     $scope.funcs = {};
1689 }])
1690
1691 .controller('PatronMessageCenterCtrl',
1692        ['$scope','$routeParams','$location','egCore','patronSvc',
1693 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1694     $scope.initTab('other', $routeParams.id);
1695
1696     var url = $location.protocol() + '://' + $location.host()
1697         + egCore.env.basePath.replace(/\/staff.*/,  '/actor/user/message');
1698     url += '/' + encodeURIComponent($routeParams.id);
1699
1700     $scope.message_center_url = url;
1701     $scope.funcs = {};
1702 }])
1703
1704 .controller('PatronPermsCtrl',
1705        ['$scope','$routeParams','$window','$location','egCore',
1706 function($scope , $routeParams , $window , $location , egCore) {
1707     $scope.initTab('other', $routeParams.id);
1708
1709     var url = $location.absUrl().replace(
1710         /\/eg\/staff.*/, '/xul/server/patron/user_edit.xhtml');
1711
1712     url += '?usr=' + encodeURIComponent($routeParams.id);
1713
1714     // user_edit does not load the session via cookie.  It uses URL 
1715     // params or xulG instead.  Pass via xulG.
1716     $scope.funcs = {
1717         ses : egCore.auth.token(),
1718         on_patron_save : function() {
1719             $scope.funcs.reload();
1720         }
1721     }
1722
1723     $scope.user_perms_url = url;
1724 }])
1725