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