]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/app.js
LP#1681466: Text for web client opt-in dialog
[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                 var org = egCore.org.get(user.home_ou());
800                 egConfirmDialog.open(
801                     egCore.strings.OPT_IN_DIALOG, '',
802                     {   family_name : user.family_name(),
803                         first_given_name : user.first_given_name(),
804                         org_name : org.name(),
805                         org_shortname : org.shortname(),
806                         ok : function() { createOptIn(user.id()) },
807                         cancel : function() {}
808                     }
809                 );
810             })
811         });
812     }
813 }])
814
815
816 /**
817  * Manages patron search
818  */
819 .controller('PatronSearchCtrl',
820        ['$scope','$q','$routeParams','$timeout','$window','$location','egCore',
821        '$filter','egUser', 'patronSvc','egGridDataProvider','$document',
822        'egPatronMerge','egProgressDialog',
823 function($scope,  $q,  $routeParams,  $timeout,  $window,  $location,  egCore,
824         $filter,  egUser,  patronSvc , egGridDataProvider , $document,
825         egPatronMerge , egProgressDialog) {
826
827     $scope.initTab('search');
828     $scope.focusMe = true;
829     $scope.searchArgs = {
830         // default to searching globally
831         home_ou : egCore.org.tree()
832     };
833
834     // last used patron search form element
835     var lastFormElement;
836
837     $scope.gridControls = {
838         activateItem : function(item) {
839             $location.path('/circ/patron/' + item.id() + '/checkout');
840         },
841         selectedItems : function() {return []}
842     }
843
844     // Handle URL-encoded searches
845     if ($location.search().search) {
846         console.log('URL search = ' + $location.search().search);
847         patronSvc.urlSearch = {search : JSON2js($location.search().search)};
848
849         // why the double-JSON encoded sort?
850         if (patronSvc.urlSearch.search.search_sort) {
851             patronSvc.urlSearch.sort = 
852                 JSON2js(patronSvc.urlSearch.search.search_sort);
853         } else {
854             patronSvc.urlSearch.sort = [];
855         }
856         delete patronSvc.urlSearch.search.search_sort;
857
858         // include inactive patrons if "inactive" param
859         if ($location.search().inactive) {
860             patronSvc.urlSearch.inactive = $location.search().inactive;
861         }
862     }
863
864     var propagate;
865     var propagate_inactive;
866     if (patronSvc.lastSearch) {
867         propagate = patronSvc.lastSearch.search;
868         // home_ou needs to be treated specially
869         propagate.home_ou = {
870             value : patronSvc.lastSearch.home_ou,
871             group : 0
872         };
873     } else if (patronSvc.urlSearch) {
874         propagate = patronSvc.urlSearch.search;
875         if (patronSvc.urlSearch.inactive) {
876             propagate_inactive = patronSvc.urlSearch.inactive;
877         }
878     }
879
880     if (egCore.env.pgt) {
881         $scope.profiles = egCore.env.pgt.list;
882     } else {
883         egCore.pcrud.search('pgt', {parent : null}, 
884             {flesh : -1, flesh_fields : {pgt : ['children']}}
885         ).then(
886             function(tree) {
887                 egCore.env.absorbTree(tree, 'pgt')
888                 $scope.profiles = egCore.env.pgt.list;
889             }
890         );
891     }
892
893     if (propagate) {
894         // populate the search form with our cached / preexisting search info
895         angular.forEach(propagate, function(val, key) {
896             if (key == 'profile')
897                 val.value = $scope.profiles.filter(function(p) { return p.id() == val.value })[0];
898             if (key == 'home_ou')
899                 val.value = egCore.org.get(val.value);
900             $scope.searchArgs[key] = val.value;
901         });
902         if (propagate_inactive) {
903             $scope.searchArgs.inactive = propagate_inactive;
904         }
905     }
906
907     var provider = egGridDataProvider.instance({});
908
909     $scope.$watch(
910         function() {return $scope.gridControls.selectedItems()},
911         function(list) {
912             if (list[0]) 
913                 patronSvc.setPrimary(null, list[0]);
914         },
915         true
916     );
917         
918     provider.get = function(offset, count) {
919         var deferred = $q.defer();
920
921         var fullSearch;
922         if (patronSvc.urlSearch) {
923             fullSearch = patronSvc.urlSearch;
924             // enusre the urlSearch only runs once.
925             delete patronSvc.urlSearch;
926
927         } else {
928             patronSvc.search_barcode = $scope.searchArgs.card;
929             
930             var search = compileSearch($scope.searchArgs);
931             if (Object.keys(search) == 0) return $q.when();
932
933             var home_ou = search.home_ou;
934             delete search.home_ou;
935             var inactive = search.inactive;
936             delete search.inactive;
937
938             fullSearch = {
939                 search : search,
940                 sort : compileSort(),
941                 inactive : inactive,
942                 home_ou : home_ou,
943             };
944         }
945
946         fullSearch.count = count;
947         fullSearch.offset = offset;
948
949         if (patronSvc.lastSearch) {
950             // search repeated, return the cached results
951             if (angular.equals(fullSearch, patronSvc.lastSearch)) {
952                 console.log('patron search returning ' + 
953                     patronSvc.patrons.length + ' cached results');
954                 
955                 // notify has to happen after returning the promise
956                 $timeout(
957                     function() {
958                         angular.forEach(patronSvc.patrons, function(user) {
959                             deferred.notify(user);
960                         });
961                         deferred.resolve();
962                     }
963                 );
964                 return deferred.promise;
965             }
966         }
967
968         patronSvc.lastSearch = fullSearch;
969
970         if (fullSearch.search.id) {
971             // search by user id performs a direct ID lookup
972             var userId = fullSearch.search.id.value;
973             $timeout(
974                 function() {
975                     egUser.get(userId).then(function(user) {
976                         patronSvc.localFlesh(user);
977                         patronSvc.patrons = [user];
978                         deferred.notify(user);
979                         deferred.resolve();
980                     });
981                 }
982             );
983             return deferred.promise;
984         }
985
986         if (!Object.keys(fullSearch.search).length) {
987             // Empty searches are rejected by the server.  Avoid 
988             // running the the empty search that runs on page load. 
989             return $q.when();
990         }
991
992         egProgressDialog.open(); // Indeterminate
993
994         patronSvc.patrons = [];
995         var which_sound = 'success';
996         egCore.net.request(
997             'open-ils.actor',
998             'open-ils.actor.patron.search.advanced.fleshed',
999             egCore.auth.token(), 
1000             fullSearch.search, 
1001             fullSearch.count,
1002             fullSearch.sort,
1003             fullSearch.inactive,
1004             fullSearch.home_ou,
1005             egUser.defaultFleshFields,
1006             fullSearch.offset
1007
1008         ).then(
1009             function() {
1010                 deferred.resolve();
1011             },
1012             function() { // onerror
1013                 which_sound = 'error';
1014             },
1015             function(user) {
1016                 // hide progress bar as soon as the first result appears.
1017                 egProgressDialog.close();
1018                 patronSvc.localFlesh(user); // inline
1019                 patronSvc.patrons.push(user);
1020                 deferred.notify(user);
1021             }
1022         )['finally'](function() { // close on 0-hits or error
1023             if (which_sound == 'success' && patronSvc.patrons.length == 0) {
1024                 which_sound = 'warning';
1025             }
1026             egCore.audio.play(which_sound + '.patron.by_search');
1027             egProgressDialog.close();
1028         });
1029
1030         return deferred.promise;
1031     };
1032
1033     $scope.patronSearchGridProvider = provider;
1034
1035     // determine the tree depth of the profile group
1036     $scope.pgt_depth = function(grp) {
1037         var d = 0;
1038         while (grp = egCore.env.pgt.map[grp.parent()]) d++;
1039         return d;
1040     }
1041
1042     $scope.clearForm = function () {
1043         $scope.searchArgs={};
1044         if (lastFormElement) lastFormElement.focus();
1045     }
1046
1047     $scope.applyShowExtras = function($event, bool) {
1048         if (bool) {
1049             $scope.showExtras = true;
1050             egCore.hatch.setItem('eg.circ.patron.search.show_extras', true);
1051         } else {
1052             $scope.showExtras = false;
1053             egCore.hatch.removeItem('eg.circ.patron.search.show_extras');
1054         }
1055         if (lastFormElement) lastFormElement.focus();
1056         $event.preventDefault();
1057     }
1058
1059     egCore.hatch.getItem('eg.circ.patron.search.show_extras')
1060     .then(function(val) {$scope.showExtras = val});
1061
1062     // map form arguments into search params
1063     function compileSearch(args) {
1064         var search = {};
1065         angular.forEach(args, function(val, key) {
1066             if (!val) return;
1067             if (key == 'profile' && args.profile) {
1068                 search.profile = {value : args.profile.id(), group : 0};
1069             } else if (key == 'home_ou' && args.home_ou) {
1070                 search.home_ou = args.home_ou.id(); // passed separately
1071             } else if (key == 'inactive') {
1072                 search.inactive = val;
1073             } else {
1074                 search[key] = {value : val, group : 0};
1075             }
1076             if (key.match(/phone|ident/)) {
1077                 search[key].group = 2;
1078             } else {
1079                 if (key.match(/street|city|state|post_code/)) {
1080                     search[key].group = 1;
1081                 } else if (key == 'card') {
1082                     search[key].group = 3
1083                 }
1084             }
1085         });
1086
1087         return search;
1088     }
1089
1090     function compileSort() {
1091
1092         if (!provider.sort.length) {
1093             return [ // default
1094                 "family_name ASC",
1095                 "first_given_name ASC",
1096                 "second_given_name ASC",
1097                 "dob DESC"
1098             ];
1099         }
1100
1101         var sort = [];
1102         angular.forEach(
1103             provider.sort,
1104             function(sortdef) {
1105                 if (angular.isObject(sortdef)) {
1106                     var name = Object.keys(sortdef)[0];
1107                     var dir = sortdef[name];
1108                     sort.push(name + ' ' + dir);
1109                 } else {
1110                     sort.push(sortdef);
1111                 }
1112             }
1113         );
1114
1115         return sort;
1116     }
1117
1118     $scope.setLastFormElement = function() {
1119         lastFormElement = $document[0].activeElement;
1120     }
1121
1122     // search form submit action; tells the results grid to
1123     // refresh itself.
1124     $scope.search = function(args) { // args === $scope.searchArgs
1125         if (args && Object.keys(args).length) 
1126             $scope.gridControls.refresh();
1127         if (lastFormElement) lastFormElement.focus();
1128     }
1129
1130     // TODO: move this into the (forthcoming) grid row activate action
1131     $scope.onPatronDblClick = function($event, user) {
1132         $location.path('/circ/patron/' + user.id() + '/checkout');
1133     }
1134
1135     if (patronSvc.urlSearch) {
1136         // force the grid to load the url-based search on page load
1137         provider.refresh();
1138     }
1139
1140     $scope.need_two_selected = function() {
1141         var items = $scope.gridControls.selectedItems();
1142         return (items.length == 2) ? false : true;
1143     }
1144     $scope.merge_patrons = function() {
1145         var items = $scope.gridControls.selectedItems();
1146         if (items.length != 2) return false;
1147
1148         var patron_ids = [];
1149         angular.forEach(items, function(i) {
1150             patron_ids.push(i.id());
1151         });
1152         egPatronMerge.do_merge(patron_ids).then(function() {
1153             // ensure that we're not drawing from cached
1154             // resuts, as a successful merge just deleted a
1155             // record
1156             delete patronSvc.lastSearch;
1157             $scope.gridControls.refresh();
1158         });
1159     }
1160    
1161 }])
1162
1163 /**
1164  * Manages messages
1165  */
1166 .controller('PatronMessagesCtrl',
1167        ['$scope','$q','$routeParams','egCore','$uibModal','patronSvc','egCirc',
1168 function($scope , $q , $routeParams,  egCore , $uibModal , patronSvc , egCirc) {
1169     $scope.initTab('messages', $routeParams.id);
1170     var usr_id = $routeParams.id;
1171
1172     // setup date filters
1173     var start = new Date(); // now - 1 year
1174     start.setFullYear(start.getFullYear() - 1),
1175     $scope.dates = {
1176         start_date : start,
1177         end_date : new Date()
1178     }
1179
1180     function date_range() {
1181         var start = $scope.dates.start_date.toISOString().replace(/T.*/,'');
1182         var end = $scope.dates.end_date.toISOString().replace(/T.*/,'');
1183         var today = new Date().toISOString().replace(/T.*/,'');
1184         if (end == today) end = 'now';
1185         return [start, end];
1186     }
1187
1188     // grid queries
1189    
1190     var activeGrid = $scope.activeGridControls = {
1191         setSort : function() {
1192             return ['set_date'];
1193         },
1194         setQuery : function() {
1195             return {
1196                 usr : usr_id,
1197                 '-or' : [
1198                     {stop_date : null},
1199                     {stop_date : {'>' : 'now'}}
1200                 ]
1201             }
1202         }
1203     }
1204
1205     var archiveGrid = $scope.archiveGridControls = {
1206         setSort : function() {
1207             return ['set_date'];
1208         },
1209         setQuery : function() {
1210             return {
1211                 usr : usr_id, 
1212                 stop_date : {'<=' : 'now'},
1213                 set_date : {between : date_range()}
1214             };
1215         }
1216     };
1217
1218     $scope.removePenalty = function(selected) {
1219         // the grid stores flattened penalties.  Fetch penalty objects first
1220
1221         var ids = selected.map(function(s){ return s.id });
1222         egCore.pcrud.search('ausp', 
1223             {id : ids}, {}, 
1224             {atomic : true, authoritative : true}
1225
1226         // then delete them
1227         ).then(function(penalties) {
1228             return egCore.pcrud.remove(penalties);
1229
1230         // then refresh the grid
1231         }).then(function() {
1232             activeGrid.refresh();
1233         });
1234     }
1235
1236     $scope.archivePenalty = function(selected) {
1237         // the grid stores flattened penalties.  Fetch penalty objects first
1238
1239         var ids = selected.map(function(s){ return s.id });
1240         egCore.pcrud.search('ausp', 
1241             {id : ids}, {}, 
1242             {atomic : true, authoritative : true}
1243
1244         // then delete them
1245         ).then(function(penalties) {
1246             angular.forEach(penalties, function(p){ p.stop_date('now') });
1247             return egCore.pcrud.update(penalties);
1248
1249         // then refresh the grid
1250         }).then(function() {
1251             activeGrid.refresh();
1252             archiveGrid.refresh();
1253         });
1254     }
1255
1256     // leverage egEnv for caching
1257     function fetchPenaltyTypes() {
1258         if (egCore.env.csp) 
1259             return $q.when(egCore.env.csp.list);
1260         return egCore.pcrud.search(
1261             // id <= 100 are reserved for system use
1262             'csp', {id : {'>': 100}}, {}, {atomic : true})
1263         .then(function(penalties) {
1264             egCore.env.absorbList(penalties, 'csp');
1265             return penalties;
1266         });
1267     }
1268
1269     $scope.createPenalty = function() {
1270         egCirc.create_penalty(usr_id).then(function() {
1271             activeGrid.refresh();
1272             // force a refresh of the user, since they may now
1273             // have blocking penalties, etc.
1274             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1275         });
1276     }
1277
1278     $scope.editPenalty = function(selected) {
1279         if (selected.length == 0) return;
1280
1281         // grab the penalty from the user object
1282         var penalty = patronSvc.current.standing_penalties().filter(
1283             function(p) {return p.id() == selected[0].id})[0];
1284
1285         egCirc.edit_penalty(penalty).then(function() {
1286             activeGrid.refresh();
1287             // force a refresh of the user, since they may now
1288             // have blocking penalties, etc.
1289             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1290         });
1291     }
1292 }])
1293
1294
1295 /**
1296  * Credentials tester
1297  */
1298 .controller('PatronVerifyCredentialsCtrl',
1299        ['$scope','$routeParams','$location','egCore',
1300 function($scope,  $routeParams , $location , egCore) {
1301     $scope.verified = null;
1302     $scope.focusMe = true;
1303
1304     // called with a patron, pre-populate the form args
1305     $scope.initTab('other', $routeParams.id).then(
1306         function() {
1307             if ($routeParams.id && $scope.patron()) {
1308                 $scope.prepop = true;
1309                 $scope.username = $scope.patron().usrname();
1310                 $scope.barcode = $scope.patron().card().barcode();
1311             } else {
1312                 $scope.username = '';
1313                 $scope.barcode = '';
1314                 $scope.password = '';
1315             }
1316         }
1317     );
1318
1319     // verify login credentials
1320     $scope.verify = function() {
1321         $scope.verified = null;
1322         $scope.notFound = false;
1323
1324         egCore.net.request(
1325             'open-ils.actor',
1326             'open-ils.actor.verify_user_password',
1327             egCore.auth.token(), $scope.barcode,
1328             $scope.username, hex_md5($scope.password || '')
1329
1330         ).then(function(resp) {
1331             $scope.focusMe = true;
1332             if (evt = egCore.evt.parse(resp)) {
1333                 alert(evt);
1334             } else if (resp == 1) {
1335                 $scope.verified = true;
1336             } else {
1337                 $scope.verified = false;
1338             }
1339         });
1340     }
1341
1342     // load the main patron UI for the provided username or barcode
1343     $scope.load = function($event) {
1344         $scope.notFound = false;
1345         $scope.verified = null;
1346
1347         egCore.net.request(
1348             'open-ils.actor',
1349             'open-ils.actor.user.retrieve_id_by_barcode_or_username',
1350             egCore.auth.token(), $scope.barcode, $scope.username
1351
1352         ).then(function(resp) {
1353
1354             if (Number(resp)) {
1355                 $location.path('/circ/patron/' + resp + '/checkout');
1356                 return;
1357             }
1358
1359             // something went wrong...
1360             $scope.focusMe = true;
1361             if (evt = egCore.evt.parse(resp)) {
1362                 if (evt.textcode == 'ACTOR_USR_NOT_FOUND') {
1363                     $scope.notFound = true;
1364                     return;
1365                 }
1366                 return alert(evt);
1367             } else {
1368                 alert(resp);
1369             }
1370         });
1371
1372         // load() button sits within the verify form.  
1373         // avoid submitting the verify() form action on load()
1374         $event.preventDefault();
1375     }
1376 }])
1377
1378 .controller('PatronAlertsCtrl',
1379        ['$scope','$routeParams','$location','egCore','patronSvc',
1380 function($scope,  $routeParams , $location , egCore , patronSvc) {
1381
1382     $scope.initTab('other', $routeParams.id)
1383     .then(function() {
1384         $scope.patronExpired = patronSvc.patronExpired;
1385         $scope.patronExpiresSoon = patronSvc.patronExpiresSoon;
1386         $scope.retrievedWithInactive = patronSvc.fetchedWithInactiveCard();
1387         $scope.invalidAddresses = patronSvc.invalidAddresses;
1388     });
1389
1390 }])
1391
1392 .controller('PatronNotesCtrl',
1393        ['$scope','$filter','$routeParams','$location','egCore','patronSvc','$uibModal',
1394         'egConfirmDialog',
1395 function($scope,  $filter , $routeParams , $location , egCore , patronSvc , $uibModal,
1396          egConfirmDialog) {
1397     $scope.initTab('other', $routeParams.id);
1398     var usr_id = $routeParams.id;
1399
1400     // fetch the notes
1401     function refreshPage() {
1402         $scope.notes = [];
1403         egCore.pcrud.search('aun', 
1404             {usr : usr_id}, 
1405             {flesh : 1, flesh_fields : {aun : ['creator']}}, 
1406             {authoritative : true})
1407         .then(null, null, function(note) {
1408             $scope.notes.push(note);
1409         });
1410     }
1411
1412     // open the new-note dialog and create the note
1413     $scope.newNote = function() {
1414         $uibModal.open({
1415             templateUrl: './circ/patron/t_new_note_dialog',
1416             controller: 
1417                 ['$scope', '$uibModalInstance',
1418             function($scope, $uibModalInstance) {
1419                 $scope.focusNote = true;
1420                 $scope.args = {};
1421                 $scope.require_initials = egCore.env.aous['ui.staff.require_initials.patron_info_notes'];
1422                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
1423                 $scope.cancel = function () { $uibModalInstance.dismiss() }
1424             }],
1425         }).result.then(
1426             function(args) {
1427                 if (!args.value) return;
1428                 var note = new egCore.idl.aun();
1429                 note.usr(usr_id);
1430                 note.title(args.title);
1431                 note.value(args.value);
1432                 note.pub(args.pub ? 't' : 'f');
1433                 note.creator(egCore.auth.user().id());
1434                 if (args.initials) 
1435                     note.value(note.value() + ' [' + args.initials + ']');
1436                 egCore.pcrud.create(note).then(function() {refreshPage()});
1437             }
1438         );
1439     }
1440
1441     // delete the selected note
1442     $scope.deleteNote = function(note) {
1443         egConfirmDialog.open(
1444             egCore.strings.PATRON_NOTE_DELETE_CONFIRM_TITLE, egCore.strings.PATRON_NOTE_DELETE_CONFIRM,
1445             {ok : function() {
1446                 egCore.pcrud.remove(note).then(function() {refreshPage()});
1447             },
1448             note_title : note.title(),
1449             create_date : note.create_date()
1450         });
1451     }
1452
1453     // print the selected note
1454     $scope.printNote = function(note) {
1455         var hash = egCore.idl.toHash(note);
1456         hash.usr = egCore.idl.toHash($scope.patron());
1457         egCore.print.print({
1458             context : 'default', 
1459             template : 'patron_note', 
1460             scope : {note : hash}
1461         });
1462     }
1463
1464     // perform the initial note fetch
1465     refreshPage();
1466 }])
1467
1468 .controller('PatronGroupCtrl',
1469        ['$scope','$routeParams','$q','$window','$timeout','$location','egCore',
1470         'patronSvc','$uibModal','egPromptDialog','egConfirmDialog',
1471 function($scope,  $routeParams , $q , $window , $timeout,  $location , egCore ,
1472          patronSvc , $uibModal , egPromptDialog , egConfirmDialog) {
1473
1474     var usr_id = $routeParams.id;
1475
1476     $scope.totals = {owed : 0, total_out : 0, overdue : 0}
1477
1478     var grid = $scope.gridControls = {
1479         activateItem : function(item) {
1480             $location.path('/circ/patron/' + item.id + '/checkout');
1481         },
1482         itemRetrieved : function(item) {
1483
1484             if (item.id == patronSvc.current.id()) {
1485                 item.stats = patronSvc.patron_stats;
1486
1487             } else {
1488                 // flesh stats for other group members
1489                 patronSvc.getUserStats(item.id).then(function(stats) {
1490                     item.stats = stats;
1491                     $scope.totals.total_out += stats.checkouts.total_out; 
1492                     $scope.totals.overdue += stats.checkouts.overdue; 
1493                 });
1494             }
1495         },
1496         setSort : function() {
1497             return ['create_date'];
1498         }
1499     }
1500
1501     $scope.initTab('other', $routeParams.id)
1502     .then(function(redirect) {
1503         // if we are redirecting to the alerts page, avoid updating the
1504         // grid query.
1505         if (redirect) return;
1506         // let initTab() fetch the user first so we can know the usrgroup
1507
1508         grid.setQuery({
1509             usrgroup : patronSvc.current.usrgroup(),
1510             deleted : 'f'
1511         });
1512         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
1513     });
1514
1515     $scope.removeFromGroup = function(selected) {
1516         var promises = [];
1517         angular.forEach(selected, function(user) {
1518             console.debug('removing user ' + user.id + ' from group');
1519
1520             promises.push(
1521                 egCore.net.request(
1522                     'open-ils.actor',
1523                     'open-ils.actor.usergroup.new',
1524                     egCore.auth.token(), user.id, true
1525                 )
1526             );
1527         });
1528
1529         $q.all(promises).then(function() {grid.refresh()});
1530     }
1531
1532     function addUserToGroup(user) {
1533         user.usrgroup(patronSvc.current.usrgroup());
1534         user.ischanged(true);
1535         egCore.net.request(
1536             'open-ils.actor',
1537             'open-ils.actor.patron.update',
1538             egCore.auth.token(), user
1539
1540         ).then(function() {grid.refresh()});
1541     }
1542
1543     // fetch each user ("selected" has flattened users)
1544     // update the usrgroup, then update the user object
1545     // After all updates are complete, refresh the grid.
1546     function moveUsersToGroup(target_user, selected) {
1547         var promises = [];
1548
1549         angular.forEach(selected, function(user) {
1550             promises.push(
1551                 egCore.pcrud.retrieve('au', user.id)
1552                 .then(function(u) {
1553                     u.usrgroup(target_user.usrgroup());
1554                     u.ischanged(true);
1555                     return egCore.net.request(
1556                         'open-ils.actor',
1557                         'open-ils.actor.patron.update',
1558                         egCore.auth.token(), u
1559                     );
1560                 })
1561             );
1562         });
1563
1564         $q.all(promises).then(function() {grid.refresh()});
1565     }
1566
1567     function showMoveToGroupConfirm(barcode, selected, outbound) {
1568
1569         // find the user
1570         egCore.pcrud.search('ac', {barcode : barcode})
1571
1572         // fetch the fleshed user
1573         .then(function(card) {
1574
1575             if (!card) return; // TODO: warn user
1576
1577             egCore.pcrud.retrieve('au', card.usr())
1578             .then(function(user) {
1579                 user.card(card);
1580                 $uibModal.open({
1581                     templateUrl: './circ/patron/t_move_to_group_dialog',
1582                     controller: [
1583                                 '$scope','$uibModalInstance',
1584                         function($scope , $uibModalInstance) {
1585                             $scope.user = user;
1586                             $scope.selected = selected;
1587                             $scope.outbound = outbound;
1588                             $scope.ok = 
1589                                 function(count) { $uibModalInstance.close() }
1590                             $scope.cancel = 
1591                                 function () { $uibModalInstance.dismiss() }
1592                         }
1593                     ]
1594                 }).result.then(function() {
1595                     if (outbound) {
1596                         moveUsersToGroup(user, selected);
1597                     } else {
1598                         addUserToGroup(user);
1599                     }
1600                 });
1601             });
1602         });
1603     }
1604
1605     // selected == move selected patrons to another patron's group
1606     // !selected == patron from a different group moves into our group
1607     function moveToGroup(selected, outbound) {
1608         egPromptDialog.open(
1609             egCore.strings.GROUP_ADD_USER, '',
1610             {ok : function(value) {
1611                 if (value) 
1612                     showMoveToGroupConfirm(value, selected, outbound);
1613             }}
1614         );
1615     }
1616
1617     $scope.moveToGroup = function() { moveToGroup([], false) };
1618     $scope.moveToAnotherGroup = function(selected) { moveToGroup(selected, true) };
1619
1620     $scope.cloneUser = function(selected) {
1621         if (!selected.length) return;
1622         var url = $location.absUrl().replace(
1623             /\/patron\/.*/, 
1624             '/patron/register/clone/' + selected[0].id);
1625         $window.open(url, '_blank').focus();
1626     }
1627
1628     $scope.retrieveSelected = function(selected) {
1629         if (!selected.length) return;
1630         angular.forEach(selected, function(usr) {
1631             $timeout(function() {
1632                 var url = $location.absUrl().replace(
1633                     /\/patron\/.*/,
1634                     '/patron/' + usr.id + '/checkout');
1635                 $window.open(url, '_blank')
1636             });
1637         });
1638     }
1639
1640 }])
1641
1642 .controller('PatronStatCatsCtrl',
1643        ['$scope','$routeParams','$q','egCore','patronSvc',
1644 function($scope,  $routeParams , $q , egCore , patronSvc) {
1645     $scope.initTab('other', $routeParams.id)
1646     .then(function(redirect) {
1647         // Entries for org-visible stat cats are fleshed.  Any others
1648         // have to be fleshed within.
1649
1650         var to_flesh = {};
1651         angular.forEach(patronSvc.current.stat_cat_entries(), 
1652             function(entry) {
1653                 if (!angular.isObject(entry.stat_cat())) {
1654                     to_flesh[entry.stat_cat()] = entry;
1655                 }
1656             }
1657         );
1658
1659         if (!Object.keys(to_flesh).length) return;
1660
1661         egCore.pcrud.search('actsc', {id : Object.keys(to_flesh)})
1662         .then(null, null, function(cat) { // stream
1663             cat.owner(egCore.org.get(cat.owner())); // owner flesh
1664             to_flesh[cat.id()].stat_cat(cat);
1665         });
1666     });
1667 }])
1668
1669 .controller('PatronSurveyCtrl',
1670        ['$scope','$routeParams','$location','egCore','patronSvc',
1671 function($scope,  $routeParams , $location , egCore , patronSvc) {
1672     $scope.initTab('other', $routeParams.id);
1673     var usr_id = $routeParams.id;
1674     var org_ids = egCore.org.fullPath(egCore.auth.user().ws_ou(), true);
1675     $scope.surveys = [];
1676     // fetch the surveys
1677     egCore.pcrud.search('asvr',
1678         {usr : usr_id},
1679         {flesh : 4, flesh_fields : {
1680             asvr : ['question', 'survey', 'answer'],
1681             asv : ['responses', 'questions'],
1682             asvq : ['responses', 'question']
1683     }},
1684         {authoritative : true})
1685     .then(null, null, function(survey) {
1686         var sameSurveyId = false;
1687         if (survey.survey().id() && $scope.surveys.length > 0) {
1688             for (sid = 0; sid < $scope.surveys.length; sid++) {
1689                 if (survey.survey().id() == $scope.surveys[sid].id()) sameSurveyId = true; 
1690             }
1691         }
1692         if (!sameSurveyId) $scope.surveys.push(survey.survey());
1693     });
1694 }])
1695
1696 .controller('PatronFetchLastCtrl',
1697        ['$scope','$location','egCore',
1698 function($scope , $location , egCore) {
1699
1700     var id = egCore.hatch.getLoginSessionItem('eg.circ.last_patron');
1701     if (id) return $location.path('/circ/patron/' + id + '/checkout');
1702
1703     $scope.no_last = true;
1704 }])
1705
1706 .controller('PatronTriggeredEventsCtrl',
1707        ['$scope','$routeParams','$location','egCore','patronSvc',
1708 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1709     $scope.initTab('other', $routeParams.id);
1710
1711     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
1712     url += '?patron_id=' + encodeURIComponent($routeParams.id);
1713
1714     $scope.triggered_events_url = url;
1715     $scope.funcs = {};
1716 }])
1717
1718 .controller('PatronMessageCenterCtrl',
1719        ['$scope','$routeParams','$location','egCore','patronSvc',
1720 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1721     $scope.initTab('other', $routeParams.id);
1722
1723     var url = $location.protocol() + '://' + $location.host()
1724         + egCore.env.basePath.replace(/\/staff.*/,  '/actor/user/message');
1725     url += '/' + encodeURIComponent($routeParams.id);
1726
1727     $scope.message_center_url = url;
1728     $scope.funcs = {};
1729 }])
1730
1731 .controller('PatronPermsCtrl',
1732        ['$scope','$routeParams','$window','$location','egCore',
1733 function($scope , $routeParams , $window , $location , egCore) {
1734     $scope.initTab('other', $routeParams.id);
1735
1736     var url = $location.absUrl().replace(
1737         /\/eg\/staff.*/, '/xul/server/patron/user_edit.xhtml');
1738
1739     url += '?usr=' + encodeURIComponent($routeParams.id);
1740
1741     // user_edit does not load the session via cookie.  It uses URL 
1742     // params or xulG instead.  Pass via xulG.
1743     $scope.funcs = {
1744         ses : egCore.auth.token(),
1745         on_patron_save : function() {
1746             $scope.funcs.reload();
1747         }
1748     }
1749
1750     $scope.user_perms_url = url;
1751 }])
1752