]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/catalog/app.js
LP#1715697 & 1738242 & 1753005: Holdings Filtering Checkboxes
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / catalog / app.js
1 /**
2  * TPAC Frame App
3  *
4  * currently, this app doesn't use routes for each sub-ui, because 
5  * reloading the catalog each time is sloooow.  better so far to 
6  * swap out divs w/ ng-if / ng-show / ng-hide as needed.
7  *
8  */
9
10 angular.module('egCatalogApp', ['ui.bootstrap','ngRoute','ngLocationUpdate','egCoreMod','egGridMod', 'egMarcMod', 'egUserMod', 'egHoldingsMod', 'ngToast','egPatronSearchMod',
11 'egSerialsMod','egSerialsAppDep'])
12
13 .config(['ngToastProvider', function(ngToastProvider) {
14   ngToastProvider.configure({
15     verticalPosition: 'bottom',
16     animation: 'fade'
17   });
18 }])
19
20 .config(function($routeProvider, $locationProvider, $compileProvider) {
21     $locationProvider.html5Mode(true);
22     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); // grid export
23         
24     var resolver = {delay : ['egCore','egStartup','egUser', function(egCore, egStartup, egUser) {
25         egCore.env.classLoaders.aous = function() {
26             return egCore.org.settings([
27                 'cat.marc_control_number_identifier'
28             ]).then(function(settings) {
29                 // local settings are cached within egOrg.  Caching them
30                 // again in egEnv just simplifies the syntax for access.
31                 egCore.env.aous = settings;
32             });
33         }
34         egCore.env.loadClasses.push('aous');
35         return egStartup.go()
36     }]};
37
38     $routeProvider.when('/cat/catalog/index', {
39         templateUrl: './cat/catalog/t_catalog',
40         controller: 'CatalogCtrl',
41         resolve : resolver
42     });
43
44     // Jump directly to the results page.  Any URL parameter 
45     // supported by the embedded catalog is supported here.
46     $routeProvider.when('/cat/catalog/results', {
47         templateUrl: './cat/catalog/t_catalog',
48         controller: 'CatalogCtrl',
49         resolve : resolver
50     });
51
52     $routeProvider.when('/cat/catalog/retrieve_by_id', {
53         templateUrl: './cat/catalog/t_retrieve_by_id',
54         controller: 'CatalogRecordRetrieve',
55         resolve : resolver
56     });
57
58     $routeProvider.when('/cat/catalog/retrieve_by_tcn', {
59         templateUrl: './cat/catalog/t_retrieve_by_tcn',
60         controller: 'CatalogRecordRetrieve',
61         resolve : resolver
62     });
63
64     $routeProvider.when('/cat/catalog/new_bib', {
65         templateUrl: './cat/catalog/t_new_bib',
66         controller: 'NewBibCtrl',
67         resolve : resolver
68     });
69
70     // create some catalog page-specific mappings
71     $routeProvider.when('/cat/catalog/record/:record_id', {
72         templateUrl: './cat/catalog/t_catalog',
73         controller: 'CatalogCtrl',
74         resolve : resolver
75     });
76
77     // create some catalog page-specific mappings
78     $routeProvider.when('/cat/catalog/record/:record_id/:record_tab', {
79         templateUrl: './cat/catalog/t_catalog',
80         controller: 'CatalogCtrl',
81         resolve : resolver
82     });
83
84     $routeProvider.when('/cat/catalog/batchEdit', {
85         templateUrl: './cat/catalog/t_batchedit',
86         controller: 'BatchEditCtrl',
87         resolve : resolver
88     });
89
90     $routeProvider.when('/cat/catalog/batchEdit/:container_type/:container_id', {
91         templateUrl: './cat/catalog/t_batchedit',
92         controller: 'BatchEditCtrl',
93         resolve : resolver
94     });
95
96     $routeProvider.when('/cat/catalog/vandelay', {
97         templateUrl: './cat/catalog/t_vandelay',
98         controller: 'VandelayCtrl',
99         resolve : resolver
100     });
101
102     $routeProvider.when('/cat/catalog/verifyURLs', {
103         templateUrl: './cat/catalog/t_verifyurls',
104         controller: 'URLVerifyCtrl',
105         resolve : resolver
106     });
107
108     $routeProvider.when('/cat/catalog/manageAuthorities', {
109         templateUrl: './cat/catalog/t_manageauthorities',
110         controller: 'ManageAuthoritiesCtrl',
111         resolve : resolver
112     });
113
114     $routeProvider.when('/cat/catalog/authority/:authority_id/marc_edit', {
115         templateUrl: './cat/catalog/t_authority',
116         controller: 'AuthorityCtrl',
117         resolve : resolver
118     });
119
120     $routeProvider.otherwise({redirectTo : '/cat/catalog/index'});
121 })
122
123
124 /**
125  * */
126 .controller('CatalogRecordRetrieve',
127        ['$scope','$routeParams','$location','$q','egCore',
128 function($scope , $routeParams , $location , $q , egCore ) {
129
130     $scope.focusMe = true;
131
132     // jump to the patron checkout UI
133     function loadRecord(record_id) {
134         $location
135         .path('/cat/catalog/record/' + record_id);
136     }
137
138     $scope.submitId = function(args) {
139         $scope.recordNotFound = null;
140         if (!args.record_id) return;
141
142         // blur so next time it's set to true it will re-apply select()
143         $scope.selectMe = false;
144
145         return loadRecord(args.record_id);
146     }
147
148     $scope.submitTCN = function(args) {
149         $scope.recordNotFound = null;
150         $scope.moreRecordsFound = null;
151         if (!args.record_tcn) return;
152
153         // blur so next time it's set to true it will re-apply select()
154         $scope.selectMe = false;
155
156         // lookup TCN
157         egCore.net.request(
158             'open-ils.search',
159             'open-ils.search.biblio.tcn',
160             args.record_tcn)
161
162         .then(function(resp) { // get_barcodes
163
164             if (evt = egCore.evt.parse(resp)) {
165                 alert(evt); // FIXME
166                 return;
167             }
168
169             if (!resp.count) {
170                 $scope.recordNotFound = args.record_tcn;
171                 $scope.selectMe = true;
172                 return;
173             }
174
175             if (resp.count > 1) {
176                 $scope.moreRecordsFound = args.record_tcn;
177                 $scope.selectMe = true;
178                 return;
179             }
180
181             var record_id = resp.ids[0];
182             return loadRecord(record_id);
183         });
184     }
185
186 }])
187
188 .controller('NewBibCtrl',
189        ['$scope','$routeParams','$location','$window','$q','egCore',
190         'egGridDataProvider','egHoldGridActions','$timeout','holdingsSvc',
191 function($scope , $routeParams , $location , $window , $q , egCore) {
192
193     $scope.have_template = false;
194     $scope.marc_template = '';
195     $scope.stop_unload = false;
196     $scope.template_list = [];
197     $scope.template_name = '';
198     $scope.new_bib_id = 0;
199
200     egCore.net.request(
201         'open-ils.cat',
202         'open-ils.cat.marc_template.types.retrieve'
203     ).then(function(resp) {
204         angular.forEach(resp, function(name) {
205             $scope.template_list.push(name);
206         });
207         $scope.template_list.sort();
208     });
209     $scope.template_name = egCore.hatch.getSessionItem('eg.cat.last_bib_marc_template');
210     if (!$scope.template_name) {
211         egCore.hatch.getItem('cat.default_bib_marc_template').then(function(template) {
212             $scope.template_name = template;
213         });
214     }
215
216     $scope.loadTemplate = function() {
217         if ($scope.template_name) {
218             egCore.net.request(
219                 'open-ils.cat',
220                 'open-ils.cat.biblio.marc_template.retrieve',
221                 $scope.template_name
222             ).then(function(template) {
223                 $scope.marc_template = template;
224                 $scope.have_template = true;
225                 egCore.hatch.setSessionItem('eg.cat.last_bib_marc_template', $scope.template_name);
226             });
227         }
228     }
229
230     $scope.setDefaultTemplate = function() {
231         var hatch_key = "cat.default_bib_marc_template";
232         if ($scope.template_name) {
233             egCore.hatch.setItem(hatch_key, $scope.template_name);
234         } else {
235             egCore.hatch.removeItem(hatch_key);
236         }
237     }
238
239     $scope.$watch('new_bib_id', function(newVal, oldVal) {
240         if (newVal) {
241             $location.path('/cat/catalog/record/' + $scope.new_bib_id);
242         }
243     });
244     
245
246 }])
247 .controller('CatalogCtrl',
248        ['$scope','$routeParams','$location','$window','$q','egCore','egHolds','egCirc','egConfirmDialog','ngToast',
249         'egGridDataProvider','egHoldGridActions','egProgressDialog','$timeout','$uibModal','holdingsSvc','egUser','conjoinedSvc',
250         '$cookies','egSerialsCoreSvc',
251 function($scope , $routeParams , $location , $window , $q , egCore , egHolds , egCirc , egConfirmDialog , ngToast ,
252          egGridDataProvider , egHoldGridActions , egProgressDialog , $timeout , $uibModal , holdingsSvc , egUser , conjoinedSvc,
253          $cookies , egSerialsCoreSvc
254 ) {
255
256     var holdingsSvcInst = new holdingsSvc();
257
258     // set record ID on page load if available...
259     $scope.record_id = $routeParams.record_id;
260     $scope.summary_pane_record;
261
262     if ($scope.record_id) {
263         // TODO: Apply tab-specific title contexts
264         egCore.strings.setPageTitle(
265             egCore.strings.PAGE_TITLE_BIB_DETAIL,
266             egCore.strings.PAGE_TITLE_CATALOG_CONTEXT,
267             {record_id : $scope.record_id}
268         );
269     } else {
270         // Default to title = Catalog
271         egCore.strings.setPageTitle(
272             egCore.strings.PAGE_TITLE_CATALOG_CONTEXT);
273     }
274
275     if ($routeParams.record_id) $scope.from_route = true;
276     else $scope.from_route = false;
277
278     // set search and preferred library cookies
279     egCore.hatch.getItem('eg.search.search_lib').then(function(val) {
280         $cookies.put('eg_search_lib', val, { path : '/' });
281     });
282     egCore.hatch.getItem('eg.search.pref_lib').then(function(val) {
283         $cookies.put('eg_pref_lib', val, { path : '/' });
284     });
285
286     // will hold a ref to the opac iframe
287     $scope.opac_iframe = null;
288     $scope.parts_iframe = null;
289
290     $scope.search_result_index = 1;
291     $scope.search_result_hit_count = 1;
292
293     $scope.$watch(
294         'opac_iframe.dom.contentWindow.search_result_index',
295         function (n,o) {
296             if (!isNaN(parseInt(n)))
297                 $scope.search_result_index = n + 1;
298         }
299     );
300
301     $scope.$watch(
302         'opac_iframe.dom.contentWindow.search_result_hit_count',
303         function (n,o) {
304             if (!isNaN(parseInt(n)))
305                 $scope.search_result_hit_count = n;
306         }
307     );
308
309     $scope.in_opac_call = false;
310     $scope.opac_call = function (opac_frame_function, force_opac_tab) {
311         if ($scope.opac_iframe) {
312             if (force_opac_tab) $scope.record_tab = 'catalog';
313             $scope.in_opac_call = true;
314             $scope.opac_iframe.dom.contentWindow[opac_frame_function]();
315             if (opac_frame_function == 'rdetailBackToResults') {
316                 $location.update_path('/cat/catalog/index');
317             }
318         }
319     }
320
321     $scope.add_to_record_bucket = function() {
322         var recId = $scope.record_id;
323         return $uibModal.open({
324             templateUrl: './cat/catalog/t_add_to_bucket',
325             backdrop: 'static',
326             animation: true,
327             size: 'md',
328             controller:
329                    ['$scope','$uibModalInstance',
330             function($scope , $uibModalInstance) {
331
332                 $scope.bucket_id = 0;
333                 $scope.newBucketName = '';
334                 $scope.allBuckets = [];
335                 egCore.net.request(
336                     'open-ils.actor',
337                     'open-ils.actor.container.retrieve_by_class.authoritative',
338                     egCore.auth.token(), egCore.auth.user().id(),
339                     'biblio', 'staff_client'
340                 ).then(function(buckets) { $scope.allBuckets = buckets; });
341
342                 $scope.add_to_bucket = function() {
343                     var item = new egCore.idl.cbrebi();
344                     item.bucket($scope.bucket_id);
345                     item.target_biblio_record_entry(recId);
346                     egCore.net.request(
347                         'open-ils.actor',
348                         'open-ils.actor.container.item.create',
349                         egCore.auth.token(), 'biblio', item
350                     ).then(function(resp) {
351                         $uibModalInstance.close();
352                     });
353                 }
354
355                 $scope.add_to_new_bucket = function() {
356                     var bucket = new egCore.idl.cbreb();
357                     bucket.owner(egCore.auth.user().id());
358                     bucket.name($scope.newBucketName);
359                     bucket.description('');
360                     bucket.btype('staff_client');
361
362                     egCore.net.request(
363                         'open-ils.actor',
364                         'open-ils.actor.container.create',
365                         egCore.auth.token(), 'biblio', bucket
366                     ).then(function(bucket) {
367                         $scope.bucket_id = bucket;
368                         $scope.add_to_bucket();
369                     });
370                 }
371
372                 $scope.cancel = function() {
373                     $uibModalInstance.dismiss();
374                 }
375             }]
376         });
377     }
378
379     $scope.current_overlay_target     = egCore.hatch.getLocalItem('eg.cat.marked_overlay_record');
380     $scope.current_voltransfer_target = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
381     $scope.current_conjoined_target   = egCore.hatch.getLocalItem('eg.cat.marked_conjoined_record');
382
383     $scope.quickReceive = function () {
384         var list = [];
385         var next_per_stream = {};
386
387         var recId = $scope.record_id;
388         return $uibModal.open({
389             templateUrl: './share/t_subscription_select_dialog',
390             backdrop: 'static',
391             controller: ['$scope', '$uibModalInstance',
392                 function($scope, $uibModalInstance) {
393
394                     $scope.focus = true;
395                     $scope.rememberMe = 'eg.serials.quickreceive.last_org';
396                     $scope.record_id = recId;
397                     $scope.ssubId = null;
398
399                     $scope.ok = function() { $uibModalInstance.close($scope.ssubId) }
400                     $scope.cancel = function() { $uibModalInstance.dismiss(); }
401                 }
402             ]
403         }).result.then(function(ssubId) {
404             if (ssubId) {
405                 var promises = [];
406                 promises.push(egSerialsCoreSvc.fetchItemsForSub(ssubId,{status:'Expected'}).then(function(){
407                     angular.forEach(egSerialsCoreSvc.itemTree, function (item) {
408                         if (next_per_stream[item.stream().id()]) return;
409                         if (item.status() == 'Expected') {
410                             next_per_stream[item.stream().id()] = item;
411                             list.push(egCore.idl.Clone(item));
412                         }
413                     });
414                 }));
415
416                 return $q.all(promises).then(function() {
417
418                     if (!list.length) {
419                         ngToast.warning(egCore.strings.SERIALS_NO_ITEMS);
420                         return $q.reject();
421                     }
422
423                     return egSerialsCoreSvc.process_items(
424                         'receive',
425                         $scope.record_id,
426                         list,
427                         true, // barcode
428                         false,// bind
429                         false, // print by default
430                         function() { $scope.holdings_record_id_changed($scope.record_id) }
431                     );
432                 });
433             } else {
434                 ngToast.warning(egCore.strings.SERIALS_NO_SUBS);
435                 return $q.reject();
436             }
437         });
438     }
439
440     $scope.markConjoined = function () {
441         $scope.current_conjoined_target = $scope.record_id;
442         egCore.hatch.setLocalItem('eg.cat.marked_conjoined_record',$scope.record_id);
443         ngToast.create(egCore.strings.MARK_CONJ_TARGET);
444     };
445
446     $scope.markVolTransfer = function () {
447         ngToast.create(egCore.strings.MARK_VOL_TARGET);
448         $scope.current_voltransfer_target = $scope.record_id;
449         egCore.hatch.setLocalItem('eg.cat.marked_volume_transfer_record',$scope.record_id);
450     };
451
452     $scope.markOverlay = function () {
453         $scope.current_overlay_target = $scope.record_id;
454         egCore.hatch.setLocalItem('eg.cat.marked_overlay_record',$scope.record_id);
455         ngToast.create(egCore.strings.MARK_OVERLAY_TARGET);
456     };
457
458     $scope.clearRecordMarks = function () {
459         $scope.current_overlay_target     = null;
460         $scope.current_voltransfer_target = null;
461         $scope.current_conjoined_target   = null;
462         $scope.current_hold_transfer_dest = null;
463         egCore.hatch.removeLocalItem('eg.cat.marked_volume_transfer_record');
464         egCore.hatch.removeLocalItem('eg.cat.marked_conjoined_record');
465         egCore.hatch.removeLocalItem('eg.cat.marked_overlay_record');
466         egCore.hatch.removeLocalItem('eg.circ.hold.title_transfer_target');
467     }
468
469     $scope.stop_unload = false;
470     $scope.$watch('stop_unload',
471         function(newVal, oldVal) {
472             if (newVal && newVal != oldVal && $scope.opac_iframe) {
473                 $($scope.opac_iframe.dom.contentWindow).on('beforeunload', function(){
474                     return 'There is unsaved data in this record.'
475                 });
476             } else {
477                 if ($scope.opac_iframe)
478                     $($scope.opac_iframe.dom.contentWindow).off('beforeunload');
479             }
480         }
481     );
482
483     // Set the "last bib" cookie, if we have that
484     if ($scope.record_id)
485         egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
486
487     $scope.refresh_record_callback = function (record_id) {
488         egCore.pcrud.retrieve('bre', record_id, {
489             flesh : 1,
490             flesh_fields : {
491                 bre : ['simple_record','creator','editor']
492             }
493         }).then(function(rec) {
494             rec.owner(egCore.org.get(rec.owner()));
495             $scope.summary_pane_record = rec;
496         });
497
498         return record_id;
499     }
500
501     patron_search_dialog = function() {
502         return $uibModal.open({
503             templateUrl: './share/t_patron_selector',
504             backdrop: 'static',
505             size: 'lg',
506             animation: true,
507             controller:
508                    ['$scope','$uibModalInstance','$controller',
509             function($scope , $uibModalInstance , $controller) {
510                 angular.extend(this, $controller('BasePatronSearchCtrl', {$scope : $scope}));
511                 $scope.clearForm();
512                 $scope.need_one_selected = function() {
513                     var items = $scope.gridControls.selectedItems();
514                     return (items.length == 1) ? false : true
515                 }
516                 $scope.ok = function() {
517                     var items = $scope.gridControls.selectedItems();
518                     if (items.length == 1) {
519                         $uibModalInstance.close(items[0].card().barcode());
520                     } else {
521                         $uibModalInstance.close()
522                     }
523                 }
524                 $scope.cancel = function($event) {
525                     $uibModalInstance.dismiss();
526                     $event.preventDefault();
527                 }
528             }]
529         });
530     }
531
532     // also set it when the iframe changes to a new record
533     $scope.handle_page = function(url) {
534
535         if (!url || url == 'about:blank') {
536             // nothing loaded.  If we already have a record ID, leave it.
537             return;
538         }
539
540         var match = url.match(/\/+opac\/+record\/+(\d+)/);
541         if (match) {
542             $scope.record_id = match[1];
543             egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
544             $scope.holdings_record_id_changed($scope.record_id);
545             conjoinedSvc.fetch($scope.record_id).then(function(){
546                 $scope.conjoinedGridDataProvider.refresh();
547             });
548             egHolds.fetch_holds(hold_ids).then($scope.hold_grid_data_provider.refresh);
549             init_parts_url();
550             $location.update_path('/cat/catalog/record/' + $scope.record_id);
551             // update_path() bypasses the controller for path 
552             // /cat/catalog/record/:record_id. Manually set title here too.
553             egCore.strings.setPageTitle(
554                 egCore.strings.PAGE_TITLE_BIB_DETAIL,
555                 egCore.strings.PAGE_TITLE_CATALOG_CONTEXT,
556                 {record_id : $scope.record_id}
557             );
558         } else {
559             delete $scope.record_id;
560             $scope.from_route = false;
561         }
562
563         // child scope is executing this function, so our digest doesn't fire ... thus,
564         $scope.$apply();
565
566         if (!$scope.in_opac_call) {
567             if ($scope.record_id && !$scope.record_tab) {
568                 $scope.default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
569                 tab = $routeParams.record_tab || $scope.default_tab || 'catalog';
570             } else {
571                 tab = $routeParams.record_tab || 'catalog';
572             }
573             $scope.set_record_tab(tab);
574         } else {
575             $scope.in_opac_call = false;
576         }
577
578         if ($scope.opac_iframe && $location.path().match(/cat\/catalog/)) {
579             var doc = $scope.opac_iframe.dom.contentWindow.document;
580             $(doc).find('#hold_usr_search').show();
581             $(doc).find('#hold_usr_search').on('click', function() {
582                 patron_search_dialog().result.then(function(barc) {
583                     $(doc).find('#hold_usr_input').val(barc);
584                     $(doc).find('#hold_usr_input').change();
585                 });
586             })
587         }
588
589     }
590
591     // xulG catalog handlers
592     $scope.handlers = { }
593
594     // ------------------------------------------------------------------
595     // Conjoined items
596
597     $scope.conjoinedGridControls = {};
598     $scope.conjoinedGridDataProvider = egGridDataProvider.instance({
599         get : function(offset, count) {
600             return this.arrayNotifier(conjoinedSvc.items, offset, count);
601         }
602     });
603
604     $scope.changeConjoinedType = function () {
605         var peers = egCore.idl.Clone($scope.conjoinedGridControls.selectedItems());
606         angular.forEach(peers, function (p) {
607             p.target_copy(p.target_copy().id());
608             p.peer_type(p.peer_type().id());
609         });
610
611         var conjoinedGridDataProviderRef = $scope.conjoinedGridDataProvider;
612
613         return $uibModal.open({
614             templateUrl: './cat/catalog/t_conjoined_selector',
615             backdrop: 'static',
616             animation: true,
617             controller:
618                    ['$scope','$uibModalInstance',
619             function($scope , $uibModalInstance) {
620                 $scope.update = true;
621
622                 $scope.peer_type = null;
623                 $scope.peer_type_list = [];
624                 conjoinedSvc.get_peer_types().then(function(list){
625                     $scope.peer_type_list = list;
626                 });
627     
628                 $scope.ok = function(type) {
629                     var promises = [];
630     
631                     angular.forEach(peers, function (p) {
632                         p.ischanged(1);
633                         p.peer_type(type);
634                         promises.push(egCore.pcrud.update(p));
635                     });
636     
637                     return $q.all(promises)
638                         .then(function(){$uibModalInstance.close()})
639                         .then(function(){return conjoinedSvc.fetch()})
640                         .then(function(){conjoinedGridDataProviderRef.refresh()});
641                 }
642     
643                 $scope.cancel = function($event) {
644                     $uibModalInstance.dismiss();
645                     $event.preventDefault();
646                 }
647             }]
648         });
649         
650     }
651
652     $scope.refreshConjoined = function () {
653         conjoinedSvc.fetch($scope.record_id)
654         .then(function(){$scope.conjoinedGridDataProvider.refresh();});
655     }
656
657     $scope.deleteSelectedConjoined = function () {
658         var peers = $scope.conjoinedGridControls.selectedItems();
659
660         if (peers.length > 0) {
661             egConfirmDialog.open(
662                 egCore.strings.CONFIRM_DELETE_PEERS,
663                 egCore.strings.CONFIRM_DELETE_PEERS_MESSAGE,
664                 {peers : peers.length}
665             ).result.then(function() {
666                 angular.forEach(peers, function (p) {
667                     p.isdeleted(1);
668                 });
669
670                 egCore.pcrud.remove(peers).then(function() {
671                     return conjoinedSvc.fetch();
672                 }).then(function() {
673                     $scope.conjoinedGridDataProvider.refresh();
674                 });
675             });
676         }
677     }
678     if ($scope.record_id)
679         conjoinedSvc.fetch($scope.record_id);
680
681     // ------------------------------------------------------------------
682     // Holdings
683
684     $scope.holdingsGridControls = {
685         activateItem : function (item) {
686             $scope.selectedHoldingsVolCopyEdit();
687         }
688     };
689     $scope.holdingsGridDataProvider = egGridDataProvider.instance({
690         get : function(offset, count) {
691             return this.arrayNotifier(holdingsSvcInst.copies, offset, count);
692         }
693     });
694
695     $scope.add_copies_to_bucket = function() {
696         var copy_list = gatherSelectedHoldingsIds();
697         if (copy_list.length == 0) return;
698
699         return $uibModal.open({
700             templateUrl: './cat/catalog/t_add_to_bucket',
701             backdrop: 'static',
702             animation: true,
703             size: 'md',
704             controller:
705                    ['$scope','$uibModalInstance',
706             function($scope , $uibModalInstance) {
707
708                 $scope.bucket_id = 0;
709                 $scope.newBucketName = '';
710                 $scope.allBuckets = [];
711
712                 egCore.net.request(
713                     'open-ils.actor',
714                     'open-ils.actor.container.retrieve_by_class.authoritative',
715                     egCore.auth.token(), egCore.auth.user().id(),
716                     'copy', 'staff_client'
717                 ).then(function(buckets) { $scope.allBuckets = buckets; });
718
719                 $scope.add_to_bucket = function() {
720                     var promises = [];
721                     angular.forEach(copy_list, function (cp) {
722                         var item = new egCore.idl.ccbi()
723                         item.bucket($scope.bucket_id);
724                         item.target_copy(cp);
725                         promises.push(
726                             egCore.net.request(
727                                 'open-ils.actor',
728                                 'open-ils.actor.container.item.create',
729                                 egCore.auth.token(), 'copy', item
730                             )
731                         );
732
733                         return $q.all(promises).then(function() {
734                             $uibModalInstance.close();
735                         });
736                     });
737                 }
738
739                 $scope.add_to_new_bucket = function() {
740                     var bucket = new egCore.idl.ccb();
741                     bucket.owner(egCore.auth.user().id());
742                     bucket.name($scope.newBucketName);
743                     bucket.description('');
744                     bucket.btype('staff_client');
745
746                     return egCore.net.request(
747                         'open-ils.actor',
748                         'open-ils.actor.container.create',
749                         egCore.auth.token(), 'copy', bucket
750                     ).then(function(bucket) {
751                         $scope.bucket_id = bucket;
752                         $scope.add_to_bucket();
753                     });
754                 }
755
756                 $scope.cancel = function() {
757                     $uibModalInstance.dismiss();
758                 }
759             }]
760         });
761     }
762
763     // TODO: refactor common code between cat/catalog/app.js and cat/item/app.js 
764
765     $scope.need_one_selected = function() {
766         var items = $scope.holdingsGridControls.selectedItems();
767         if (items.length == 1) return false;
768         return true;
769     };
770
771     $scope.make_copies_bookable = function() {
772
773         var copies_by_record = {};
774         var record_list = [];
775         angular.forEach(
776             $scope.holdingsGridControls.selectedItems(),
777             function (item) {
778                 var record_id = item['call_number.record.id'];
779                 if (typeof copies_by_record[ record_id ] == 'undefined') {
780                     copies_by_record[ record_id ] = [];
781                     record_list.push( record_id );
782                 }
783                 copies_by_record[ record_id ].push(item.id);
784             }
785         );
786
787         var promises = [];
788         var combined_results = [];
789         angular.forEach(record_list, function(record_id) {
790             promises.push(
791                 egCore.net.request(
792                     'open-ils.booking',
793                     'open-ils.booking.resources.create_from_copies',
794                     egCore.auth.token(),
795                     copies_by_record[record_id]
796                 ).then(function(results) {
797                     if (results && results['brsrc']) {
798                         combined_results = combined_results.concat(results['brsrc']);
799                     }
800                 })
801             );
802         });
803
804         $q.all(promises).then(function() {
805             if (combined_results.length > 0) {
806                 $uibModal.open({
807                     template: '<eg-embed-frame url="booking_admin_url" handlers="funcs"></eg-embed-frame>',
808                     backdrop: 'static',
809                     animation: true,
810                     size: 'md',
811                     controller:
812                            ['$scope','$location','egCore','$uibModalInstance',
813                     function($scope , $location , egCore , $uibModalInstance) {
814
815                         $scope.funcs = {
816                             ses : egCore.auth.token(),
817                             resultant_brsrc : combined_results.map(function(o) { return o[0]; })
818                         }
819
820                         var booking_path = '/eg/conify/global/booking/resource';
821
822                         $scope.booking_admin_url =
823                             $location.absUrl().replace(/\/eg\/staff.*/, booking_path);
824                     }]
825                 });
826             }
827         });
828     }
829
830     $scope.book_copies_now = function() {
831         var copies_by_record = {};
832         var record_list = [];
833         angular.forEach(
834             $scope.holdingsGridControls.selectedItems(),
835             function (item) {
836                 var record_id = item['call_number.record.id'];
837                 if (typeof copies_by_record[ record_id ] == 'undefined') {
838                     copies_by_record[ record_id ] = [];
839                     record_list.push( record_id );
840                 }
841                 copies_by_record[ record_id ].push(item.id);
842             }
843         );
844
845         var promises = [];
846         var combined_brt = [];
847         var combined_brsrc = [];
848         angular.forEach(record_list, function(record_id) {
849             promises.push(
850                 egCore.net.request(
851                     'open-ils.booking',
852                     'open-ils.booking.resources.create_from_copies',
853                     egCore.auth.token(),
854                     copies_by_record[record_id]
855                 ).then(function(results) {
856                     if (results && results['brt']) {
857                         combined_brt = combined_brt.concat(results['brt']);
858                     }
859                     if (results && results['brsrc']) {
860                         combined_brsrc = combined_brsrc.concat(results['brsrc']);
861                     }
862                 })
863             );
864         });
865
866         $q.all(promises).then(function() {
867             if (combined_brt.length > 0 || combined_brsrc.length > 0) {
868                 $uibModal.open({
869                     template: '<eg-embed-frame url="booking_admin_url" handlers="funcs"></eg-embed-frame>',
870                     backdrop: 'static',
871                     animation: true,
872                     size: 'md',
873                     controller:
874                            ['$scope','$location','egCore','$uibModalInstance',
875                     function($scope , $location , egCore , $uibModalInstance) {
876
877                         $scope.funcs = {
878                             ses : egCore.auth.token(),
879                             bresv_interface_opts : {
880                                 booking_results : {
881                                      brt : combined_brt
882                                     ,brsrc : combined_brsrc
883                                 }
884                             }
885                         }
886
887                         var booking_path = '/eg/booking/reservation';
888
889                         $scope.booking_admin_url =
890                             $location.absUrl().replace(/\/eg\/staff.*/, booking_path);
891
892                     }]
893                 });
894             }
895         });
896     }
897
898
899     $scope.requestItems = function() {
900         var copy_list = gatherSelectedHoldingsIds();
901         if (copy_list.length == 0) return;
902
903         return $uibModal.open({
904             templateUrl: './cat/catalog/t_request_items',
905             animation: true,
906             controller:
907                    ['$scope','$uibModalInstance',
908             function($scope , $uibModalInstance) {
909                 $scope.user = null;
910                 $scope.first_user_fetch = true;
911
912                 $scope.hold_data = {
913                     hold_type : 'C',
914                     copy_list : copy_list,
915                     pickup_lib: egCore.org.get(egCore.auth.user().ws_ou()),
916                     user      : egCore.auth.user().id()
917                 };
918
919                 egUser.get( $scope.hold_data.user ).then(function(u) {
920                     $scope.user = u;
921                     $scope.barcode = u.card().barcode();
922                     $scope.user_name = egUser.format_name(u);
923                     $scope.hold_data.user = u.id();
924                 });
925
926                 $scope.user_name = '';
927                 $scope.barcode = '';
928                 $scope.$watch('barcode', function (n) {
929                     if (!$scope.first_user_fetch) {
930                         egUser.getByBarcode(n).then(function(u) {
931                             $scope.user = u;
932                             $scope.user_name = egUser.format_name(u);
933                             $scope.hold_data.user = u.id();
934                         }, function() {
935                             $scope.user = null;
936                             $scope.user_name = '';
937                             delete $scope.hold_data.user;
938                         });
939                     }
940                     $scope.first_user_fetch = false;
941                 });
942
943                 $scope.ok = function(h) {
944                     var args = {
945                         patronid  : h.user,
946                         hold_type : h.hold_type,
947                         pickup_lib: h.pickup_lib.id(),
948                         depth     : 0
949                     };
950
951                     egCore.net.request(
952                         'open-ils.circ',
953                         'open-ils.circ.holds.test_and_create.batch.override',
954                         egCore.auth.token(), args, h.copy_list
955                     );
956
957                     $uibModalInstance.close();
958                 }
959
960                 $scope.cancel = function($event) {
961                     $uibModalInstance.dismiss();
962                     $event.preventDefault();
963                 }
964             }]
965         });
966     }
967
968     $scope.view_place_orders = function() {
969         if (!$scope.record_id) return;
970         var url = egCore.env.basePath + 'acq/legacy/lineitem/related/' + $scope.record_id + '?target=bib';
971         $timeout(function() { $window.open(url, '_blank') });
972     }
973
974     $scope.replaceBarcodes = function() {
975         var copy_list = gatherSelectedRawCopies();
976         if (copy_list.length == 0) return;
977
978         var holdingsGridDataProviderRef = $scope.holdingsGridDataProvider;
979
980         angular.forEach(copy_list, function (cp) {
981             $uibModal.open({
982                 templateUrl: './cat/share/t_replace_barcode',
983                 backdrop: 'static',
984                 animation: true,
985                 controller:
986                            ['$scope','$uibModalInstance',
987                     function($scope , $uibModalInstance) {
988                         $scope.isModal = true;
989                         $scope.focusBarcode = false;
990                         $scope.focusBarcode2 = true;
991                         $scope.barcode1 = cp.barcode();
992
993                         $scope.updateBarcode = function() {
994                             $scope.copyNotFound = false;
995                             $scope.updateOK = false;
996                 
997                             egCore.pcrud.search('acp',
998                                 {deleted : 'f', barcode : $scope.barcode1})
999                             .then(function(copy) {
1000                 
1001                                 if (!copy) {
1002                                     $scope.focusBarcode = true;
1003                                     $scope.copyNotFound = true;
1004                                     return;
1005                                 }
1006                 
1007                                 $scope.copyId = copy.id();
1008                                 copy.barcode($scope.barcode2);
1009                 
1010                                 egCore.pcrud.update(copy).then(function(stat) {
1011                                     $scope.updateOK = stat;
1012                                     $scope.focusBarcode = true;
1013                                     holdingsSvc.fetchAgain().then(function (){
1014                                         holdingsGridDataProviderRef.refresh();
1015                                     });
1016                                 });
1017
1018                             });
1019                             $uibModalInstance.close();
1020                         }
1021
1022                         $scope.cancel = function($event) {
1023                             $uibModalInstance.dismiss();
1024                             $event.preventDefault();
1025                         }
1026                     }
1027                 ]
1028             });
1029         });
1030     }
1031
1032     // refresh the list of holdings when the record_id is changed.
1033     $scope.holdings_record_id_changed = function(id) {
1034         if ($scope.record_id != id) $scope.record_id = id;
1035         console.log('record id changed to ' + id + ', loading new holdings');
1036         holdingsSvcInst.fetch({
1037             rid : $scope.record_id,
1038             org : $scope.holdings_ou,
1039             copy: $scope.holdings_show_vols ? $scope.holdings_show_copies : false,
1040             vol : $scope.holdings_show_vols,
1041             empty: $scope.holdings_show_empty,
1042             empty_org: $scope.holdings_show_empty_org
1043         }).then(function() {
1044             $scope.holdingsGridDataProvider.refresh();
1045         });
1046     }
1047
1048     // refresh the list of holdings when the filter lib is changed.
1049     $scope.holdings_ou = egCore.org.get(egCore.auth.user().ws_ou());
1050     $scope.holdings_ou_changed = function(org) {
1051         $scope.holdings_ou = org;
1052         holdingsSvcInst.fetch({
1053             rid : $scope.record_id,
1054             org : $scope.holdings_ou,
1055             copy: $scope.holdings_show_vols ? $scope.holdings_show_copies : false,
1056             vol : $scope.holdings_show_vols,
1057             empty: $scope.holdings_show_empty,
1058             empty_org: $scope.holdings_show_empty_org
1059         }).then(function() {
1060             $scope.holdingsGridDataProvider.refresh();
1061         });
1062     }
1063
1064     $scope.holdings_cb_changed = function(cb,newVal,norefresh) {
1065         $scope[cb] = newVal;
1066         var x = $scope.holdings_show_vols ? $scope.holdings_show_copies : false;
1067         $('#holdings_show_copies').prop('checked', x);
1068         egCore.hatch.setItem('cat.' + cb, newVal);
1069         if (!norefresh) holdingsSvcInst.fetch({
1070             rid : $scope.record_id,
1071             org : $scope.holdings_ou,
1072             copy: $scope.holdings_show_vols ? $scope.holdings_show_copies : false,
1073             vol : $scope.holdings_show_vols,
1074             empty: $scope.holdings_show_empty,
1075             empty_org: $scope.holdings_show_empty_org
1076         }).then(function() {
1077             $scope.holdingsGridDataProvider.refresh();
1078         });
1079     }
1080
1081     egCore.hatch.getItem('cat.holdings_show_vols').then(function(x){
1082         if (typeof x ==  'undefined') x = true;
1083         $scope.holdings_cb_changed('holdings_show_vols',x,true);
1084         $('#holdings_show_vols').prop('checked', x);
1085     }).then(function(){
1086         egCore.hatch.getItem('cat.holdings_show_copies').then(function(x){
1087             if (typeof x ==  'undefined') x = true;
1088             $scope.holdings_cb_changed('holdings_show_copies',x,true);
1089             x = $scope.holdings_show_vols ? x : false;
1090             $('#holdings_show_copies').prop('checked', x);
1091         }).then(function(){
1092             egCore.hatch.getItem('cat.holdings_show_empty').then(function(x){
1093                 if (typeof x ==  'undefined') x = true;
1094                 $scope.holdings_cb_changed('holdings_show_empty',x);
1095                 $('#holdings_show_empty').prop('checked', x);
1096             }).then(function(){
1097                 egCore.hatch.getItem('cat.holdings_show_empty_org').then(function(x){
1098                     if (typeof x ==  'undefined') x = true;
1099                     $scope.holdings_cb_changed('holdings_show_empty_org',x);
1100                     $('#holdings_show_empty_org').prop('checked', x);
1101                 })
1102             })
1103         })
1104     });
1105
1106     $scope.vols_not_shown = function () {
1107         return !$scope.holdings_show_vols;
1108     }
1109
1110     $scope.copies_not_shown = function () {
1111         return !$scope.holdings_show_copies;
1112     }
1113
1114     $scope.empty_org_not_shown = function () {
1115         return !$scope.holdings_show_empty_org;
1116     }
1117
1118     $scope.holdings_checkbox_handler = function (item) {
1119         $scope.holdings_cb_changed(item.checkbox,item.checked);
1120     }
1121
1122     function gatherSelectedHoldingsIds () {
1123         var cp_id_list = [];
1124         angular.forEach(
1125             $scope.holdingsGridControls.selectedItems(),
1126             function (item) { cp_id_list = cp_id_list.concat(item.id_list) }
1127         );
1128         return cp_id_list;
1129     }
1130
1131     function gatherSelectedRawCopies () {
1132         var cp_list = [];
1133         angular.forEach(
1134             $scope.holdingsGridControls.selectedItems(),
1135             function (item) { if (item.raw) cp_list = cp_list.concat(item.raw) }
1136         );
1137         return cp_list;
1138     }
1139
1140     function gatherSelectedEmptyVolumeIds () {
1141         var cn_id_list = [];
1142         angular.forEach(
1143             $scope.holdingsGridControls.selectedItems(),
1144             function (item) {
1145                 if (item.copy_count == 0)
1146                     cn_id_list.push(item.call_number.id)
1147             }
1148         );
1149         return cn_id_list;
1150     }
1151
1152     function gatherSelectedVolumeIds () {
1153         var cn_id_list = [];
1154         angular.forEach(
1155             $scope.holdingsGridControls.selectedItems(),
1156             function (item) {
1157                 if (cn_id_list.indexOf(item.call_number.id) == -1)
1158                     cn_id_list.push(item.call_number.id)
1159             }
1160         );
1161         return cn_id_list;
1162     }
1163
1164     $scope.selectedHoldingsDelete = function (vols, copies) {
1165
1166         var cnHash = {};
1167         var perCnCopies = {};
1168
1169         var cn_count = 0;
1170         var cp_count = 0;
1171
1172         angular.forEach(
1173             $scope.holdingsGridControls.selectedItems(),
1174             function (item) {
1175                 if (vols && item.raw_call_number) {
1176                     cnHash[item.call_number.id] = egCore.idl.Clone(item.raw_call_number);
1177                     cnHash[item.call_number.id].isdeleted(1);
1178                     cn_count++;
1179                 } else if (copies) {
1180                     angular.forEach(egCore.idl.Clone(item.raw), function (cp) {
1181                         cp.isdeleted(1);
1182                         cp_count++;
1183                         var cn_id = cp.call_number().id();
1184                         if (!cnHash[cn_id]) {
1185                             cnHash[cn_id] = cp.call_number();
1186                             perCnCopies[cn_id] = [cp];
1187                         } else {
1188                             perCnCopies[cn_id].push(cp);
1189                         }
1190                         cp.call_number(cn_id); // prevent loops in JSON-ification
1191                     });
1192
1193                 }
1194             }
1195         );
1196
1197         angular.forEach(perCnCopies, function (v, k) {
1198             if (vols) {
1199                 cnHash[k].isdeleted(1);
1200                 cn_count++;
1201             }
1202             cnHash[k].copies(v);
1203         });
1204
1205         cnList = [];
1206         angular.forEach(cnHash, function (v, k) {
1207             cnList.push(v);
1208         });
1209
1210         if (cnList.length == 0) return;
1211
1212         var flags = {};
1213         if (vols && copies) flags.force_delete_copies = 1;
1214
1215         egConfirmDialog.open(
1216             egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES,
1217             egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES_MESSAGE,
1218             {copies : cp_count, volumes : cn_count}
1219         ).result.then(function() {
1220             egCore.net.request(
1221                 'open-ils.cat',
1222                 'open-ils.cat.asset.volume.fleshed.batch.update.override',
1223                 egCore.auth.token(), cnList, 1, flags
1224             ).then(function(update_count) {
1225                 holdingsSvcInst.fetchAgain().then(function() {
1226                     $scope.holdingsGridDataProvider.refresh();
1227                 });
1228             });
1229         });
1230     }
1231     $scope.selectedHoldingsCopyDelete = function () { $scope.selectedHoldingsDelete(false,true) }
1232     $scope.selectedHoldingsVolCopyDelete = function () { $scope.selectedHoldingsDelete(true,true) }
1233     $scope.selectedHoldingsEmptyVolCopyDelete = function () { $scope.selectedHoldingsDelete(true,false) }
1234
1235     spawnHoldingsAdd = function (vols,copies){
1236         var raw = [];
1237         if (copies) { // just a copy on existing volumes
1238             angular.forEach(gatherSelectedVolumeIds(), function (v) {
1239                 raw.push( {callnumber : v} );
1240             });
1241         } else if (vols) {
1242             if (typeof $scope.holdingsGridControls.selectedItems == "function" &&
1243                 $scope.holdingsGridControls.selectedItems().length > 0) {
1244                 angular.forEach($scope.holdingsGridControls.selectedItems(),
1245                     function (item) {
1246                         raw.push({
1247                             owner : item.owner_id,
1248                             label : item.call_number.label
1249                         });
1250                     });
1251             } else {
1252                 raw.push({
1253                     owner : egCore.auth.user().ws_ou()
1254                 });
1255             }
1256         }
1257
1258         if (raw.length == 0) raw.push({});
1259
1260         egCore.net.request(
1261             'open-ils.actor',
1262             'open-ils.actor.anon_cache.set_value',
1263             null, 'edit-these-copies', {
1264                 record_id: $scope.record_id,
1265                 raw: raw,
1266                 hide_vols : false,
1267                 hide_copies : false
1268             }
1269         ).then(function(key) {
1270             if (key) {
1271                 var url = egCore.env.basePath + 'cat/volcopy/' + key;
1272                 $timeout(function() { $window.open(url, '_blank') });
1273             } else {
1274                 alert('Could not create anonymous cache key!');
1275             }
1276         });
1277     }
1278     $scope.selectedHoldingsVolCopyAdd = function () { spawnHoldingsAdd(true,false) }
1279     $scope.selectedHoldingsCopyAdd = function () { spawnHoldingsAdd(false,true) }
1280
1281     spawnHoldingsEdit = function (hide_vols,hide_copies){
1282         egCore.net.request(
1283             'open-ils.actor',
1284             'open-ils.actor.anon_cache.set_value',
1285             null, 'edit-these-copies', {
1286                 record_id: $scope.record_id,
1287                 copies: gatherSelectedHoldingsIds(),
1288                 raw: gatherSelectedEmptyVolumeIds().map(
1289                     function(v){ return { callnumber : v } }
1290                 ),
1291                 hide_vols : hide_vols,
1292                 hide_copies : hide_copies
1293             }
1294         ).then(function(key) {
1295             if (key) {
1296                 var url = egCore.env.basePath + 'cat/volcopy/' + key;
1297                 $timeout(function() { $window.open(url, '_blank') });
1298             } else {
1299                 alert('Could not create anonymous cache key!');
1300             }
1301         });
1302     }
1303     $scope.selectedHoldingsVolCopyEdit = function () { spawnHoldingsEdit(false,false) }
1304     $scope.selectedHoldingsVolEdit = function () { spawnHoldingsEdit(false,true) }
1305     $scope.selectedHoldingsCopyEdit = function () { spawnHoldingsEdit(true,false) }
1306
1307     $scope.selectedHoldingsItemStatus = function (){
1308         var url = egCore.env.basePath + 'cat/item/search/' + gatherSelectedHoldingsIds().join(',')
1309         $timeout(function() { $window.open(url, '_blank') });
1310     }
1311
1312     $scope.markVolAsItemTarget = function() {
1313         if ($scope.holdingsGridControls.selectedItems()[0].call_number.id) { // cn.id missing when vols are collapsed
1314             egCore.hatch.setLocalItem(
1315                 'eg.cat.item_transfer_target',
1316                 $scope.holdingsGridControls.selectedItems()[0].call_number.id
1317             );
1318             ngToast.create(egCore.strings.MARK_ITEM_TARGET);
1319         }
1320     }
1321
1322     $scope.markLibAsVolTarget = function() {
1323         return $uibModal.open({
1324             templateUrl: './cat/catalog/t_choose_vol_target_lib',
1325             backdrop: 'static',
1326             animation: true,
1327             controller:
1328                    ['$scope','$uibModalInstance',
1329             function($scope , $uibModalInstance) {
1330
1331                 var orgId = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target') || 1;
1332                 $scope.org = egCore.org.get(orgId);
1333                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
1334                 $scope.ok = function(org) {
1335                     egCore.hatch.setLocalItem(
1336                         'eg.cat.volume_transfer_target',
1337                         org.id()
1338                     );
1339                     $uibModalInstance.close();
1340                 }
1341                 $scope.cancel = function($event) {
1342                     $uibModalInstance.dismiss();
1343                     $event.preventDefault();
1344                 }
1345             }]
1346         });
1347     }
1348     $scope.markLibFromSelectedAsVolTarget = function() {
1349         egCore.hatch.setLocalItem(
1350             'eg.cat.volume_transfer_target',
1351             $scope.holdingsGridControls.selectedItems()[0].owner_id
1352         );
1353         ngToast.create(egCore.strings.MARK_VOL_TARGET);
1354     }
1355
1356     $scope.selectedHoldingsItemStatusDetail = function (){
1357         angular.forEach(
1358             gatherSelectedHoldingsIds(),
1359             function (cid) {
1360                 var url = egCore.env.basePath +
1361                           'cat/item/' + cid;
1362                 $timeout(function() { $window.open(url, '_blank') });
1363             }
1364         );
1365     }
1366
1367     $scope.transferVolumesToRecord = function (){
1368         var target_record = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
1369         if (!target_record) return;
1370         if ($scope.record_id == target_record) return;
1371         var items = $scope.holdingsGridControls.selectedItems();
1372         if (!items.length) return;
1373
1374         var vols_to_move   = {};
1375         angular.forEach(items, function(item) {
1376             if (!(item.call_number.owning_lib in vols_to_move)) {
1377                 vols_to_move[item.call_number.owning_lib] = new Array;
1378             }
1379             vols_to_move[item.call_number.owning_lib].push(item.call_number.id);
1380         });
1381
1382         var promises = [];        
1383         angular.forEach(vols_to_move, function(vols, owning_lib) {
1384             promises.push(egCore.net.request(
1385                 'open-ils.cat',
1386                 'open-ils.cat.asset.volume.batch.transfer.override',
1387                 egCore.auth.token(), {
1388                     docid   : target_record,
1389                     lib     : owning_lib,
1390                     volumes : vols
1391                 }
1392             ));
1393         });
1394         $q.all(promises).then(function(success) {
1395             if (success) {
1396                 ngToast.create(egCore.strings.VOLS_TRANSFERED);
1397                 holdingsSvcInst.fetchAgain().then(function() {
1398                     $scope.holdingsGridDataProvider.refresh();
1399                 });
1400             } else {
1401                 alert('Could not transfer volumes!');
1402             }
1403         });
1404     }
1405
1406     function transferVolumes(new_record){
1407         var xfer_target = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target');
1408
1409         if (xfer_target) {
1410             egCore.net.request(
1411                 'open-ils.cat',
1412                 'open-ils.cat.asset.volume.batch.transfer.override',
1413                 egCore.auth.token(), {
1414                     docid   : (new_record ? new_record : $scope.record_id),
1415                     lib     : xfer_target,
1416                     volumes : gatherSelectedVolumeIds()
1417                 }
1418             ).then(function(success) {
1419                 if (success) {
1420                     ngToast.create(egCore.strings.VOLS_TRANSFERED);
1421                     holdingsSvcInst.fetchAgain().then(function() {
1422                         $scope.holdingsGridDataProvider.refresh();
1423                     });
1424                 } else {
1425                     alert('Could not transfer volumes!');
1426                 }
1427             });
1428         }
1429         
1430     }
1431
1432     $scope.transferVolumesToLibrary = function() {
1433         transferVolumes();
1434     }
1435
1436     $scope.transferVolumesToRecordAndLibrary = function() {
1437         var target_record = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
1438         if (!target_record) return;
1439         transferVolumes(target_record);
1440     }
1441
1442     // this "transfers" selected copies to a new owning library,
1443     // auto-creating volumes and deleting unused volumes as required.
1444     $scope.changeItemOwningLib = function() {
1445         var xfer_target = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target');
1446         var items = $scope.holdingsGridControls.selectedItems();
1447         if (!xfer_target || !items.length) {
1448             return;
1449         }
1450         var vols_to_move   = {};
1451         var copies_to_move = {};
1452         angular.forEach(items, function(item) {
1453             if (item.call_number.owning_lib != xfer_target) {
1454                 if (item.call_number.id in vols_to_move) {
1455                     copies_to_move[item.call_number.id].push(item.id);
1456                 } else {
1457                     vols_to_move[item.call_number.id] = item.call_number;
1458                     copies_to_move[item.call_number.id] = new Array;
1459                     copies_to_move[item.call_number.id].push(item.id);
1460                 }
1461             }
1462         });
1463     
1464         var promises = [];
1465         angular.forEach(vols_to_move, function(vol) {
1466             promises.push(egCore.net.request(
1467                 'open-ils.cat',
1468                 'open-ils.cat.call_number.find_or_create',
1469                 egCore.auth.token(),
1470                 vol.label,
1471                 vol.record,
1472                 xfer_target,
1473                 vol.prefix.id,
1474                 vol.suffix.id,
1475                 vol.label_class
1476             ).then(function(resp) {
1477                 var evt = egCore.evt.parse(resp);
1478                 if (evt) return;
1479                 return egCore.net.request(
1480                     'open-ils.cat',
1481                     'open-ils.cat.transfer_copies_to_volume',
1482                     egCore.auth.token(),
1483                     resp.acn_id,
1484                     copies_to_move[vol.id]
1485                 );
1486             }));
1487         });
1488         $q.all(promises).then(function() {
1489             ngToast.create(egCore.strings.ITEMS_TRANSFERED);
1490             holdingsSvcInst.fetchAgain().then(function() {
1491                 $scope.holdingsGridDataProvider.refresh();
1492             });
1493         });
1494     }
1495
1496     $scope.gridCellHandlers = {};
1497     $scope.gridCellHandlers.copyAlertsEdit = function(id) {
1498         egCirc.manage_copy_alerts([id]).then(function() {
1499             // update grid items?
1500         });
1501     };
1502
1503     $scope.transferItems = function (){
1504         var xfer_target = egCore.hatch.getLocalItem('eg.cat.item_transfer_target');
1505         var copy_ids = gatherSelectedHoldingsIds();
1506         if (xfer_target && copy_ids.length > 0) {
1507             egCore.net.request(
1508                 'open-ils.cat',
1509                 'open-ils.cat.transfer_copies_to_volume',
1510                 egCore.auth.token(),
1511                 xfer_target,
1512                 copy_ids
1513             ).then(
1514                 function(resp) { // oncomplete
1515                     var evt = egCore.evt.parse(resp);
1516                     if (evt) {
1517                         egConfirmDialog.open(
1518                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_TITLE,
1519                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_BODY,
1520                             {'evt_desc': evt.desc}
1521                         ).result.then(function() {
1522                             egCore.net.request(
1523                                 'open-ils.cat',
1524                                 'open-ils.cat.transfer_copies_to_volume.override',
1525                                 egCore.auth.token(),
1526                                 xfer_target,
1527                                 copy_ids,
1528                                 { events: ['TITLE_LAST_COPY', 'COPY_DELETE_WARNING'] }
1529                             ).then(function(resp) {
1530                                 holdingsSvcInst.fetchAgain().then(function() {
1531                                     $scope.holdingsGridDataProvider.refresh();
1532                                 });
1533                             });
1534                         });
1535                     } else {
1536                         ngToast.create(egCore.strings.ITEMS_TRANSFERED);
1537                         holdingsSvcInst.fetchAgain().then(function() {
1538                             $scope.holdingsGridDataProvider.refresh();
1539                         });
1540                     }
1541                 },
1542                 null, // onerror
1543                 null // onprogress
1544             )
1545         }
1546     }
1547
1548     $scope.selectedHoldingsItemStatusTgrEvt = function (){
1549         angular.forEach(
1550             gatherSelectedHoldingsIds(),
1551             function (cid) {
1552                 var url = egCore.env.basePath +
1553                           'cat/item/' + cid + '/triggered_events';
1554                 $timeout(function() { $window.open(url, '_blank') });
1555             }
1556         );
1557     }
1558
1559     $scope.selectedHoldingsItemStatusHolds = function (){
1560         angular.forEach(
1561             gatherSelectedHoldingsIds(),
1562             function (cid) {
1563                 var url = egCore.env.basePath +
1564                           'cat/item/' + cid + '/holds';
1565                 $timeout(function() { $window.open(url, '_blank') });
1566             }
1567         );
1568     }
1569
1570     $scope.selectedHoldingsPrintLabels = function() {
1571         egCore.net.request(
1572             'open-ils.actor',
1573             'open-ils.actor.anon_cache.set_value',
1574             null, 'print-labels-these-copies', {
1575                 copies : gatherSelectedHoldingsIds()
1576             }
1577         ).then(function(key) {
1578             if (key) {
1579                 var url = egCore.env.basePath + 'cat/printlabels/' + key;
1580                 $timeout(function() { $window.open(url, '_blank') });
1581             } else {
1582                 alert('Could not create anonymous cache key!');
1583             }
1584         });
1585     }
1586
1587     $scope.selectedHoldingsDamaged = function () {
1588         var copy_list = gatherSelectedRawCopies();
1589         if (copy_list.length == 0) return;
1590
1591         angular.forEach(copy_list, function(cp) {
1592             egCirc.mark_damaged({
1593                 id: cp.id(),
1594                 barcode: cp.barcode(),
1595                 circ_lib: cp.circ_lib().id()
1596             }).then(function() {
1597                 holdingsSvcInst.fetchAgain().then(function() {
1598                     $scope.holdingsGridDataProvider.refresh();
1599                 });
1600             });
1601         });
1602     }
1603
1604     $scope.selectedHoldingsMissing = function () {
1605         egCirc.mark_missing(gatherSelectedHoldingsIds()).then(function() {
1606             holdingsSvcInst.fetchAgain().then(function() {
1607                 $scope.holdingsGridDataProvider.refresh();
1608             });
1609         });
1610     }
1611
1612     $scope.selectedHoldingsCopyAlertsAdd = function() {
1613         egCirc.add_copy_alerts(gatherSelectedHoldingsIds()).then(function() {
1614             // no need to refresh grid
1615         });
1616     }
1617     $scope.selectedHoldingsCopyAlertsManage = function() {
1618         egCirc.manage_copy_alerts(gatherSelectedHoldingsIds()).then(function() {
1619             // no need to refresh grid
1620         });
1621     }
1622
1623     $scope.attach_to_peer_bib = function() {
1624         var copy_list = gatherSelectedHoldingsIds();
1625         if (copy_list.length == 0) return;
1626
1627         egCore.hatch.getItem('eg.cat.marked_conjoined_record').then(function(target_record) {
1628             if (!target_record) return;
1629
1630             return $uibModal.open({
1631                 templateUrl: './cat/catalog/t_conjoined_selector',
1632                 backdrop: 'static',
1633                 animation: true,
1634                 controller:
1635                        ['$scope','$uibModalInstance',
1636                 function($scope , $uibModalInstance) {
1637                     $scope.update = false;
1638
1639                     $scope.peer_type = null;
1640                     $scope.peer_type_list = [];
1641                     conjoinedSvc.get_peer_types().then(function(list){
1642                         $scope.peer_type_list = list;
1643                     });
1644     
1645                     $scope.ok = function(type) {
1646                         var promises = [];
1647     
1648                         angular.forEach(copy_list, function (cp) {
1649                             var n = new egCore.idl.bpbcm();
1650                             n.isnew(true);
1651                             n.peer_record(target_record);
1652                             n.target_copy(cp);
1653                             n.peer_type(type);
1654                             promises.push(egCore.pcrud.create(n));
1655                         });
1656     
1657                         return $q.all(promises).then(function(){$uibModalInstance.close()});
1658                     }
1659     
1660                     $scope.cancel = function($event) {
1661                         $uibModalInstance.dismiss();
1662                         $event.preventDefault();
1663                     }
1664                 }]
1665             });
1666         });
1667     }
1668
1669
1670     // ------------------------------------------------------------------
1671     // Holds 
1672     var provider = egGridDataProvider.instance({});
1673     $scope.hold_grid_data_provider = provider;
1674     $scope.grid_actions = egHoldGridActions;
1675     $scope.grid_actions.refresh = function () { provider.refresh() };
1676     $scope.hold_grid_controls = {};
1677
1678     var hold_ids = []; // current list of holds
1679     function fetchHolds(offset, count) {
1680         var ids = hold_ids.slice(offset, offset + count);
1681
1682         return egHolds.fetch_holds(ids).then(null, null,
1683             function(hold_data) { 
1684                 return hold_data;
1685             }
1686         );
1687     }
1688
1689     provider.get = function(offset, count) {
1690         if ($scope.record_tab != 'holds') return $q.when();
1691         var deferred = $q.defer();
1692         hold_ids = []; // no caching ATM
1693
1694         // open a determinate progress dialog, max value set below.
1695         egProgressDialog.open({max : 1, value : 0});
1696
1697         // fetch the IDs
1698         egCore.net.request(
1699             'open-ils.circ',
1700             'open-ils.circ.holds.retrieve_all_from_title',
1701             egCore.auth.token(), $scope.record_id, 
1702             {pickup_lib : egCore.org.descendants($scope.pickup_ou.id(), true)}
1703         ).then(
1704             function(hold_data) {
1705                 hold_ids = []; // clear the list of ids, hack to avoid dups
1706                 // TODO: fix the underlying problem, which is that
1707                 // this gets called twice when switching to the holds
1708                 // tab; once explicitly, and once via the change handler
1709                 // on the OU selector
1710                 angular.forEach(hold_data, function(list, type) {
1711                     hold_ids = hold_ids.concat(list);
1712                 });
1713
1714                 // Set the max value of the progress bar to the lesser of
1715                 // the total number of holds to fetch or the page size
1716                 // of the grid.
1717                 egProgressDialog.update(
1718                     {max : Math.min(hold_ids.length, count)});
1719
1720                 var holds_fetched = 0;
1721                 fetchHolds(offset, count)
1722                 .then(deferred.resolve, null, 
1723                     function(hold_data) {
1724                         holds_fetched++;
1725                         deferred.notify(hold_data);
1726                         egProgressDialog.increment();
1727                     }
1728                 )['finally'](egProgressDialog.close);
1729             }
1730         );
1731
1732         return deferred.promise;
1733     }
1734
1735     $scope.detail_view = function(action, user_data, items) {
1736         if (h = items[0]) {
1737             $scope.detail_hold_id = h.hold.id();
1738         }
1739     }
1740
1741     $scope.list_view = function(items) {
1742          $scope.detail_hold_id = null;
1743     }
1744
1745     // refresh the list of record holds when the pickup lib is changed.
1746     $scope.pickup_ou = egCore.org.get(egCore.auth.user().ws_ou());
1747     $scope.pickup_ou_changed = function(org) {
1748         $scope.pickup_ou = org;
1749         provider.refresh();
1750     }
1751
1752     $scope.print_holds = function() {
1753         var holds = [];
1754         angular.forEach($scope.hold_grid_controls.allItems(), function(item) {
1755             holds.push({
1756                 hold : egCore.idl.toHash(item.hold),
1757                 patron_last : item.patron_last,
1758                 patron_alias : item.patron_alias,
1759                 patron_barcode : item.patron_barcode,
1760                 copy : egCore.idl.toHash(item.copy),
1761                 volume : egCore.idl.toHash(item.volume),
1762                 title : item.mvr.title(),
1763                 author : item.mvr.author()
1764             });
1765         });
1766
1767         egCore.print.print({
1768             context : 'receipt', 
1769             template : 'holds_for_bib', 
1770             scope : {holds : holds}
1771         });
1772     }
1773
1774     $scope.current_hold_transfer_dest = egCore.hatch.getLocalItem ('eg.circ.hold.title_transfer_target');
1775
1776     $scope.mark_hold_transfer_dest = function() {
1777         $scope.current_hold_transfer_dest = $scope.record_id;
1778         egCore.hatch.setLocalItem(
1779             'eg.circ.hold.title_transfer_target', $scope.record_id);
1780         ngToast.create(egCore.strings.HOLD_TRANSFER_DEST_MARKED);
1781     }
1782
1783     // UI presents this option as "all holds"
1784     $scope.transfer_holds_to_marked = function() {
1785         var hold_ids = $scope.hold_grid_controls.allItems().map(
1786             function(hold_data) {return hold_data.hold.id()});
1787         egHolds.transfer_to_marked_title(hold_ids);
1788     }
1789
1790     // ------------------------------------------------------------------
1791     // Initialize the selected tab
1792
1793     // we explicitly initialize catalog_url because otherwise Firefox
1794     // ends up setting it to $BASE_URL/{{url}}, which then messes
1795     // things up. See LP#1708951
1796     $scope.catalog_url = '';
1797
1798     function init_cat_url() {
1799         // Set the initial catalog URL.  This only happens once.
1800         // The URL is otherwise generated through user navigation.
1801         if ($scope.catalog_url) return;
1802
1803         var url = $location.absUrl().replace(/\/staff.*/, '/opac/advanced');
1804
1805         // A record ID in the path indicates a request for the record-
1806         // specific page.
1807         if ($routeParams.record_id) {
1808             url = url.replace(/advanced/, '/record/' + $scope.record_id);
1809         }
1810
1811         // Jumping directly to the results page by passing a search
1812         // query via the URL.  Copy all URL params to the iframe url.
1813         if ($location.path().match(/catalog\/results/)) {
1814             url = url.replace(/advanced/, '/results?');
1815             var first = true;
1816             angular.forEach($location.search(), function(val, key) {
1817                 if (!first) url += '&';
1818                 first = false;
1819                 url += encodeURIComponent(key) 
1820                     + '=' + encodeURIComponent(val);
1821             });
1822         }
1823
1824         // if we're displaying the advanced search form, select
1825         // whatever default pane the user has chosen via workstation
1826         // preference
1827         if (url.match(/\/opac\/advanced$/)) {
1828             var adv_pane = egCore.hatch.getLocalItem('eg.search.adv_pane');
1829             if (adv_pane) {
1830                 url += '?pane=' + encodeURIComponent(adv_pane);
1831             }
1832         }
1833
1834         $scope.catalog_url = url;
1835     }
1836
1837     function init_parts_url() {
1838         $scope.parts_url = $location
1839             .absUrl()
1840             .replace(
1841                 /\/staff.*/,
1842                 '/conify/global/biblio/monograph_part?r='+$scope.record_id
1843             );
1844     }
1845
1846     $scope.set_record_tab = function(tab) {
1847         $scope.record_tab = tab;
1848
1849         switch(tab) {
1850
1851             case 'monoparts':
1852                 init_parts_url();
1853                 break;
1854
1855             case 'catalog':
1856                 init_cat_url();
1857                 break;
1858
1859             case 'holds':
1860                 $scope.detail_hold_record_id = $scope.record_id; 
1861                 // refresh the holds grid
1862                 provider.refresh();
1863
1864                 break;
1865         }
1866     }
1867
1868     $scope.set_default_record_tab = function() {
1869         egCore.hatch.setLocalItem(
1870             'eg.cat.default_record_tab', $scope.record_tab);
1871         $timeout(function(){$scope.default_tab = $scope.record_tab});
1872     }
1873
1874     var tab;
1875     if ($scope.record_id) {
1876         $scope.default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
1877         tab = $routeParams.record_tab || $scope.default_tab || 'catalog';
1878
1879     } else {
1880         tab = $routeParams.record_tab || 'catalog';
1881     }
1882     $scope.set_record_tab(tab);
1883
1884 }])
1885
1886 .controller('AuthorityCtrl',
1887        ['$scope','$routeParams','$location','$window','$q','egCore',
1888 function($scope , $routeParams , $location , $window , $q , egCore) {
1889
1890     // set record ID on page load if available...
1891     $scope.authority_id = $routeParams.authority_id;
1892
1893     if ($routeParams.authority_id) $scope.from_route = true;
1894     else $scope.from_route = false;
1895
1896     $scope.stop_unload = false;
1897 }])
1898
1899 .controller('URLVerifyCtrl',
1900        ['$scope','$location',
1901 function($scope , $location) {
1902     $scope.verifyurls_url = $location.absUrl().replace(/\/staff.*/, '/url_verify/sessions');
1903 }])
1904
1905 .controller('VandelayCtrl',
1906        ['$scope','$location', 'egCore', '$uibModal',
1907 function($scope , $location, egCore, $uibModal) {
1908     $scope.vandelay_url = $location.absUrl().replace(/\/staff\/cat\/catalog\/vandelay/, '/vandelay/vandelay');
1909     $scope.funcs = {};
1910     $scope.funcs.edit_marc_modal = function(bre, callback){
1911         var marcArgs = { 'marc_xml': bre.marc() };
1912         var vqbibrecId = bre.id();
1913         $uibModal.open({
1914             templateUrl: './cat/catalog/t_edit_marc_modal',
1915             backdrop: 'static',
1916             size: 'lg',
1917             controller: ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
1918                 $scope.focusMe = true;
1919                 $scope.recordId = vqbibrecId;
1920                 $scope.args = marcArgs;
1921                 $scope.dirty_flag = false;
1922                 $scope.ok = function(marg){
1923                     $uibModalInstance.close(marg);
1924                 };
1925                 $scope.cancel = function(){ $uibModalInstance.dismiss() }
1926             }]
1927         }).result.then(function(res){
1928             var new_xml = res.marc_xml;
1929             egCore.pcrud.retrieve('vqbr', vqbibrecId).then(function(vqbib){
1930                 vqbib.marc(new_xml);
1931                 egCore.pcrud.update(vqbib).then( function(){ callback(vqbibrecId); });
1932             });
1933         });
1934     };
1935 }])
1936
1937 .controller('ManageAuthoritiesCtrl',
1938        ['$scope','$location',
1939 function($scope , $location) {
1940     $scope.manageauthorities_url = $location.absUrl().replace(/\/staff.*/, '/cat/authority/list');
1941 }])
1942
1943 .controller('BatchEditCtrl',
1944        ['$scope','$location','$routeParams',
1945 function($scope , $location , $routeParams) {
1946     $scope.batchedit_url = $location.absUrl().replace(/\/eg.*/, '/opac/extras/merge_template');
1947     if ($routeParams.container_type) {
1948         switch ($routeParams.container_type) {
1949             case 'bucket':
1950                 $scope.batchedit_url += '?recordSource=b&containerid=' + $routeParams.container_id;
1951                 break;
1952             case 'record':
1953                 $scope.batchedit_url += '?recordSource=r&recid=' + $routeParams.container_id;
1954                 break;
1955         };
1956     }
1957 }])
1958
1959  
1960 .filter('boolText', function(){
1961     return function (v) {
1962         return v == 't';
1963     }
1964 })
1965
1966 .factory('conjoinedSvc', 
1967        ['egCore','$q',
1968 function(egCore , $q) {
1969
1970     var service = {
1971         items : [], // record search results
1972         index : 0, // search grid index
1973         rid : null
1974     };
1975
1976     service.flesh = {   
1977         flesh : 4, 
1978         flesh_fields : {
1979             bpbcm : ['target_copy','peer_type'],
1980             acp : ['call_number'],
1981             acn : ['record'],
1982             bre : ['simple_record']
1983         },
1984         // avoid fetching the MARC blob by specifying which
1985         // fields on the bre to select.  More may be needed.
1986         // note that fleshed fields are explicitly selected.
1987         select : { bre : ['id'] },
1988         order_by : { bpbcm : ['id'] },
1989     }
1990
1991     // resolved with the last received copy
1992     service.fetch = function(rid) {
1993         if (!rid && !service.rid) return $q.when();
1994
1995         if (rid) service.rid = rid;
1996         service.items = [];
1997         service.index = 0;
1998
1999         return egCore.pcrud.search(
2000             'bpbcm',
2001             {peer_record : service.rid},
2002             service.flesh,
2003             {atomic : true}
2004         ).then( function(list) { // finished
2005             service.items = list;
2006             return service.items;
2007         });
2008     }
2009
2010     // returns a promise resolved with the list of peer bib types
2011     service.get_peer_types = function() {
2012         if (egCore.env.bpt)
2013             return $q.when(egCore.env.bpt.list);
2014
2015         return egCore.pcrud.retrieveAll('bpt', null, {atomic : true})
2016         .then(function(list) {
2017             egCore.env.absorbList(list, 'bpt');
2018             return list;
2019         });
2020     };
2021
2022     return service;
2023 }])
2024
2025