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