]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/item/app.js
2a3d7a71f1c40be63dc4e6aec80f412218b08701
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / item / app.js
1 /**
2  * Item Display
3  */
4
5 angular.module('egItemStatus', 
6     ['ngRoute', 'ui.bootstrap', 'egCoreMod', 'egUiMod', 'egGridMod', 'egUserMod'])
7
8 .filter('boolText', function(){
9     return function (v) {
10         return v == 't';
11     }
12 })
13
14 .config(function($routeProvider, $locationProvider, $compileProvider) {
15     $locationProvider.html5Mode(true);
16     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); // grid export
17         
18     var resolver = {delay : function(egStartup) {return egStartup.go()}};
19
20     // search page shows the list view by default
21     $routeProvider.when('/cat/item/search', {
22         templateUrl: './cat/item/t_list',
23         controller: 'ListCtrl',
24         resolve : resolver
25     });
26
27     // search page shows the list view by default
28     $routeProvider.when('/cat/item/search/:idList', {
29         templateUrl: './cat/item/t_list',
30         controller: 'ListCtrl',
31         resolve : resolver
32     });
33
34     $routeProvider.when('/cat/item/:id', {
35         templateUrl: './cat/item/t_view',
36         controller: 'ViewCtrl',
37         resolve : resolver
38     });
39
40     $routeProvider.when('/cat/item/:id/:tab', {
41         templateUrl: './cat/item/t_view',
42         controller: 'ViewCtrl',
43         resolve : resolver
44     });
45
46     // default page / bucket view
47     $routeProvider.otherwise({redirectTo : '/cat/item/search'});
48 })
49
50 /**
51  * Search bar along the top of the page.
52  * Parent scope for list and detail views
53  */
54 .controller('SearchCtrl', 
55        ['$scope','$location','$timeout','egCore','egGridDataProvider','egItem',
56 function($scope , $location , $timeout , egCore , egGridDataProvider , itemSvc) {
57     $scope.args = {}; // search args
58
59     // sub-scopes (search / detail-view) apply their version 
60     // of retrieval function to $scope.context.search
61     // and display toggling via $scope.context.toggleDisplay
62     $scope.context = {
63         selectBarcode : true
64     };
65
66     $scope.toggleView = function($event) {
67         $scope.context.toggleDisplay();
68         $event.preventDefault(); // avoid form submission
69     }
70
71     // The functions that follow in this controller are never called
72     // when the List View is active, only the Detail View.
73     
74     // In this context, we're only ever dealing with 1 item, so
75     // we can simply refresh the page.  These various itemSvc
76     // functions used to live in the ListCtrl, but they're now
77     // shared between SearchCtrl (for Actions for the Detail View)
78     // and ListCtrl (Actions in the egGrid)
79     itemSvc.add_barcode_to_list = function(b) {
80         //console.log('SearchCtrl: add_barcode_to_list',b);
81         // timeout so audible can happen upon checkin
82         $timeout(function() { location.href = location.href; }, 1000);
83     }
84
85     $scope.add_copies_to_bucket = function() {
86         itemSvc.add_copies_to_bucket([$scope.args.copyId]);
87     }
88
89     $scope.make_copies_bookable = function() {
90         itemSvc.make_copies_bookable([{
91             id : $scope.args.copyId,
92             'call_number.record.id' : $scope.args.recordId
93         }]);
94     }
95
96     $scope.book_copies_now = function() {
97         itemSvc.book_copies_now([{
98             id : $scope.args.copyId,
99             'call_number.record.id' : $scope.args.recordId
100         }]);
101     }
102
103     $scope.requestItems = function() {
104         itemSvc.requestItems([$scope.args.copyId]);
105     }
106
107     $scope.attach_to_peer_bib = function() {
108         itemSvc.attach_to_peer_bib([{
109             id : $scope.args.copyId,
110             barcode : $scope.args.copyBarcode
111         }]);
112     }
113
114     $scope.selectedHoldingsCopyDelete = function () {
115         itemSvc.selectedHoldingsCopyDelete([{
116             id : $scope.args.copyId,
117             barcode : $scope.args.copyBarcode
118         }]);
119     }
120
121     $scope.checkin = function () {
122         itemSvc.checkin([{
123             id : $scope.args.copyId,
124             barcode : $scope.args.copyBarcode
125         }]);
126     }
127
128     $scope.renew = function () {
129         itemSvc.renew([{
130             id : $scope.args.copyId,
131             barcode : $scope.args.copyBarcode
132         }]);
133     }
134
135     $scope.cancel_transit = function () {
136         itemSvc.cancel_transit([{
137             id : $scope.args.copyId,
138             barcode : $scope.args.copyBarcode
139         }]);
140     }
141
142     $scope.selectedHoldingsDamaged = function () {
143         itemSvc.selectedHoldingsDamaged([{
144             id : $scope.args.copyId,
145             barcode : $scope.args.copyBarcode,
146             refresh : true
147         }]);
148     }
149
150     $scope.selectedHoldingsMissing = function () {
151         itemSvc.selectedHoldingsMissing([{
152             id : $scope.args.copyId,
153             barcode : $scope.args.copyBarcode
154         }]);
155     }
156
157     $scope.selectedHoldingsVolCopyAdd = function () {
158         itemSvc.spawnHoldingsAdd([{
159             id : $scope.args.copyId,
160             'call_number.owning_lib' : $scope.args.cnOwningLib,
161             'call_number.record.id' : $scope.args.recordId,
162             barcode : $scope.args.copyBarcode
163         }],true,false);
164     }
165     $scope.selectedHoldingsCopyAdd = function () {
166         itemSvc.spawnHoldingsAdd([{
167             id : $scope.args.copyId,
168             'call_number.id' : $scope.args.cnId,
169             'call_number.owning_lib' : $scope.args.cnOwningLib,
170             'call_number.record.id' : $scope.args.recordId,
171             barcode : $scope.args.copyBarcode
172         }],false,true);
173     }
174
175     $scope.selectedHoldingsVolCopyEdit = function () {
176         itemSvc.spawnHoldingsEdit([{
177             id : $scope.args.copyId,
178             'call_number.id' : $scope.args.cnId,
179             'call_number.owning_lib' : $scope.args.cnOwningLib,
180             'call_number.record.id' : $scope.args.recordId,
181             barcode : $scope.args.copyBarcode
182         }],false,false);
183     }
184     $scope.selectedHoldingsVolEdit = function () {
185         itemSvc.spawnHoldingsEdit([{
186             id : $scope.args.copyId,
187             'call_number.id' : $scope.args.cnId,
188             'call_number.owning_lib' : $scope.args.cnOwningLib,
189             'call_number.record.id' : $scope.args.recordId,
190             barcode : $scope.args.copyBarcode
191         }],false,true);
192     }
193     $scope.selectedHoldingsCopyEdit = function () {
194         itemSvc.spawnHoldingsEdit([{
195             id : $scope.args.copyId,
196             'call_number.id' : $scope.args.cnId,
197             'call_number.owning_lib' : $scope.args.cnOwningLib,
198             'call_number.record.id' : $scope.args.recordId,
199             barcode : $scope.args.copyBarcode
200         }],true,false);
201     }
202
203     $scope.replaceBarcodes = function() {
204         itemSvc.replaceBarcodes([{
205             id : $scope.args.copyId,
206             barcode : $scope.args.copyBarcode
207         }]);
208     }
209
210     $scope.changeItemOwningLib = function() {
211         itemSvc.changeItemOwningLib([{
212             id : $scope.args.copyId,
213             'call_number.id' : $scope.args.cnId,
214             'call_number.owning_lib' : $scope.args.cnOwningLib,
215             'call_number.record.id' : $scope.args.recordId,
216             'call_number.label' : $scope.args.cnLabel,
217             'call_number.label_class' : $scope.args.cnLabelClass,
218             'call_number.prefix.id' : $scope.args.cnPrefixId,
219             'call_number.suffix.id' : $scope.args.cnSuffixId,
220             barcode : $scope.args.copyBarcode
221         }]);
222     }
223
224     $scope.transferItems = function (){
225         itemSvc.transferItems([{
226             id : $scope.args.copyId,
227             barcode : $scope.args.copyBarcode
228         }]);
229     }
230
231 }])
232
233 /**
234  * List view - grid stuff
235  */
236 .controller('ListCtrl', 
237        ['$scope','$q','$routeParams','$location','$timeout','$window','egCore',
238         'egGridDataProvider','egItem','egUser','$uibModal','egCirc','egConfirmDialog',
239         'egProgressDialog',
240 function($scope , $q , $routeParams , $location , $timeout , $window , egCore , 
241          egGridDataProvider , itemSvc , egUser , $uibModal , egCirc , egConfirmDialog,
242          egProgressDialog) {
243
244     var copyId = [];
245     var cp_list = $routeParams.idList;
246     if (cp_list) {
247         copyId = cp_list.split(',');
248     }
249
250     $scope.context.page = 'list';
251
252     /*
253     var provider = egGridDataProvider.instance();
254     provider.get = function(offset, count) {
255     }
256     */
257
258     $scope.gridDataProvider = egGridDataProvider.instance({
259         get : function(offset, count) {
260             //return provider.arrayNotifier(itemSvc.copies, offset, count);
261             return this.arrayNotifier(itemSvc.copies, offset, count);
262         }
263     });
264
265     // If a copy was just displayed in the detail view, ensure it's
266     // focused in the list view.
267     var selected = false;
268     var copyGrid = $scope.gridControls = {
269         itemRetrieved : function(item) {
270             if (selected || !itemSvc.copy) return;
271             if (itemSvc.copy.id() == item.id) {
272                 copyGrid.selectItems([item.index]);
273                 selected = true;
274             }
275         }
276     };
277
278     $scope.$watch('barcodesFromFile', function(newVal, oldVal) {
279         if (newVal && newVal != oldVal) {
280             $scope.args.barcode = '';
281             var barcodes = [];
282
283             angular.forEach(newVal.split(/\n/), function(line) {
284                 if (!line) return;
285                 // scrub any trailing spaces or commas from the barcode
286                 line = line.replace(/(.*?)($|\s.*|,.*)/,'$1');
287                 barcodes.push(line);
288             });
289
290             // Serialize copy retrieval since there may be many, many copies.
291             function fetch_next_copy() {
292                 var barcode = barcodes.pop();
293                 egProgressDialog.increment();
294
295                 if (!barcode) { // All done here.
296                     egProgressDialog.close();
297                     copyGrid.refresh();
298                     copyGrid.selectItems([itemSvc.copies[0].index]);
299                     return;
300                 }
301
302                 itemSvc.fetch(barcode).then(fetch_next_copy);
303             }
304
305             if (barcodes.length) {
306                 egProgressDialog.open({value: 0, max: barcodes.length});
307                 fetch_next_copy();
308             }
309         }
310     });
311
312     $scope.context.search = function(args) {
313         if (!args.barcode) return;
314         $scope.context.itemNotFound = false;
315         itemSvc.fetch(args.barcode).then(function(res) {
316             if (res) {
317                 copyGrid.refresh();
318                 copyGrid.selectItems([res.index]);
319                 $scope.args.barcode = '';
320             } else {
321                 $scope.context.itemNotFound = true;
322                 egCore.audio.play('warning.item_status.itemNotFound');
323             }
324             $scope.context.selectBarcode = true;
325         })
326     }
327
328     var add_barcode_to_list = function (b) {
329         //console.log('listCtrl: add_barcode_to_list',b);
330         $scope.context.search({barcode:b});
331     }
332     itemSvc.add_barcode_to_list = add_barcode_to_list;
333
334     $scope.context.toggleDisplay = function() {
335         var item = copyGrid.selectedItems()[0];
336         if (item) 
337             $location.path('/cat/item/' + item.id);
338     }
339
340     $scope.context.show_triggered_events = function() {
341         var item = copyGrid.selectedItems()[0];
342         if (item) 
343             $location.path('/cat/item/' + item.id + '/triggered_events');
344     }
345
346     function gatherSelectedRecordIds () {
347         var rid_list = [];
348         angular.forEach(
349             copyGrid.selectedItems(),
350             function (item) {
351                 if (rid_list.indexOf(item['call_number.record.id']) == -1)
352                     rid_list.push(item['call_number.record.id'])
353             }
354         );
355         return rid_list;
356     }
357
358     function gatherSelectedVolumeIds (rid) {
359         var cn_id_list = [];
360         angular.forEach(
361             copyGrid.selectedItems(),
362             function (item) {
363                 if (rid && item['call_number.record.id'] != rid) return;
364                 if (cn_id_list.indexOf(item['call_number.id']) == -1)
365                     cn_id_list.push(item['call_number.id'])
366             }
367         );
368         return cn_id_list;
369     }
370
371     function gatherSelectedHoldingsIds (rid) {
372         var cp_id_list = [];
373         angular.forEach(
374             copyGrid.selectedItems(),
375             function (item) {
376                 if (rid && item['call_number.record.id'] != rid) return;
377                 cp_id_list.push(item.id)
378             }
379         );
380         return cp_id_list;
381     }
382
383     $scope.add_copies_to_bucket = function() {
384         var copy_list = gatherSelectedHoldingsIds();
385         itemSvc.add_copies_to_bucket(copy_list);
386     }
387
388     $scope.need_one_selected = function() {
389         var items = $scope.gridControls.selectedItems();
390         if (items.length == 1) return false;
391         return true;
392     };
393
394     $scope.make_copies_bookable = function() {
395         itemSvc.make_copies_bookable(copyGrid.selectedItems());
396     }
397
398     $scope.book_copies_now = function() {
399         itemSvc.book_copies_now(copyGrid.selectedItems());
400     }
401
402     $scope.requestItems = function() {
403         var copy_list = gatherSelectedHoldingsIds();
404         itemSvc.requestItems(copy_list);
405     }
406
407     $scope.replaceBarcodes = function() {
408         itemSvc.replaceBarcodes(copyGrid.selectedItems());
409     }
410
411     $scope.attach_to_peer_bib = function() {
412         itemSvc.attach_to_peer_bib(copyGrid.selectedItems());
413     }
414
415     $scope.selectedHoldingsCopyDelete = function () {
416         itemSvc.selectedHoldingsCopyDelete(copyGrid.selectedItems());
417     }
418
419     $scope.selectedHoldingsItemStatusTgrEvt= function() {
420         var item = copyGrid.selectedItems()[0];
421         if (item)
422             $location.path('/cat/item/' + item.id + '/triggered_events');
423     }
424
425     $scope.selectedHoldingsItemStatusHolds= function() {
426         var item = copyGrid.selectedItems()[0];
427         if (item)
428             $location.path('/cat/item/' + item.id + '/holds');
429     }
430
431     $scope.cancel_transit = function () {
432         itemSvc.cancel_transit(copyGrid.selectedItems());
433     }
434
435     $scope.selectedHoldingsDamaged = function () {
436         itemSvc.selectedHoldingsDamaged(copyGrid.selectedItems());
437     }
438
439     $scope.selectedHoldingsMissing = function () {
440         itemSvc.selectedHoldingsMissing(copyGrid.selectedItems());
441     }
442
443     $scope.checkin = function () {
444         itemSvc.checkin(copyGrid.selectedItems());
445     }
446
447     $scope.renew = function () {
448         itemSvc.renew(copyGrid.selectedItems());
449     }
450
451     $scope.selectedHoldingsVolCopyAdd = function () {
452         itemSvc.spawnHoldingsAdd(copyGrid.selectedItems(),true,false);
453     }
454     $scope.selectedHoldingsCopyAdd = function () {
455         itemSvc.spawnHoldingsAdd(copyGrid.selectedItems(),false,true);
456     }
457
458     $scope.selectedHoldingsCopyAlertsAdd = function(items) {
459         var copy_ids = [];
460         angular.forEach(items, function(item) {
461             if (item.id) copy_ids.push(item.id);
462         });
463         egCirc.add_copy_alerts(copy_ids).then(function() {
464             // update grid items?
465         });
466     }
467
468     $scope.selectedHoldingsCopyAlertsEdit = function(items) {
469         var copy_ids = [];
470         angular.forEach(items, function(item) {
471             if (item.id) copy_ids.push(item.id);
472         });
473         egCirc.manage_copy_alerts(copy_ids).then(function() {
474             // update grid items?
475         });
476     }
477
478     $scope.gridCellHandlers = {};
479     $scope.gridCellHandlers.copyAlertsEdit = function(id) {
480         egCirc.manage_copy_alerts([id]).then(function() {
481             // update grid items?
482         });
483     };
484
485     $scope.showBibHolds = function () {
486         angular.forEach(gatherSelectedRecordIds(), function (r) {
487             var url = egCore.env.basePath + 'cat/catalog/record/' + r + '/holds';
488             $timeout(function() { $window.open(url, '_blank') });
489         });
490     }
491
492     $scope.selectedHoldingsVolCopyEdit = function () {
493         itemSvc.spawnHoldingsEdit(copyGrid.selectedItems(),false,false);
494     }
495     $scope.selectedHoldingsVolEdit = function () {
496         itemSvc.spawnHoldingsEdit(copyGrid.selectedItems(),false,true);
497     }
498     $scope.selectedHoldingsCopyEdit = function () {
499         itemSvc.spawnHoldingsEdit(copyGrid.selectedItems(),true,false);
500     }
501
502     $scope.changeItemOwningLib = function() {
503         itemSvc.changeItemOwningLib(copyGrid.selectedItems());
504     }
505
506     $scope.transferItems = function (){
507         itemSvc.transferItems(copyGrid.selectedItems());
508     }
509
510     $scope.print_labels = function() {
511         egCore.net.request(
512             'open-ils.actor',
513             'open-ils.actor.anon_cache.set_value',
514             null, 'print-labels-these-copies', {
515                 copies : gatherSelectedHoldingsIds()
516             }
517         ).then(function(key) {
518             if (key) {
519                 var url = egCore.env.basePath + 'cat/printlabels/' + key;
520                 $timeout(function() { $window.open(url, '_blank') });
521             } else {
522                 alert('Could not create anonymous cache key!');
523             }
524         });
525     }
526
527     $scope.print_list = function() {
528         var print_data = { copies : copyGrid.allItems() };
529
530         if (print_data.copies.length == 0) return $q.when();
531
532         return egCore.print.print({
533             template : 'item_status',
534             scope : print_data
535         });
536     }
537
538     if (copyId.length > 0) {
539         itemSvc.fetch(null,copyId).then(
540             function() {
541                 copyGrid.refresh();
542             }
543         );
544     }
545
546 }])
547
548 /**
549  * Detail view -- shows one copy
550  */
551 .controller('ViewCtrl', 
552        ['$scope','$q','$location','$routeParams','$timeout','$window','egCore','egItem','egBilling','egCirc',
553 function($scope , $q , $location , $routeParams , $timeout , $window , egCore , itemSvc , egBilling , egCirc) {
554     var copyId = $routeParams.id;
555     $scope.args.copyId = copyId;
556     $scope.tab = $routeParams.tab || 'summary';
557     $scope.context.page = 'detail';
558     $scope.summaryRecord = null;
559
560     $scope.edit = false;
561     if ($scope.tab == 'edit') {
562         $scope.tab = 'summary';
563         $scope.edit = true;
564     }
565
566
567     // use the cached record info
568     if (itemSvc.copy) {
569         $scope.recordId = itemSvc.copy.call_number().record().id();
570         $scope.args.recordId = $scope.recordId;
571         $scope.args.cnId = itemSvc.copy.call_number().id();
572         $scope.args.cnOwningLib = itemSvc.copy.call_number().owning_lib();
573         $scope.args.cnLabel = itemSvc.copy.call_number().label();
574         $scope.args.cnLabelClass = itemSvc.copy.call_number().label_class();
575         $scope.args.cnPrefixId = itemSvc.copy.call_number().prefix().id();
576         $scope.args.cnSuffixId = itemSvc.copy.call_number().suffix().id();
577         $scope.args.copyBarcode = itemSvc.copy.barcode();
578     }
579
580     function loadCopy(barcode) {
581         $scope.context.itemNotFound = false;
582
583         // Avoid re-fetching the same copy while jumping tabs.
584         // In addition to being quicker, this helps to avoid flickering
585         // of the top panel which is always visible in the detail view.
586         //
587         // 'barcode' represents the loading of a new item - refetch it
588         // regardless of whether it matches the current item.
589         if (!barcode && itemSvc.copy && itemSvc.copy.id() == copyId) {
590             $scope.copy = itemSvc.copy;
591             $scope.recordId = itemSvc.copy.call_number().record().id();
592             $scope.args.recordId = $scope.recordId;
593             $scope.args.cnId = itemSvc.copy.call_number().id();
594             $scope.args.cnOwningLib = itemSvc.copy.call_number().owning_lib();
595             $scope.args.cnLabel = itemSvc.copy.call_number().label();
596             $scope.args.cnLabelClass = itemSvc.copy.call_number().label_class();
597             $scope.args.cnPrefixId = itemSvc.copy.call_number().prefix().id();
598             $scope.args.cnSuffixId = itemSvc.copy.call_number().suffix().id();
599             $scope.args.copyBarcode = itemSvc.copy.barcode();
600             return $q.when();
601         }
602
603         delete $scope.copy;
604         delete itemSvc.copy;
605
606         var deferred = $q.defer();
607         itemSvc.fetch(barcode, copyId, true).then(function(res) {
608             $scope.context.selectBarcode = true;
609
610             if (!res) {
611                 copyId = null;
612                 $scope.context.itemNotFound = true;
613                 egCore.audio.play('warning.item_status.itemNotFound');
614                 deferred.reject(); // avoid propagation of data fetch calls
615                 return;
616             }
617
618             var copy = res.copy;
619             itemSvc.copy = copy;
620
621
622             $scope.copy = copy;
623             $scope.recordId = copy.call_number().record().id();
624             $scope.args.recordId = $scope.recordId;
625             $scope.args.cnId = itemSvc.copy.call_number().id();
626             $scope.args.cnOwningLib = itemSvc.copy.call_number().owning_lib();
627             $scope.args.cnLabel = itemSvc.copy.call_number().label();
628             $scope.args.cnLabelClass = itemSvc.copy.call_number().label_class();
629             $scope.args.cnPrefixId = itemSvc.copy.call_number().prefix().id();
630             $scope.args.cnSuffixId = itemSvc.copy.call_number().suffix().id();
631             $scope.args.copyBarcode = copy.barcode();
632             $scope.args.barcode = '';
633
634             // locally flesh org units
635             copy.circ_lib(egCore.org.get(copy.circ_lib()));
636             copy.call_number().owning_lib(
637                 egCore.org.get(copy.call_number().owning_lib()));
638
639             var r = copy.call_number().record();
640             if (r.owner()) r.owner(egCore.org.get(r.owner())); 
641
642             // make boolean for auto-magic true/false display
643             angular.forEach(
644                 ['ref','opac_visible','holdable','circulate'],
645                 function(field) { copy[field](Boolean(copy[field]() == 't')) }
646             );
647
648             // finally, if this is a different copy, redirect.
649             // Note that we flesh first since the copy we just
650             // fetched will be used after the redirect.
651             if (copyId && copyId != copy.id()) {
652                 // if a new barcode is scanned in the detail view,
653                 // update the url to match the ID of the new copy
654                 $location.path('/cat/item/' + copy.id() + '/' + $scope.tab);
655                 deferred.reject(); // avoid propagation of data fetch calls
656                 return;
657             }
658             copyId = copy.id();
659
660             deferred.resolve();
661         });
662
663         return deferred.promise;
664     }
665
666     // load the two most recent circulations in /circs tab
667     function loadCurrentCirc() {
668         delete $scope.circ;
669         delete $scope.circ_summary;
670         delete $scope.prev_circ_summary;
671         delete $scope.prev_circ_usr;
672         if (!copyId) return;
673         
674         var copy_org =
675             itemSvc.copy.call_number().id() == -1 ?
676             itemSvc.copy.circ_lib().id() :
677             itemSvc.copy.call_number().owning_lib().id();
678
679         // since a user can still view patron checkout history here, check perms
680         egCore.perm.hasPermAt('VIEW_COPY_CHECKOUT_HISTORY', true)
681         .then(function(orgIds){
682             if(orgIds.indexOf(copy_org) == -1){
683                 console.warn('User is not allowed to view circ history!');
684                 $q.when(0);
685             }
686
687             return fetchMaxCircHistory();
688         })
689         .then(function(maxHistCount){
690
691             if (!maxHistCount) $scope.isMaxCircHistoryZero = true;
692
693             egCore.pcrud.search('aacs',
694                 {target_copy : copyId},
695                 {   flesh : 2,
696                     flesh_fields : {
697                         aacs : [
698                             'usr',
699                             'workstation',
700                             'checkin_workstation',
701                             'duration_rule',
702                             'max_fine_rule',
703                             'recurring_fine_rule'
704                         ],
705                         au : ['card']
706                     },
707                     order_by : {aacs : 'xact_start desc'},
708                     limit :  1
709                 }
710
711             ).then(null, null, function(circ) {
712                 $scope.circ = circ;
713
714                 if (!circ) return $q.when();
715
716                 // load the chain for this circ
717                 egCore.net.request(
718                     'open-ils.circ',
719                     'open-ils.circ.renewal_chain.retrieve_by_circ.summary',
720                     egCore.auth.token(), $scope.circ.id()
721                 ).then(function(summary) {
722                     $scope.circ_summary = summary;
723                 });
724
725                 if (maxHistCount <= 1) return;
726
727                 // load the chain for the previous circ, plus the user
728                 egCore.net.request(
729                     'open-ils.circ',
730                     'open-ils.circ.prev_renewal_chain.retrieve_by_circ.summary',
731                     egCore.auth.token(), $scope.circ.id()
732
733                 ).then(null, null, function(summary) {
734                     $scope.prev_circ_summary = summary.summary;
735
736                     if (summary.usr) { // aged circs have no 'usr'.
737                         egCore.pcrud.retrieve('au', summary.usr,
738                             {flesh : 1, flesh_fields : {au : ['card']}})
739
740                         .then(function(user) { $scope.prev_circ_usr = user });
741                     }
742                 });
743             });
744         })
745     }
746
747     var maxHistory;
748     function fetchMaxCircHistory() {
749         if (maxHistory) return $q.when(maxHistory);
750         return egCore.org.settings(
751             'circ.item_checkout_history.max')
752         .then(function(set) {
753             maxHistory = set['circ.item_checkout_history.max'] || 4;
754             return Number(maxHistory);
755         });
756     }
757
758     $scope.addBilling = function(circ) {
759         egBilling.showBillDialog({
760             xact_id : circ.id(),
761             patron : circ.usr()
762         });
763     }
764
765     $scope.retrieveAllPatrons = function() {
766         var users = new Set();
767         angular.forEach($scope.circ_list.map(function(circ) { return circ.usr(); }),function(usr) {
768             // aged circs have no 'usr'.
769             if (usr) users.add(usr);
770         });
771         users.forEach(function(usr) {
772             $timeout(function() {
773                 var url = $location.absUrl().replace(
774                     /\/cat\/.*/,
775                     '/circ/patron/' + usr.id() + '/checkout');
776                 $window.open(url, '_blank')
777             });
778         });
779     }
780
781     // load data for /circ_list tab
782     function loadCircHistory() {
783         $scope.circ_list = [];
784
785         var copy_org = 
786             itemSvc.copy.call_number().id() == -1 ?
787             itemSvc.copy.circ_lib().id() :
788             itemSvc.copy.call_number().owning_lib().id();
789
790         // there is an extra layer of permissibility over circ
791         // history views
792         egCore.perm.hasPermAt('VIEW_COPY_CHECKOUT_HISTORY', true)
793         .then(function(orgIds) {
794
795             if (orgIds.indexOf(copy_org) == -1) {
796                 console.log('User is not allowed to view circ history');
797                 return $q.when(0);
798             }
799
800             return fetchMaxCircHistory();
801
802         }).then(function(maxHistCount) {
803
804             if(!maxHistCount) $scope.isMaxCircHistoryZero = true;
805
806             egCore.pcrud.search('aacs',
807                 {target_copy : copyId},
808                 {   flesh : 2,
809                     flesh_fields : {
810                         aacs : [
811                             'usr',
812                             'workstation',
813                             'checkin_workstation',
814                             'recurring_fine_rule'
815                         ],
816                         au : ['card']
817                     },
818                     order_by : {aacs : 'xact_start desc'},
819                     // fetch at least one to see if copy ever circulated
820                     limit : $scope.isMaxCircHistoryZero ? 1 : maxHistCount
821                 }
822
823             ).then(null, null, function(circ) {
824
825                 $scope.circ = circ;
826
827                 // flesh circ_lib locally
828                 circ.circ_lib(egCore.org.get(circ.circ_lib()));
829                 circ.checkin_lib(egCore.org.get(circ.checkin_lib()));
830                 $scope.circ_list.push(circ);
831             });
832         });
833     }
834
835
836     function loadCircCounts() {
837
838         delete $scope.circ_counts;
839         $scope.total_circs = 0;
840         $scope.total_circs_this_year = 0;
841         $scope.total_circs_prev_year = 0;
842         if (!copyId) return;
843
844         egCore.pcrud.search('circbyyr', 
845             {copy : copyId}, null, {atomic : true})
846
847         .then(function(counts) {
848             $scope.circ_counts = counts;
849
850             angular.forEach(counts, function(count) {
851                 $scope.total_circs += Number(count.count());
852             });
853
854             var this_year = counts.filter(function(c) {
855                 return c.year() == new Date().getFullYear();
856             });
857
858             $scope.total_circs_this_year = 
859                 this_year.length ? this_year[0].count() : 0;
860
861             var prev_year = counts.filter(function(c) {
862                 return c.year() == new Date().getFullYear() - 1;
863             });
864
865             $scope.total_circs_prev_year = 
866                 prev_year.length ? prev_year[0].count() : 0;
867
868         });
869     }
870
871     function loadHolds() {
872         delete $scope.hold;
873         if (!copyId) return;
874
875         egCore.pcrud.search('ahr', 
876             {   current_copy : copyId, 
877                 cancel_time : null, 
878                 fulfillment_time : null,
879                 capture_time : {'<>' : null}
880             }, {
881                 flesh : 2,
882                 flesh_fields : {
883                     ahr : ['requestor', 'usr'],
884                     au  : ['card']
885                 }
886             }
887         ).then(null, null, function(hold) {
888             $scope.hold = hold;
889             hold.pickup_lib(egCore.org.get(hold.pickup_lib()));
890             if (hold.current_shelf_lib()) {
891                 hold.current_shelf_lib(
892                     egCore.org.get(hold.current_shelf_lib()));
893             }
894             hold.behind_desk(Boolean(hold.behind_desk() == 't'));
895         });
896     }
897
898     function loadMostRecentTransit() {
899         delete $scope.transit;
900         delete $scope.hold_transit;
901         if (!copyId) return;
902
903         egCore.pcrud.search('atc', 
904             {target_copy : copyId},
905             {
906                 order_by : {atc : 'source_send_time DESC'},
907                 limit : 1
908             }
909
910         ).then(null, null, function(transit) {
911             // use progress callback since we'll get up to one result
912             $scope.transit = transit;
913             transit.source(egCore.org.get(transit.source()));
914             transit.dest(egCore.org.get(transit.dest()));
915         })
916     }
917
918
919     // we don't need all data on all tabs, so fetch what's needed when needed.
920     function loadTabData() {
921         switch($scope.tab) {
922             case 'summary':
923                 loadCurrentCirc();
924                 loadCircCounts();
925                 break;
926
927             case 'circs':
928                 loadCurrentCirc();
929                 break;
930
931             case 'circ_list':
932                 loadCircHistory();
933                 break;
934
935             case 'holds':
936                 loadHolds()
937                 loadMostRecentTransit();
938                 break;
939
940             case 'triggered_events':
941                 var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
942                 url += '?copy_id=' + encodeURIComponent(copyId);
943                 $scope.triggered_events_url = url;
944                 $scope.funcs = {};
945         }
946
947         if ($scope.edit) {
948             egCore.net.request(
949                 'open-ils.actor',
950                 'open-ils.actor.anon_cache.set_value',
951                 null, 'edit-these-copies', {
952                     record_id: $scope.recordId,
953                     copies: [copyId],
954                     hide_vols : true,
955                     hide_copies : false
956                 }
957             ).then(function(key) {
958                 if (key) {
959                     var url = egCore.env.basePath + 'cat/volcopy/' + key;
960                     $window.location.href = url;
961                 } else {
962                     alert('Could not create anonymous cache key!');
963                 }
964             });
965         }
966
967         return;
968     }
969
970     $scope.addCopyAlerts = function(copy_id) {
971         egCirc.add_copy_alerts([copy_id]).then(function() {
972             // update grid items?
973         });
974     }
975     $scope.manageCopyAlerts = function(copy_id) {
976         egCirc.manage_copy_alerts([copy_id]).then(function() {
977             // update grid items?
978         });
979     }
980
981     $scope.context.toggleDisplay = function() {
982         $location.path('/cat/item/search');
983     }
984
985     // handle the barcode scan box, which will replace our current copy
986     $scope.context.search = function(args) {
987         loadCopy(args.barcode).then(loadTabData);
988     }
989
990     $scope.context.show_triggered_events = function() {
991         $location.path('/cat/item/' + copyId + '/triggered_events');
992     }
993
994     loadCopy().then(loadTabData);
995 }])