]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/catalog/app.js
webstaff: implement some workstation preferences
[working/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'])
11
12 .config(['ngToastProvider', function(ngToastProvider) {
13   ngToastProvider.configure({
14     verticalPosition: 'bottom',
15     animation: 'fade'
16   });
17 }])
18
19 .config(function($routeProvider, $locationProvider, $compileProvider) {
20     $locationProvider.html5Mode(true);
21     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
22
23     var resolver = {delay : ['egCore','egStartup','egUser', function(egCore, egStartup, egUser) {
24         egCore.env.classLoaders.aous = function() {
25             return egCore.org.settings([
26                 'cat.marc_control_number_identifier'
27             ]).then(function(settings) {
28                 // local settings are cached within egOrg.  Caching them
29                 // again in egEnv just simplifies the syntax for access.
30                 egCore.env.aous = settings;
31             });
32         }
33         egCore.env.loadClasses.push('aous');
34         return egStartup.go()
35     }]};
36
37     $routeProvider.when('/cat/catalog/index', {
38         templateUrl: './cat/catalog/t_catalog',
39         controller: 'CatalogCtrl',
40         resolve : resolver
41     });
42
43     // Jump directly to the results page.  Any URL parameter 
44     // supported by the embedded catalog is supported here.
45     $routeProvider.when('/cat/catalog/results', {
46         templateUrl: './cat/catalog/t_catalog',
47         controller: 'CatalogCtrl',
48         resolve : resolver
49     });
50
51     $routeProvider.when('/cat/catalog/retrieve_by_id', {
52         templateUrl: './cat/catalog/t_retrieve_by_id',
53         controller: 'CatalogRecordRetrieve',
54         resolve : resolver
55     });
56
57     $routeProvider.when('/cat/catalog/retrieve_by_tcn', {
58         templateUrl: './cat/catalog/t_retrieve_by_tcn',
59         controller: 'CatalogRecordRetrieve',
60         resolve : resolver
61     });
62
63     $routeProvider.when('/cat/catalog/new_bib', {
64         templateUrl: './cat/catalog/t_new_bib',
65         controller: 'NewBibCtrl',
66         resolve : resolver
67     });
68
69     // create some catalog page-specific mappings
70     $routeProvider.when('/cat/catalog/record/:record_id', {
71         templateUrl: './cat/catalog/t_catalog',
72         controller: 'CatalogCtrl',
73         resolve : resolver
74     });
75
76     // create some catalog page-specific mappings
77     $routeProvider.when('/cat/catalog/record/:record_id/:record_tab', {
78         templateUrl: './cat/catalog/t_catalog',
79         controller: 'CatalogCtrl',
80         resolve : resolver
81     });
82
83     $routeProvider.when('/cat/catalog/batchEdit', {
84         templateUrl: './cat/catalog/t_batchedit',
85         controller: 'BatchEditCtrl',
86         resolve : resolver
87     });
88
89     $routeProvider.when('/cat/catalog/batchEdit/:container_type/:container_id', {
90         templateUrl: './cat/catalog/t_batchedit',
91         controller: 'BatchEditCtrl',
92         resolve : resolver
93     });
94
95     $routeProvider.when('/cat/catalog/vandelay', {
96         templateUrl: './cat/catalog/t_vandelay',
97         controller: 'VandelayCtrl',
98         resolve : resolver
99     });
100
101     $routeProvider.when('/cat/catalog/verifyURLs', {
102         templateUrl: './cat/catalog/t_verifyurls',
103         controller: 'URLVerifyCtrl',
104         resolve : resolver
105     });
106
107     $routeProvider.when('/cat/catalog/manageAuthorities', {
108         templateUrl: './cat/catalog/t_manageauthorities',
109         controller: 'ManageAuthoritiesCtrl',
110         resolve : resolver
111     });
112
113     $routeProvider.when('/cat/catalog/authority/:authority_id/marc_edit', {
114         templateUrl: './cat/catalog/t_authority',
115         controller: 'AuthorityCtrl',
116         resolve : resolver
117     });
118
119     $routeProvider.otherwise({redirectTo : '/cat/catalog/index'});
120 })
121
122
123 /**
124  * */
125 .controller('CatalogRecordRetrieve',
126        ['$scope','$routeParams','$location','$q','egCore',
127 function($scope , $routeParams , $location , $q , egCore ) {
128
129     $scope.focusMe = true;
130
131     // jump to the patron checkout UI
132     function loadRecord(record_id) {
133         $location
134         .path('/cat/catalog/record/' + record_id);
135     }
136
137     $scope.submitId = function(args) {
138         $scope.recordNotFound = null;
139         if (!args.record_id) return;
140
141         // blur so next time it's set to true it will re-apply select()
142         $scope.selectMe = false;
143
144         return loadRecord(args.record_id);
145     }
146
147     $scope.submitTCN = function(args) {
148         $scope.recordNotFound = null;
149         $scope.moreRecordsFound = null;
150         if (!args.record_tcn) return;
151
152         // blur so next time it's set to true it will re-apply select()
153         $scope.selectMe = false;
154
155         // lookup TCN
156         egCore.net.request(
157             'open-ils.search',
158             'open-ils.search.biblio.tcn',
159             args.record_tcn)
160
161         .then(function(resp) { // get_barcodes
162
163             if (evt = egCore.evt.parse(resp)) {
164                 alert(evt); // FIXME
165                 return;
166             }
167
168             if (!resp.count) {
169                 $scope.recordNotFound = args.record_tcn;
170                 $scope.selectMe = true;
171                 return;
172             }
173
174             if (resp.count > 1) {
175                 $scope.moreRecordsFound = args.record_tcn;
176                 $scope.selectMe = true;
177                 return;
178             }
179
180             var record_id = resp.ids[0];
181             return loadRecord(record_id);
182         });
183     }
184
185 }])
186
187 .controller('NewBibCtrl',
188        ['$scope','$routeParams','$location','$window','$q','egCore',
189         'egGridDataProvider','egHoldGridActions','$timeout','holdingsSvc',
190 function($scope , $routeParams , $location , $window , $q , egCore) {
191
192     $scope.have_template = false;
193     $scope.marc_template = '';
194     $scope.stop_unload = false;
195     $scope.template_list = [];
196     $scope.template_name = '';
197     $scope.new_bib_id = 0;
198
199     egCore.net.request(
200         'open-ils.cat',
201         'open-ils.cat.marc_template.types.retrieve'
202     ).then(function(resp) {
203         angular.forEach(resp, function(name) {
204             $scope.template_list.push(name);
205         });
206         $scope.template_list.sort();
207     });
208     $scope.template_name = egCore.hatch.getSessionItem('eg.cat.last_bib_marc_template');
209     if (!$scope.template_name) {
210         egCore.hatch.getItem('cat.default_bib_marc_template').then(function(template) {
211             $scope.template_name = template;
212         });
213     }
214
215     $scope.loadTemplate = function() {
216         if ($scope.template_name) {
217             egCore.net.request(
218                 'open-ils.cat',
219                 'open-ils.cat.biblio.marc_template.retrieve',
220                 $scope.template_name
221             ).then(function(template) {
222                 $scope.marc_template = template;
223                 $scope.have_template = true;
224                 egCore.hatch.setSessionItem('eg.cat.last_bib_marc_template', $scope.template_name);
225             });
226         }
227     }
228
229     $scope.setDefaultTemplate = function() {
230         var hatch_key = "cat.default_bib_marc_template";
231         if ($scope.template_name) {
232             egCore.hatch.setItem(hatch_key, $scope.template_name);
233         } else {
234             egCore.hatch.removeItem(hatch_key);
235         }
236     }
237
238     $scope.$watch('new_bib_id', function(newVal, oldVal) {
239         if (newVal) {
240             $location.path('/cat/catalog/record/' + $scope.new_bib_id);
241         }
242     });
243     
244
245 }])
246
247 .controller('CatalogCtrl',
248        ['$scope','$routeParams','$location','$window','$q','egCore','egHolds','egCirc','egConfirmDialog','ngToast',
249         'egGridDataProvider','egHoldGridActions','$timeout','$uibModal','holdingsSvc','egUser','conjoinedSvc',
250         '$cookies',
251 function($scope , $routeParams , $location , $window , $q , egCore , egHolds , egCirc , egConfirmDialog , ngToast ,
252          egGridDataProvider , egHoldGridActions , $timeout , $uibModal , holdingsSvc , egUser , conjoinedSvc,
253          $cookies
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 ($routeParams.record_id) $scope.from_route = true;
263     else $scope.from_route = false;
264
265     // set search and preferred library cookies
266     egCore.hatch.getItem('eg.search.search_lib').then(function(val) {
267         $cookies.put('eg_search_lib', val, { path : '/' });
268     });
269     egCore.hatch.getItem('eg.search.pref_lib').then(function(val) {
270         $cookies.put('eg_pref_lib', val, { path : '/' });
271     });
272
273     // will hold a ref to the opac iframe
274     $scope.opac_iframe = null;
275     $scope.parts_iframe = null;
276
277     $scope.search_result_index = 1;
278     $scope.search_result_hit_count = 1;
279
280     $scope.$watch(
281         'opac_iframe.dom.contentWindow.search_result_index',
282         function (n,o) {
283             if (!isNaN(parseInt(n)))
284                 $scope.search_result_index = n + 1;
285         }
286     );
287
288     $scope.$watch(
289         'opac_iframe.dom.contentWindow.search_result_hit_count',
290         function (n,o) {
291             if (!isNaN(parseInt(n)))
292                 $scope.search_result_hit_count = n;
293         }
294     );
295
296     $scope.in_opac_call = false;
297     $scope.opac_call = function (opac_frame_function, force_opac_tab) {
298         if ($scope.opac_iframe) {
299             if (force_opac_tab) $scope.record_tab = 'catalog';
300             $scope.in_opac_call = true;
301             $scope.opac_iframe.dom.contentWindow[opac_frame_function]();
302             if (opac_frame_function == 'rdetailBackToResults') {
303                 $location.update_path('/cat/catalog/index');
304             }
305         }
306     }
307
308     $scope.add_to_record_bucket = function() {
309         var recId = $scope.record_id;
310         return $uibModal.open({
311             templateUrl: './cat/catalog/t_add_to_bucket',
312             animation: true,
313             size: 'md',
314             controller:
315                    ['$scope','$uibModalInstance',
316             function($scope , $uibModalInstance) {
317
318                 $scope.bucket_id = 0;
319                 $scope.newBucketName = '';
320                 $scope.allBuckets = [];
321                 egCore.net.request(
322                     'open-ils.actor',
323                     'open-ils.actor.container.retrieve_by_class.authoritative',
324                     egCore.auth.token(), egCore.auth.user().id(),
325                     'biblio', 'staff_client'
326                 ).then(function(buckets) { $scope.allBuckets = buckets; });
327
328                 $scope.add_to_bucket = function() {
329                     var item = new egCore.idl.cbrebi();
330                     item.bucket($scope.bucket_id);
331                     item.target_biblio_record_entry(recId);
332                     egCore.net.request(
333                         'open-ils.actor',
334                         'open-ils.actor.container.item.create',
335                         egCore.auth.token(), 'biblio', item
336                     ).then(function(resp) {
337                         $uibModalInstance.close();
338                     });
339                 }
340
341                 $scope.add_to_new_bucket = function() {
342                     var bucket = new egCore.idl.cbreb();
343                     bucket.owner(egCore.auth.user().id());
344                     bucket.name($scope.newBucketName);
345                     bucket.description('');
346                     bucket.btype('staff_client');
347
348                     egCore.net.request(
349                         'open-ils.actor',
350                         'open-ils.actor.container.create',
351                         egCore.auth.token(), 'biblio', bucket
352                     ).then(function(bucket) {
353                         $scope.bucket_id = bucket;
354                         $scope.add_to_bucket();
355                     });
356                 }
357
358                 $scope.cancel = function() {
359                     $uibModalInstance.dismiss();
360                 }
361             }]
362         });
363     }
364
365     $scope.current_overlay_target     = egCore.hatch.getLocalItem('eg.cat.marked_overlay_record');
366     $scope.current_voltransfer_target = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
367     $scope.current_conjoined_target   = egCore.hatch.getLocalItem('eg.cat.marked_conjoined_record');
368
369     $scope.markConjoined = function () {
370         $scope.current_conjoined_target = $scope.record_id;
371         egCore.hatch.setLocalItem('eg.cat.marked_conjoined_record',$scope.record_id);
372         ngToast.create(egCore.strings.MARK_CONJ_TARGET);
373     };
374
375     $scope.markVolTransfer = function () {
376         ngToast.create(egCore.strings.MARK_VOL_TARGET);
377         $scope.current_voltransfer_target = $scope.record_id;
378         egCore.hatch.setLocalItem('eg.cat.marked_volume_transfer_record',$scope.record_id);
379     };
380
381     $scope.markOverlay = function () {
382         $scope.current_overlay_target = $scope.record_id;
383         egCore.hatch.setLocalItem('eg.cat.marked_overlay_record',$scope.record_id);
384         ngToast.create(egCore.strings.MARK_OVERLAY_TARGET);
385     };
386
387     $scope.clearRecordMarks = function () {
388         $scope.current_overlay_target     = null;
389         $scope.current_voltransfer_target = null;
390         $scope.current_conjoined_target   = null;
391         egCore.hatch.removeLocalItem('eg.cat.marked_volume_transfer_record');
392         egCore.hatch.removeLocalItem('eg.cat.marked_conjoined_record');
393         egCore.hatch.removeLocalItem('eg.cat.marked_overlay_record');
394     }
395
396     $scope.stop_unload = false;
397     $scope.$watch('stop_unload',
398         function(newVal, oldVal) {
399             if (newVal && newVal != oldVal && $scope.opac_iframe) {
400                 $($scope.opac_iframe.dom.contentWindow).on('beforeunload', function(){
401                     return 'There is unsaved data in this record.'
402                 });
403             } else {
404                 if ($scope.opac_iframe)
405                     $($scope.opac_iframe.dom.contentWindow).off('beforeunload');
406             }
407         }
408     );
409
410     // Set the "last bib" cookie, if we have that
411     if ($scope.record_id)
412         egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
413
414     $scope.refresh_record_callback = function (record_id) {
415         egCore.pcrud.retrieve('bre', record_id, {
416             flesh : 1,
417             flesh_fields : {
418                 bre : ['simple_record','creator','editor']
419             }
420         }).then(function(rec) {
421             rec.owner(egCore.org.get(rec.owner()));
422             $scope.summary_pane_record = rec;
423         });
424
425         return record_id;
426     }
427
428     // also set it when the iframe changes to a new record
429     $scope.handle_page = function(url) {
430
431         if (!url || url == 'about:blank') {
432             // nothing loaded.  If we already have a record ID, leave it.
433             return;
434         }
435
436         var match = url.match(/\/+opac\/+record\/+(\d+)/);
437         if (match) {
438             $scope.record_id = match[1];
439             egCore.hatch.setLocalItem("eg.cat.last_record_retrieved", $scope.record_id);
440             $scope.holdings_record_id_changed($scope.record_id);
441             conjoinedSvc.fetch($scope.record_id).then(function(){
442                 $scope.conjoinedGridDataProvider.refresh();
443             });
444             init_parts_url();
445             $location.update_path('/cat/catalog/record/' + $scope.record_id);
446         } else {
447             delete $scope.record_id;
448             $scope.from_route = false;
449         }
450
451         // child scope is executing this function, so our digest doesn't fire ... thus,
452         $scope.$apply();
453
454         if (!$scope.in_opac_call) {
455             if ($scope.record_id) {
456                 $scope.default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
457                 tab = $routeParams.record_tab || $scope.default_tab || 'catalog';
458             } else {
459                 tab = $routeParams.record_tab || 'catalog';
460             }
461             $scope.set_record_tab(tab);
462         } else {
463             $scope.in_opac_call = false;
464         }
465     }
466
467     // xulG catalog handlers
468     $scope.handlers = { }
469
470     // ------------------------------------------------------------------
471     // Conjoined items
472
473     $scope.conjoinedGridControls = {};
474     $scope.conjoinedGridDataProvider = egGridDataProvider.instance({
475         get : function(offset, count) {
476             return this.arrayNotifier(conjoinedSvc.items, offset, count);
477         }
478     });
479
480     $scope.changeConjoinedType = function () {
481         var peers = egCore.idl.Clone($scope.conjoinedGridControls.selectedItems());
482         angular.forEach(peers, function (p) {
483             p.target_copy(p.target_copy().id());
484             p.peer_type(p.peer_type().id());
485         });
486
487         var conjoinedGridDataProviderRef = $scope.conjoinedGridDataProvider;
488
489         return $uibModal.open({
490             templateUrl: './cat/catalog/t_conjoined_selector',
491             animation: true,
492             controller:
493                    ['$scope','$uibModalInstance',
494             function($scope , $uibModalInstance) {
495                 $scope.update = true;
496
497                 $scope.peer_type = null;
498                 $scope.peer_type_list = [];
499                 conjoinedSvc.get_peer_types().then(function(list){
500                     $scope.peer_type_list = list;
501                 });
502     
503                 $scope.ok = function(type) {
504                     var promises = [];
505     
506                     angular.forEach(peers, function (p) {
507                         p.ischanged(1);
508                         p.peer_type(type);
509                         promises.push(egCore.pcrud.update(p));
510                     });
511     
512                     return $q.all(promises)
513                         .then(function(){$uibModalInstance.close()})
514                         .then(function(){return conjoinedSvc.fetch()})
515                         .then(function(){conjoinedGridDataProviderRef.refresh()});
516                 }
517     
518                 $scope.cancel = function($event) {
519                     $uibModalInstance.dismiss();
520                     $event.preventDefault();
521                 }
522             }]
523         });
524         
525     }
526
527     $scope.refreshConjoined = function () {
528         conjoinedSvc.fetch($scope.record_id)
529         .then(function(){$scope.conjoinedGridDataProvider.refresh();});
530     }
531
532     $scope.deleteSelectedConjoined = function () {
533         var peers = $scope.conjoinedGridControls.selectedItems();
534
535         if (peers.length > 0) {
536             egConfirmDialog.open(
537                 egCore.strings.CONFIRM_DELETE_PEERS,
538                 egCore.strings.CONFIRM_DELETE_PEERS_MESSAGE,
539                 {peers : peers.length}
540             ).result.then(function() {
541                 angular.forEach(peers, function (p) {
542                     p.isdeleted(1);
543                 });
544
545                 egCore.pcrud.remove(peers).then(function() {
546                     return conjoinedSvc.fetch();
547                 }).then(function() {
548                     $scope.conjoinedGridDataProvider.refresh();
549                 });
550             });
551         }
552     }
553     if ($scope.record_id)
554         conjoinedSvc.fetch($scope.record_id);
555
556     // ------------------------------------------------------------------
557     // Holdings
558
559     $scope.holdingsGridControls = {
560         activateItem : function (item) {
561             $scope.selectedHoldingsVolCopyEdit();
562         }
563     };
564     $scope.holdingsGridDataProvider = egGridDataProvider.instance({
565         get : function(offset, count) {
566             return this.arrayNotifier(holdingsSvcInst.copies, offset, count);
567         }
568     });
569
570     $scope.add_copies_to_bucket = function() {
571         var copy_list = gatherSelectedHoldingsIds();
572         if (copy_list.length == 0) return;
573
574         return $uibModal.open({
575             templateUrl: './cat/catalog/t_add_to_bucket',
576             animation: true,
577             size: 'md',
578             controller:
579                    ['$scope','$uibModalInstance',
580             function($scope , $uibModalInstance) {
581
582                 $scope.bucket_id = 0;
583                 $scope.newBucketName = '';
584                 $scope.allBuckets = [];
585
586                 egCore.net.request(
587                     'open-ils.actor',
588                     'open-ils.actor.container.retrieve_by_class.authoritative',
589                     egCore.auth.token(), egCore.auth.user().id(),
590                     'copy', 'staff_client'
591                 ).then(function(buckets) { $scope.allBuckets = buckets; });
592
593                 $scope.add_to_bucket = function() {
594                     var promises = [];
595                     angular.forEach(copy_list, function (cp) {
596                         var item = new egCore.idl.ccbi()
597                         item.bucket($scope.bucket_id);
598                         item.target_copy(cp);
599                         promises.push(
600                             egCore.net.request(
601                                 'open-ils.actor',
602                                 'open-ils.actor.container.item.create',
603                                 egCore.auth.token(), 'copy', item
604                             )
605                         );
606
607                         return $q.all(promises).then(function() {
608                             $uibModalInstance.close();
609                         });
610                     });
611                 }
612
613                 $scope.add_to_new_bucket = function() {
614                     var bucket = new egCore.idl.ccb();
615                     bucket.owner(egCore.auth.user().id());
616                     bucket.name($scope.newBucketName);
617                     bucket.description('');
618                     bucket.btype('staff_client');
619
620                     return egCore.net.request(
621                         'open-ils.actor',
622                         'open-ils.actor.container.create',
623                         egCore.auth.token(), 'copy', bucket
624                     ).then(function(bucket) {
625                         $scope.bucket_id = bucket;
626                         $scope.add_to_bucket();
627                     });
628                 }
629
630                 $scope.cancel = function() {
631                     $uibModalInstance.dismiss();
632                 }
633             }]
634         });
635     }
636
637     $scope.requestItems = function() {
638         var copy_list = gatherSelectedHoldingsIds();
639         if (copy_list.length == 0) return;
640
641         return $uibModal.open({
642             templateUrl: './cat/catalog/t_request_items',
643             animation: true,
644             controller:
645                    ['$scope','$uibModalInstance',
646             function($scope , $uibModalInstance) {
647                 $scope.user = null;
648                 $scope.first_user_fetch = true;
649
650                 $scope.hold_data = {
651                     hold_type : 'C',
652                     copy_list : copy_list,
653                     pickup_lib: egCore.org.get(egCore.auth.user().ws_ou()),
654                     user      : egCore.auth.user().id()
655                 };
656
657                 egUser.get( $scope.hold_data.user ).then(function(u) {
658                     $scope.user = u;
659                     $scope.barcode = u.card().barcode();
660                     $scope.user_name = egUser.format_name(u);
661                     $scope.hold_data.user = u.id();
662                 });
663
664                 $scope.user_name = '';
665                 $scope.barcode = '';
666                 $scope.$watch('barcode', function (n) {
667                     if (!$scope.first_user_fetch) {
668                         egUser.getByBarcode(n).then(function(u) {
669                             $scope.user = u;
670                             $scope.user_name = egUser.format_name(u);
671                             $scope.hold_data.user = u.id();
672                         }, function() {
673                             $scope.user = null;
674                             $scope.user_name = '';
675                             delete $scope.hold_data.user;
676                         });
677                     }
678                     $scope.first_user_fetch = false;
679                 });
680
681                 $scope.ok = function(h) {
682                     var args = {
683                         patronid  : h.user,
684                         hold_type : h.hold_type,
685                         pickup_lib: h.pickup_lib.id(),
686                         depth     : 0
687                     };
688
689                     egCore.net.request(
690                         'open-ils.circ',
691                         'open-ils.circ.holds.test_and_create.batch.override',
692                         egCore.auth.token(), args, h.copy_list
693                     );
694
695                     $uibModalInstance.close();
696                 }
697
698                 $scope.cancel = function($event) {
699                     $uibModalInstance.dismiss();
700                     $event.preventDefault();
701                 }
702             }]
703         });
704     }
705
706     $scope.replaceBarcodes = function() {
707         var copy_list = gatherSelectedRawCopies();
708         if (copy_list.length == 0) return;
709
710         var holdingsGridDataProviderRef = $scope.holdingsGridDataProvider;
711
712         angular.forEach(copy_list, function (cp) {
713             $uibModal.open({
714                 templateUrl: './cat/share/t_replace_barcode',
715                 animation: true,
716                 controller:
717                            ['$scope','$uibModalInstance',
718                     function($scope , $uibModalInstance) {
719                         $scope.isModal = true;
720                         $scope.focusBarcode = false;
721                         $scope.focusBarcode2 = true;
722                         $scope.barcode1 = cp.barcode();
723
724                         $scope.updateBarcode = function() {
725                             $scope.copyNotFound = false;
726                             $scope.updateOK = false;
727                 
728                             egCore.pcrud.search('acp',
729                                 {deleted : 'f', barcode : $scope.barcode1})
730                             .then(function(copy) {
731                 
732                                 if (!copy) {
733                                     $scope.focusBarcode = true;
734                                     $scope.copyNotFound = true;
735                                     return;
736                                 }
737                 
738                                 $scope.copyId = copy.id();
739                                 copy.barcode($scope.barcode2);
740                 
741                                 egCore.pcrud.update(copy).then(function(stat) {
742                                     $scope.updateOK = stat;
743                                     $scope.focusBarcode = true;
744                                     holdingsSvc.fetchAgain().then(function (){
745                                         holdingsGridDataProviderRef.refresh();
746                                     });
747                                 });
748
749                             });
750                             $uibModalInstance.close();
751                         }
752
753                         $scope.cancel = function($event) {
754                             $uibModalInstance.dismiss();
755                             $event.preventDefault();
756                         }
757                     }
758                 ]
759             });
760         });
761     }
762
763     // refresh the list of holdings when the record_id is changed.
764     $scope.holdings_record_id_changed = function(id) {
765         if ($scope.record_id != id) $scope.record_id = id;
766         console.log('record id changed to ' + id + ', loading new holdings');
767         holdingsSvcInst.fetch({
768             rid : $scope.record_id,
769             org : $scope.holdings_ou,
770             copy: $scope.holdings_show_copies,
771             vol : $scope.holdings_show_vols,
772             empty: $scope.holdings_show_empty
773         }).then(function() {
774             $scope.holdingsGridDataProvider.refresh();
775         });
776     }
777
778     // refresh the list of holdings when the filter lib is changed.
779     $scope.holdings_ou = egCore.org.get(egCore.auth.user().ws_ou());
780     $scope.holdings_ou_changed = function(org) {
781         $scope.holdings_ou = org;
782         holdingsSvcInst.fetch({
783             rid : $scope.record_id,
784             org : $scope.holdings_ou,
785             copy: $scope.holdings_show_copies,
786             vol : $scope.holdings_show_vols,
787             empty: $scope.holdings_show_empty
788         }).then(function() {
789             $scope.holdingsGridDataProvider.refresh();
790         });
791     }
792
793     $scope.holdings_cb_changed = function(cb,newVal,norefresh) {
794         $scope[cb] = newVal;
795         egCore.hatch.setItem('cat.' + cb, newVal);
796         if (!norefresh) holdingsSvcInst.fetch({
797             rid : $scope.record_id,
798             org : $scope.holdings_ou,
799             copy: $scope.holdings_show_copies,
800             vol : $scope.holdings_show_vols,
801             empty: $scope.holdings_show_empty
802         }).then(function() {
803             $scope.holdingsGridDataProvider.refresh();
804         });
805     }
806
807     egCore.hatch.getItem('cat.holdings_show_vols').then(function(x){
808         if (typeof x ==  'undefined') x = true;
809         $scope.holdings_cb_changed('holdings_show_vols',x,true);
810         $('#holdings_show_vols').prop('checked', x);
811     }).then(function(){
812         egCore.hatch.getItem('cat.holdings_show_copies').then(function(x){
813             if (typeof x ==  'undefined') x = true;
814             $scope.holdings_cb_changed('holdings_show_copies',x,true);
815             $('#holdings_show_copies').prop('checked', x);
816         }).then(function(){
817             egCore.hatch.getItem('cat.holdings_show_empty').then(function(x){
818                 if (typeof x ==  'undefined') x = true;
819                 $scope.holdings_cb_changed('holdings_show_empty',x);
820                 $('#holdings_show_empty').prop('checked', x);
821             })
822         })
823     });
824
825     $scope.vols_not_shown = function () {
826         return !$scope.holdings_show_vols;
827     }
828
829     $scope.copies_not_shown = function () {
830         return !$scope.holdings_show_copies;
831     }
832
833     $scope.holdings_checkbox_handler = function (item) {
834         $scope.holdings_cb_changed(item.checkbox,item.checked);
835     }
836
837     function gatherSelectedHoldingsIds () {
838         var cp_id_list = [];
839         angular.forEach(
840             $scope.holdingsGridControls.selectedItems(),
841             function (item) { cp_id_list = cp_id_list.concat(item.id_list) }
842         );
843         return cp_id_list;
844     }
845
846     function gatherSelectedRawCopies () {
847         var cp_list = [];
848         angular.forEach(
849             $scope.holdingsGridControls.selectedItems(),
850             function (item) { if (item.raw) cp_list = cp_list.concat(item.raw) }
851         );
852         return cp_list;
853     }
854
855     function gatherSelectedEmptyVolumeIds () {
856         var cn_id_list = [];
857         angular.forEach(
858             $scope.holdingsGridControls.selectedItems(),
859             function (item) {
860                 if (item.copy_count == 0)
861                     cn_id_list.push(item.call_number.id)
862             }
863         );
864         return cn_id_list;
865     }
866
867     function gatherSelectedVolumeIds () {
868         var cn_id_list = [];
869         angular.forEach(
870             $scope.holdingsGridControls.selectedItems(),
871             function (item) {
872                 if (cn_id_list.indexOf(item.call_number.id) == -1)
873                     cn_id_list.push(item.call_number.id)
874             }
875         );
876         return cn_id_list;
877     }
878
879     $scope.selectedHoldingsDelete = function (vols, copies) {
880
881         var cnHash = {};
882         var perCnCopies = {};
883
884         var cn_count = 0;
885         var cp_count = 0;
886
887         angular.forEach(
888             $scope.holdingsGridControls.selectedItems(),
889             function (item) {
890                 if (vols && item.raw_call_number) {
891                     cnHash[item.call_number.id] = egCore.idl.Clone(item.raw_call_number);
892                     cnHash[item.call_number.id].isdeleted(1);
893                     cn_count++;
894                 } else if (copies) {
895                     angular.forEach(egCore.idl.Clone(item.raw), function (cp) {
896                         cp.isdeleted(1);
897                         cp_count++;
898                         var cn_id = cp.call_number().id();
899                         if (!cnHash[cn_id]) {
900                             cnHash[cn_id] = cp.call_number();
901                             perCnCopies[cn_id] = [cp];
902                         } else {
903                             perCnCopies[cn_id].push(cp);
904                         }
905                         cp.call_number(cn_id); // prevent loops in JSON-ification
906                     });
907
908                 }
909             }
910         );
911
912         angular.forEach(perCnCopies, function (v, k) {
913             if (vols) {
914                 cnHash[k].isdeleted(1);
915                 cn_count++;
916             }
917             cnHash[k].copies(v);
918         });
919
920         cnList = [];
921         angular.forEach(cnHash, function (v, k) {
922             cnList.push(v);
923         });
924
925         if (cnList.length == 0) return;
926
927         var flags = {};
928         if (vols && copies) flags.force_delete_copies = 1;
929
930         egConfirmDialog.open(
931             egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES,
932             egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES_MESSAGE,
933             {copies : cp_count, volumes : cn_count}
934         ).result.then(function() {
935             egCore.net.request(
936                 'open-ils.cat',
937                 'open-ils.cat.asset.volume.fleshed.batch.update.override',
938                 egCore.auth.token(), cnList, 1, flags
939             ).then(function(update_count) {
940                 holdingsSvcInst.fetchAgain().then(function() {
941                     $scope.holdingsGridDataProvider.refresh();
942                 });
943             });
944         });
945     }
946     $scope.selectedHoldingsCopyDelete = function () { $scope.selectedHoldingsDelete(false,true) }
947     $scope.selectedHoldingsVolCopyDelete = function () { $scope.selectedHoldingsDelete(true,true) }
948     $scope.selectedHoldingsEmptyVolCopyDelete = function () { $scope.selectedHoldingsDelete(true,false) }
949
950     spawnHoldingsAdd = function (vols,copies){
951         var raw = [];
952         if (copies) { // just a copy on existing volumes
953             angular.forEach(gatherSelectedVolumeIds(), function (v) {
954                 raw.push( {callnumber : v} );
955             });
956         } else if (vols) {
957             angular.forEach(
958                 $scope.holdingsGridControls.selectedItems(),
959                 function (item) {
960                     raw.push({owner : item.owner_id});
961                 }
962             );
963         }
964
965         if (raw.length == 0) raw.push({});
966
967         egCore.net.request(
968             'open-ils.actor',
969             'open-ils.actor.anon_cache.set_value',
970             null, 'edit-these-copies', {
971                 record_id: $scope.record_id,
972                 raw: raw,
973                 hide_vols : false,
974                 hide_copies : false
975             }
976         ).then(function(key) {
977             if (key) {
978                 var url = egCore.env.basePath + 'cat/volcopy/' + key;
979                 $timeout(function() { $window.open(url, '_blank') });
980             } else {
981                 alert('Could not create anonymous cache key!');
982             }
983         });
984     }
985     $scope.selectedHoldingsVolCopyAdd = function () { spawnHoldingsAdd(true,false) }
986     $scope.selectedHoldingsCopyAdd = function () { spawnHoldingsAdd(false,true) }
987
988     spawnHoldingsEdit = function (hide_vols,hide_copies){
989         egCore.net.request(
990             'open-ils.actor',
991             'open-ils.actor.anon_cache.set_value',
992             null, 'edit-these-copies', {
993                 record_id: $scope.record_id,
994                 copies: gatherSelectedHoldingsIds(),
995                 raw: gatherSelectedEmptyVolumeIds().map(
996                     function(v){ return { callnumber : v } }
997                 ),
998                 hide_vols : hide_vols,
999                 hide_copies : hide_copies
1000             }
1001         ).then(function(key) {
1002             if (key) {
1003                 var url = egCore.env.basePath + 'cat/volcopy/' + key;
1004                 $timeout(function() { $window.open(url, '_blank') });
1005             } else {
1006                 alert('Could not create anonymous cache key!');
1007             }
1008         });
1009     }
1010     $scope.selectedHoldingsVolCopyEdit = function () { spawnHoldingsEdit(false,false) }
1011     $scope.selectedHoldingsVolEdit = function () { spawnHoldingsEdit(false,true) }
1012     $scope.selectedHoldingsCopyEdit = function () { spawnHoldingsEdit(true,false) }
1013
1014     $scope.selectedHoldingsItemStatus = function (){
1015         var url = egCore.env.basePath + 'cat/item/search/' + gatherSelectedHoldingsIds().join(',')
1016         $timeout(function() { $window.open(url, '_blank') });
1017     }
1018
1019     $scope.markVolAsItemTarget = function() {
1020         if ($scope.holdingsGridControls.selectedItems()[0].call_number.id) { // cn.id missing when vols are collapsed
1021             egCore.hatch.setLocalItem(
1022                 'eg.cat.item_transfer_target',
1023                 $scope.holdingsGridControls.selectedItems()[0].call_number.id
1024             );
1025             ngToast.create(egCore.strings.MARK_ITEM_TARGET);
1026         }
1027     }
1028
1029     $scope.markLibAsVolTarget = function() {
1030         return $uibModal.open({
1031             templateUrl: './cat/catalog/t_choose_vol_target_lib',
1032             animation: true,
1033             controller:
1034                    ['$scope','$uibModalInstance',
1035             function($scope , $uibModalInstance) {
1036
1037                 var orgId = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target') || 1;
1038                 $scope.org = egCore.org.get(orgId);
1039                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
1040                 $scope.ok = function(org) {
1041                     egCore.hatch.setLocalItem(
1042                         'eg.cat.volume_transfer_target',
1043                         org.id()
1044                     );
1045                     $uibModalInstance.close();
1046                 }
1047                 $scope.cancel = function($event) {
1048                     $uibModalInstance.dismiss();
1049                     $event.preventDefault();
1050                 }
1051             }]
1052         });
1053     }
1054     $scope.markLibFromSelectedAsVolTarget = function() {
1055         egCore.hatch.setLocalItem(
1056             'eg.cat.volume_transfer_target',
1057             $scope.holdingsGridControls.selectedItems()[0].owner_id
1058         );
1059         ngToast.create(egCore.strings.MARK_VOL_TARGET);
1060     }
1061
1062     $scope.selectedHoldingsItemStatusDetail = function (){
1063         angular.forEach(
1064             gatherSelectedHoldingsIds(),
1065             function (cid) {
1066                 var url = egCore.env.basePath +
1067                           'cat/item/' + cid;
1068                 $timeout(function() { $window.open(url, '_blank') });
1069             }
1070         );
1071     }
1072
1073     $scope.transferVolumesToRecord = function (){
1074         var target_record = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
1075         if (!target_record) return;
1076         if ($scope.record_id == target_record) return;
1077         var items = $scope.holdingsGridControls.selectedItems();
1078         if (!items.length) return;
1079
1080         var vols_to_move   = {};
1081         angular.forEach(items, function(item) {
1082             if (!(item.call_number.owning_lib in vols_to_move)) {
1083                 vols_to_move[item.call_number.owning_lib] = new Array;
1084             }
1085             vols_to_move[item.call_number.owning_lib].push(item.call_number.id);
1086         });
1087
1088         var promises = [];        
1089         angular.forEach(vols_to_move, function(vols, owning_lib) {
1090             promises.push(egCore.net.request(
1091                 'open-ils.cat',
1092                 'open-ils.cat.asset.volume.batch.transfer.override',
1093                 egCore.auth.token(), {
1094                     docid   : target_record,
1095                     lib     : owning_lib,
1096                     volumes : vols
1097                 }
1098             ));
1099         });
1100         $q.all(promises).then(function(success) {
1101             if (success) {
1102                 ngToast.create(egCore.strings.VOLS_TRANSFERED);
1103                 holdingsSvcInst.fetchAgain().then(function() {
1104                     $scope.holdingsGridDataProvider.refresh();
1105                 });
1106             } else {
1107                 alert('Could not transfer volumes!');
1108             }
1109         });
1110     }
1111
1112     function transferVolumes(new_record){
1113         var xfer_target = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target');
1114
1115         if (xfer_target) {
1116             egCore.net.request(
1117                 'open-ils.cat',
1118                 'open-ils.cat.asset.volume.batch.transfer.override',
1119                 egCore.auth.token(), {
1120                     docid   : (new_record ? new_record : $scope.record_id),
1121                     lib     : xfer_target,
1122                     volumes : gatherSelectedVolumeIds()
1123                 }
1124             ).then(function(success) {
1125                 if (success) {
1126                     ngToast.create(egCore.strings.VOLS_TRANSFERED);
1127                     holdingsSvcInst.fetchAgain().then(function() {
1128                         $scope.holdingsGridDataProvider.refresh();
1129                     });
1130                 } else {
1131                     alert('Could not transfer volumes!');
1132                 }
1133             });
1134         }
1135         
1136     }
1137
1138     $scope.transferVolumesToLibrary = function() {
1139         transferVolumes();
1140     }
1141
1142     $scope.transferVolumesToRecordAndLibrary = function() {
1143         var target_record = egCore.hatch.getLocalItem('eg.cat.marked_volume_transfer_record');
1144         if (!target_record) return;
1145         transferVolumes(target_record);
1146     }
1147
1148     // this "transfers" selected copies to a new owning library,
1149     // auto-creating volumes and deleting unused volumes as required.
1150     $scope.changeItemOwningLib = function() {
1151         var xfer_target = egCore.hatch.getLocalItem('eg.cat.volume_transfer_target');
1152         var items = $scope.holdingsGridControls.selectedItems();
1153         if (!xfer_target || !items.length) {
1154             return;
1155         }
1156         var vols_to_move   = {};
1157         var copies_to_move = {};
1158         angular.forEach(items, function(item) {
1159             if (item.call_number.owning_lib != xfer_target) {
1160                 if (item.call_number.id in vols_to_move) {
1161                     copies_to_move[item.call_number.id].push(item.id);
1162                 } else {
1163                     vols_to_move[item.call_number.id] = item.call_number;
1164                     copies_to_move[item.call_number.id] = new Array;
1165                     copies_to_move[item.call_number.id].push(item.id);
1166                 }
1167             }
1168         });
1169     
1170         var promises = [];
1171         angular.forEach(vols_to_move, function(vol) {
1172             promises.push(egCore.net.request(
1173                 'open-ils.cat',
1174                 'open-ils.cat.call_number.find_or_create',
1175                 egCore.auth.token(),
1176                 vol.label,
1177                 vol.record,
1178                 xfer_target,
1179                 vol.prefix.id,
1180                 vol.suffix.id,
1181                 vol.label_class
1182             ).then(function(resp) {
1183                 var evt = egCore.evt.parse(resp);
1184                 if (evt) return;
1185                 return egCore.net.request(
1186                     'open-ils.cat',
1187                     'open-ils.cat.transfer_copies_to_volume',
1188                     egCore.auth.token(),
1189                     resp.acn_id,
1190                     copies_to_move[vol.id]
1191                 );
1192             }));
1193         });
1194         $q.all(promises).then(function() {
1195             ngToast.create(egCore.strings.ITEMS_TRANSFERED);
1196             holdingsSvcInst.fetchAgain().then(function() {
1197                 $scope.holdingsGridDataProvider.refresh();
1198             });
1199         });
1200     }
1201
1202     $scope.transferItems = function (){
1203         var xfer_target = egCore.hatch.getLocalItem('eg.cat.item_transfer_target');
1204         var copy_ids = gatherSelectedHoldingsIds();
1205         if (xfer_target && copy_ids.length > 0) {
1206             egCore.net.request(
1207                 'open-ils.cat',
1208                 'open-ils.cat.transfer_copies_to_volume',
1209                 egCore.auth.token(),
1210                 xfer_target,
1211                 copy_ids
1212             ).then(
1213                 function(resp) { // oncomplete
1214                     var evt = egCore.evt.parse(resp);
1215                     if (evt) {
1216                         egConfirmDialog.open(
1217                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_TITLE,
1218                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_BODY,
1219                             {'evt_desc': evt.desc}
1220                         ).result.then(function() {
1221                             egCore.net.request(
1222                                 'open-ils.cat',
1223                                 'open-ils.cat.transfer_copies_to_volume.override',
1224                                 egCore.auth.token(),
1225                                 xfer_target,
1226                                 copy_ids,
1227                                 { events: ['TITLE_LAST_COPY', 'COPY_DELETE_WARNING'] }
1228                             ).then(function(resp) {
1229                                 holdingsSvcInst.fetchAgain().then(function() {
1230                                     $scope.holdingsGridDataProvider.refresh();
1231                                 });
1232                             });
1233                         });
1234                     } else {
1235                         ngToast.create(egCore.strings.ITEMS_TRANSFERED);
1236                         holdingsSvcInst.fetchAgain().then(function() {
1237                             $scope.holdingsGridDataProvider.refresh();
1238                         });
1239                     }
1240                 },
1241                 null, // onerror
1242                 null // onprogress
1243             )
1244         }
1245     }
1246
1247     $scope.selectedHoldingsItemStatusTgrEvt = function (){
1248         angular.forEach(
1249             gatherSelectedHoldingsIds(),
1250             function (cid) {
1251                 var url = egCore.env.basePath +
1252                           'cat/item/' + cid + '/triggered_events';
1253                 $timeout(function() { $window.open(url, '_blank') });
1254             }
1255         );
1256     }
1257
1258     $scope.selectedHoldingsItemStatusHolds = function (){
1259         angular.forEach(
1260             gatherSelectedHoldingsIds(),
1261             function (cid) {
1262                 var url = egCore.env.basePath +
1263                           'cat/item/' + cid + '/holds';
1264                 $timeout(function() { $window.open(url, '_blank') });
1265             }
1266         );
1267     }
1268
1269     $scope.selectedHoldingsDamaged = function () {
1270         egCirc.mark_damaged(gatherSelectedHoldingsIds()).then(function() {
1271             holdingsSvcInst.fetchAgain().then(function() {
1272                 $scope.holdingsGridDataProvider.refresh();
1273             });
1274         });
1275     }
1276
1277     $scope.selectedHoldingsMissing = function () {
1278         egCirc.mark_missing(gatherSelectedHoldingsIds()).then(function() {
1279             holdingsSvcInst.fetchAgain().then(function() {
1280                 $scope.holdingsGridDataProvider.refresh();
1281             });
1282         });
1283     }
1284
1285     $scope.attach_to_peer_bib = function() {
1286         var copy_list = gatherSelectedHoldingsIds();
1287         if (copy_list.length == 0) return;
1288
1289         egCore.hatch.getItem('eg.cat.marked_conjoined_record').then(function(target_record) {
1290             if (!target_record) return;
1291
1292             return $uibModal.open({
1293                 templateUrl: './cat/catalog/t_conjoined_selector',
1294                 animation: true,
1295                 controller:
1296                        ['$scope','$uibModalInstance',
1297                 function($scope , $uibModalInstance) {
1298                     $scope.update = false;
1299
1300                     $scope.peer_type = null;
1301                     $scope.peer_type_list = [];
1302                     conjoinedSvc.get_peer_types().then(function(list){
1303                         $scope.peer_type_list = list;
1304                     });
1305     
1306                     $scope.ok = function(type) {
1307                         var promises = [];
1308     
1309                         angular.forEach(copy_list, function (cp) {
1310                             var n = new egCore.idl.bpbcm();
1311                             n.isnew(true);
1312                             n.peer_record(target_record);
1313                             n.target_copy(cp);
1314                             n.peer_type(type);
1315                             promises.push(egCore.pcrud.create(n));
1316                         });
1317     
1318                         return $q.all(promises).then(function(){$uibModalInstance.close()});
1319                     }
1320     
1321                     $scope.cancel = function($event) {
1322                         $uibModalInstance.dismiss();
1323                         $event.preventDefault();
1324                     }
1325                 }]
1326             });
1327         });
1328     }
1329
1330
1331     // ------------------------------------------------------------------
1332     // Holds 
1333     var provider = egGridDataProvider.instance({});
1334     $scope.hold_grid_data_provider = provider;
1335     $scope.grid_actions = egHoldGridActions;
1336     $scope.grid_actions.refresh = function () { provider.refresh() };
1337     $scope.hold_grid_controls = {};
1338
1339     var hold_ids = []; // current list of holds
1340     function fetchHolds(offset, count) {
1341         var ids = hold_ids.slice(offset, offset + count);
1342         return egHolds.fetch_holds(ids).then(null, null,
1343             function(hold_data) { 
1344                 return hold_data;
1345             }
1346         );
1347     }
1348
1349     provider.get = function(offset, count) {
1350         if ($scope.record_tab != 'holds') return $q.when();
1351         var deferred = $q.defer();
1352         hold_ids = []; // no caching ATM
1353
1354         // fetch the IDs
1355         egCore.net.request(
1356             'open-ils.circ',
1357             'open-ils.circ.holds.retrieve_all_from_title',
1358             egCore.auth.token(), $scope.record_id, 
1359             {pickup_lib : egCore.org.descendants($scope.pickup_ou.id(), true)}
1360         ).then(
1361             function(hold_data) {
1362                 angular.forEach(hold_data, function(list, type) {
1363                     hold_ids = hold_ids.concat(list);
1364                 });
1365                 fetchHolds(offset, count).then(
1366                     deferred.resolve, null, deferred.notify);
1367             }
1368         );
1369
1370         return deferred.promise;
1371     }
1372
1373     $scope.detail_view = function(action, user_data, items) {
1374         if (h = items[0]) {
1375             $scope.detail_hold_id = h.hold.id();
1376         }
1377     }
1378
1379     $scope.list_view = function(items) {
1380          $scope.detail_hold_id = null;
1381     }
1382
1383     // refresh the list of record holds when the pickup lib is changed.
1384     $scope.pickup_ou = egCore.org.get(egCore.auth.user().ws_ou());
1385     $scope.pickup_ou_changed = function(org) {
1386         $scope.pickup_ou = org;
1387         provider.refresh();
1388     }
1389
1390     $scope.print_holds = function() {
1391         var holds = [];
1392         angular.forEach($scope.hold_grid_controls.allItems(), function(item) {
1393             holds.push({
1394                 hold : egCore.idl.toHash(item.hold),
1395                 patron_last : item.patron_last,
1396                 patron_alias : item.patron_alias,
1397                 patron_barcode : item.patron_barcode,
1398                 copy : egCore.idl.toHash(item.copy),
1399                 volume : egCore.idl.toHash(item.volume),
1400                 title : item.mvr.title(),
1401                 author : item.mvr.author()
1402             });
1403         });
1404
1405         egCore.print.print({
1406             context : 'receipt', 
1407             template : 'holds_for_bib', 
1408             scope : {holds : holds}
1409         });
1410     }
1411
1412     $scope.mark_hold_transfer_dest = function() {
1413         egCore.hatch.setLocalItem(
1414             'eg.circ.hold.title_transfer_target', $scope.record_id);
1415         ngToast.create(egCore.strings.HOLD_TRANSFER_DEST_MARKED);
1416     }
1417
1418     // UI presents this option as "all holds"
1419     $scope.transfer_holds_to_marked = function() {
1420         var hold_ids = $scope.hold_grid_controls.allItems().map(
1421             function(hold_data) {return hold_data.hold.id()});
1422         egHolds.transfer_to_marked_title(hold_ids);
1423     }
1424
1425     // ------------------------------------------------------------------
1426     // Initialize the selected tab
1427
1428     function init_cat_url() {
1429         // Set the initial catalog URL.  This only happens once.
1430         // The URL is otherwise generated through user navigation.
1431         if ($scope.catalog_url) return; 
1432
1433         var url = $location.absUrl().replace(/\/staff.*/, '/opac/advanced');
1434
1435         // A record ID in the path indicates a request for the record-
1436         // specific page.
1437         if ($routeParams.record_id) {
1438             url = url.replace(/advanced/, '/record/' + $scope.record_id);
1439         }
1440
1441         // Jumping directly to the results page by passing a search
1442         // query via the URL.  Copy all URL params to the iframe url.
1443         if ($location.path().match(/catalog\/results/)) {
1444             url = url.replace(/advanced/, '/results?');
1445             var first = true;
1446             angular.forEach($location.search(), function(val, key) {
1447                 if (!first) url += '&';
1448                 first = false;
1449                 url += encodeURIComponent(key) 
1450                     + '=' + encodeURIComponent(val);
1451             });
1452         }
1453
1454         // if we're displaying the advanced search form, select
1455         // whatever default pane the user has chosen via workstation
1456         // preference
1457         if (url.match(/\/opac\/advanced$/)) {
1458             var adv_pane = egCore.hatch.getLocalItem('eg.search.adv_pane');
1459             if (adv_pane) {
1460                 url += '?pane=' + encodeURIComponent(adv_pane);
1461             }
1462         }
1463
1464         $scope.catalog_url = url;
1465     }
1466
1467     function init_parts_url() {
1468         $scope.parts_url = $location
1469             .absUrl()
1470             .replace(
1471                 /\/staff.*/,
1472                 '/conify/global/biblio/monograph_part?r='+$scope.record_id
1473             );
1474     }
1475
1476     $scope.set_record_tab = function(tab) {
1477         $scope.record_tab = tab;
1478
1479         switch(tab) {
1480
1481             case 'monoparts':
1482                 init_parts_url();
1483                 break;
1484
1485             case 'catalog':
1486                 init_cat_url();
1487                 break;
1488
1489             case 'holds':
1490                 $scope.detail_hold_record_id = $scope.record_id; 
1491                 // refresh the holds grid
1492                 provider.refresh();
1493                 break;
1494         }
1495     }
1496
1497     $scope.set_default_record_tab = function() {
1498         egCore.hatch.setLocalItem(
1499             'eg.cat.default_record_tab', $scope.record_tab);
1500         $timeout(function(){$scope.default_tab = $scope.record_tab});
1501     }
1502
1503     var tab;
1504     if ($scope.record_id) {
1505         $scope.default_tab = egCore.hatch.getLocalItem( 'eg.cat.default_record_tab' );
1506         tab = $routeParams.record_tab || $scope.default_tab || 'catalog';
1507
1508     } else {
1509         tab = $routeParams.record_tab || 'catalog';
1510     }
1511     $scope.set_record_tab(tab);
1512
1513 }])
1514
1515 .controller('AuthorityCtrl',
1516        ['$scope','$routeParams','$location','$window','$q','egCore',
1517 function($scope , $routeParams , $location , $window , $q , egCore) {
1518
1519     // set record ID on page load if available...
1520     $scope.authority_id = $routeParams.authority_id;
1521
1522     if ($routeParams.authority_id) $scope.from_route = true;
1523     else $scope.from_route = false;
1524
1525     $scope.stop_unload = false;
1526 }])
1527
1528 .controller('URLVerifyCtrl',
1529        ['$scope','$location',
1530 function($scope , $location) {
1531     $scope.verifyurls_url = $location.absUrl().replace(/\/staff.*/, '/url_verify/sessions');
1532 }])
1533
1534 .controller('VandelayCtrl',
1535        ['$scope','$location',
1536 function($scope , $location) {
1537     $scope.vandelay_url = $location.absUrl().replace(/\/staff.*/, '/vandelay/vandelay');
1538 }])
1539
1540 .controller('ManageAuthoritiesCtrl',
1541        ['$scope','$location',
1542 function($scope , $location) {
1543     $scope.manageauthorities_url = $location.absUrl().replace(/\/staff.*/, '/cat/authority/list');
1544 }])
1545
1546 .controller('BatchEditCtrl',
1547        ['$scope','$location','$routeParams',
1548 function($scope , $location , $routeParams) {
1549     $scope.batchedit_url = $location.absUrl().replace(/\/eg.*/, '/opac/extras/merge_template');
1550     if ($routeParams.container_type) {
1551         switch ($routeParams.container_type) {
1552             case 'bucket':
1553                 $scope.batchedit_url += '?recordSource=b&containerid=' + $routeParams.container_id;
1554                 break;
1555             case 'record':
1556                 $scope.batchedit_url += '?recordSource=r&recid=' + $routeParams.container_id;
1557                 break;
1558         };
1559     }
1560 }])
1561
1562  
1563 .filter('boolText', function(){
1564     return function (v) {
1565         return v == 't';
1566     }
1567 })
1568
1569 .factory('conjoinedSvc', 
1570        ['egCore','$q',
1571 function(egCore , $q) {
1572
1573     var service = {
1574         items : [], // record search results
1575         index : 0, // search grid index
1576         rid : null
1577     };
1578
1579     service.flesh = {   
1580         flesh : 4, 
1581         flesh_fields : {
1582             bpbcm : ['target_copy','peer_type'],
1583             acp : ['call_number'],
1584             acn : ['record'],
1585             bre : ['simple_record']
1586         },
1587         // avoid fetching the MARC blob by specifying which
1588         // fields on the bre to select.  More may be needed.
1589         // note that fleshed fields are explicitly selected.
1590         select : { bre : ['id'] },
1591         order_by : { bpbcm : ['id'] },
1592     }
1593
1594     // resolved with the last received copy
1595     service.fetch = function(rid) {
1596         if (!rid && !service.rid) return $q.when();
1597
1598         if (rid) service.rid = rid;
1599         service.items = [];
1600         service.index = 0;
1601
1602         return egCore.pcrud.search(
1603             'bpbcm',
1604             {peer_record : service.rid},
1605             service.flesh,
1606             {atomic : true}
1607         ).then( function(list) { // finished
1608             service.items = list;
1609             return service.items;
1610         });
1611     }
1612
1613     // returns a promise resolved with the list of peer bib types
1614     service.get_peer_types = function() {
1615         if (egCore.env.bpt)
1616             return $q.when(egCore.env.bpt.list);
1617
1618         return egCore.pcrud.retrieveAll('bpt', null, {atomic : true})
1619         .then(function(list) {
1620             egCore.env.absorbList(list, 'bpt');
1621             return list;
1622         });
1623     };
1624
1625     return service;
1626 }])
1627
1628