]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
625065553ee389349a7b7a9c6fdc6687ee1c5b21
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / cat / volcopy / app.js
1 /**
2  * Vol/Copy Editor
3  */
4
5 angular.module('egVolCopy',
6     ['ngRoute', 'ui.bootstrap', 'egCoreMod', 'egUiMod', 'egGridMod'])
7
8 .filter('boolText', function(){
9     return function (v) {
10         return v == 't';
11     }
12 })
13
14 .config(['ngToastProvider', function(ngToastProvider) {
15   ngToastProvider.configure({
16     verticalPosition: 'bottom',
17     animation: 'fade'
18   });
19 }])
20
21 .config(function($routeProvider, $locationProvider, $compileProvider) {
22     $locationProvider.html5Mode(true);
23     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); // grid export
24         
25     var resolver = {
26         delay : ['egStartup', function(egStartup) { return egStartup.go(); }]
27     };
28
29     $routeProvider.when('/cat/volcopy/edit_templates', {
30         templateUrl: './cat/volcopy/t_view',
31         controller: 'EditCtrl',
32         resolve : resolver
33     });
34
35     $routeProvider.when('/cat/volcopy/:dataKey', {
36         templateUrl: './cat/volcopy/t_view',
37         controller: 'EditCtrl',
38         resolve : resolver
39     });
40
41     $routeProvider.when('/cat/volcopy/:dataKey/:mode', {
42         templateUrl: './cat/volcopy/t_view',
43         controller: 'EditCtrl',
44         resolve : resolver
45     });
46 })
47
48 .factory('itemSvc', 
49        ['egCore','$q',
50 function(egCore , $q) {
51
52     var service = {
53         currently_generating : false,
54         auto_gen_barcode : false,
55         barcode_checkdigit : false,
56         new_cp_id : 0,
57         new_cn_id : 0,
58         tree : {}, // holds lib->cn->copy hash stack
59         copies : [] // raw copy list
60     };
61
62     service.nextBarcode = function(bc) {
63         service.currently_generating = true;
64         return egCore.net.request(
65             'open-ils.cat',
66             'open-ils.cat.item.barcode.autogen',
67             egCore.auth.token(),
68             bc, 1, { checkdigit: service.barcode_checkdigit }
69         ).then(function(resp) { // get_barcodes
70             var evt = egCore.evt.parse(resp);
71             if (!evt) return resp[0];
72             return '';
73         });
74     };
75
76     service.checkBarcode = function(bc) {
77         if (!service.barcode_checkdigit) return true;
78         if (bc != Number(bc)) return false;
79         bc = bc.toString();
80         // "16.00" == Number("16.00"), but the . is bad.
81         // Throw out any barcode that isn't just digits
82         if (bc.search(/\D/) != -1) return false;
83         var last_digit = bc.substr(bc.length-1);
84         var stripped_barcode = bc.substr(0,bc.length-1);
85         return service.barcodeCheckdigit(stripped_barcode).toString() == last_digit;
86     };
87
88     service.barcodeCheckdigit = function(bc) {
89         var reverse_barcode = bc.toString().split('').reverse();
90         var check_sum = 0; var multiplier = 2;
91         for (var i = 0; i < reverse_barcode.length; i++) {
92             var digit = reverse_barcode[i];
93             var product = digit * multiplier; product = product.toString();
94             var temp_sum = 0;
95             for (var j = 0; j < product.length; j++) {
96                 temp_sum += Number( product[j] );
97             }
98             check_sum += Number( temp_sum );
99             multiplier = ( multiplier == 2 ? 1 : 2 );
100         }
101         check_sum = check_sum.toString();
102         var next_multiple_of_10 = (check_sum.match(/(\d*)\d$/)[1] * 10) + 10;
103         var check_digit = next_multiple_of_10 - Number(check_sum); if (check_digit == 10) check_digit = 0;
104         return check_digit;
105     };
106
107     // returns a promise resolved with the list of circ mods
108     service.get_classifications = function() {
109         if (egCore.env.acnc)
110             return $q.when(egCore.env.acnc.list);
111
112         return egCore.pcrud.retrieveAll('acnc', null, {atomic : true})
113         .then(function(list) {
114             egCore.env.absorbList(list, 'acnc');
115             return list;
116         });
117     };
118
119     service.get_prefixes = function(org) {
120         return egCore.pcrud.search('acnp',
121             {owning_lib : egCore.org.fullPath(org, true)},
122             {order_by : { acnp : 'label_sortkey' }}, {atomic : true}
123         );
124
125     };
126
127     service.get_statcats = function(orgs) {
128         return egCore.pcrud.search('asc',
129             {owner : orgs},
130             { flesh : 1,
131               flesh_fields : {
132                 asc : ['owner','entries']
133               },
134               order_by : [{'class':'asc', 'field':'owner'},{'class':'asc', 'field':'name'},{'class':'asce', 'field':'value'} ]
135             },
136             { atomic : true }
137         );
138     };
139
140     service.get_copy_alert_types = function(orgs) {
141         return egCore.pcrud.search('ccat',
142             { active : 't' },
143             {},
144             { atomic : true }
145         );
146     };
147
148     service.get_copy_alerts = function(copy_id) {
149         return egCore.pcrud.search('aca', { copy : copy_id, ack_time : null },
150             { flesh : 1, flesh_fields : { aca : ['alert_type'] } },
151             { atomic : true }
152         );
153     };
154
155     service.get_locations_by_org = function(orgs) {
156         return egCore.pcrud.search('acpl',
157             {owning_lib : orgs, deleted : 'f'},
158             {
159                 flesh : 1,
160                 flesh_fields : {
161                     acpl : ['owning_lib']
162                 },
163                 order_by : { acpl : 'name' }
164             },
165             {atomic : true}
166         );
167     };
168
169     service.fetch_locations = function(locs) {
170         return egCore.pcrud.search('acpl',
171             {id : locs},
172             {
173                 flesh : 1,
174                 flesh_fields : {
175                     acpl : ['owning_lib']
176                 },
177                 order_by : { acpl : 'name' }
178             },
179             {atomic : true}
180         );
181     };
182
183     service.get_suffixes = function(org) {
184         return egCore.pcrud.search('acns',
185             {owning_lib : egCore.org.fullPath(org, true)},
186             {order_by : { acns : 'label_sortkey' }}, {atomic : true}
187         );
188
189     };
190
191     service.get_magic_statuses = function() {
192         /* TODO: make these more configurable per lp1616170 */
193         return $q.when([
194              1  /* Checked out */
195             ,3  /* Lost */
196             ,6  /* In transit */
197             ,8  /* On holds shelf */
198             ,16 /* Long overdue */
199             ,18 /* Canceled Transit */
200         ]);
201     }
202
203     service.get_statuses = function() {
204         if (egCore.env.ccs)
205             return $q.when(egCore.env.ccs.list);
206
207         return egCore.pcrud.retrieveAll('ccs', {order_by : { ccs : 'name' }}, {atomic : true}).then(
208             function(list) {
209                 egCore.env.absorbList(list, 'ccs');
210                 return list;
211             }
212         );
213
214     };
215
216     service.get_circ_mods = function() {
217         if (egCore.env.ccm)
218             return $q.when(egCore.env.ccm.list);
219
220         return egCore.pcrud.retrieveAll('ccm', {}, {atomic : true}).then(
221             function(list) {
222                 egCore.env.absorbList(list, 'ccm');
223                 return list;
224             }
225         );
226
227     };
228
229     service.get_circ_types = function() {
230         if (egCore.env.citm)
231             return $q.when(egCore.env.citm.list);
232
233         return egCore.pcrud.retrieveAll('citm', {}, {atomic : true}).then(
234             function(list) {
235                 egCore.env.absorbList(list, 'citm');
236                 return list;
237             }
238         );
239
240     };
241
242     service.get_age_protects = function() {
243         if (egCore.env.crahp)
244             return $q.when(egCore.env.crahp.list);
245
246         return egCore.pcrud.retrieveAll('crahp', {}, {atomic : true}).then(
247             function(list) {
248                 egCore.env.absorbList(list, 'crahp');
249                 return list;
250             }
251         );
252
253     };
254
255     service.get_floating_groups = function() {
256         if (egCore.env.cfg)
257             return $q.when(egCore.env.cfg.list);
258
259         return egCore.pcrud.retrieveAll('cfg', {}, {atomic : true}).then(
260             function(list) {
261                 egCore.env.absorbList(list, 'cfg');
262                 return list;
263             }
264         );
265
266     };
267
268     service.bmp_parts = {};
269     service.get_parts = function(rec) {
270         if (service.bmp_parts[rec])
271             return $q.when(service.bmp_parts[rec]);
272
273         return egCore.pcrud.search('bmp',
274             {record : rec, deleted : 'f'},
275             {order_by: {bmp : 'label_sortkey DESC'}},
276             {atomic : true}
277         ).then(function(list) {
278             service.bmp_parts[rec] = list;
279             return list;
280         });
281
282     };
283
284     service.get_acp_templates = function() {
285         // Already downloaded for this user? Return local copy. Changing users or logging out causes another download
286         // so users always have their own templates, and any changes made on other machines appear as expected.
287         if (egCore.hatch.getSessionItem('cat.copy.templates.usr') == egCore.auth.user().id()) {
288             return egCore.hatch.getItem('cat.copy.templates').then(function(templ) {
289                 return templ;
290             });
291         } else {
292             // this can be disabled for debugging to force a re-download and translation of test templates
293             egCore.hatch.setSessionItem('cat.copy.templates.usr', egCore.auth.user().id());
294             return service.load_remote_acp_templates();
295         }
296
297     };
298
299     service.save_acp_templates = function(t) {
300         egCore.hatch.setItem('cat.copy.templates', t);
301         egCore.net.request('open-ils.actor', 'open-ils.actor.patron.settings.update',
302             egCore.auth.token(), egCore.auth.user().id(), { "webstaff.cat.copy.templates": t });
303         // console.warn('Saved ' + JSON.stringify({"webstaff.cat.copy.templates": t}));
304     };
305
306     service.load_remote_acp_templates = function() {
307         // After the XUL Client is completely removed everything related
308         // to staff_client.copy_editor.templates and convert_xul_templates
309         // can be thrown away.
310         return egCore.net.request('open-ils.actor', 'open-ils.actor.patron.settings.retrieve.authoritative',
311             egCore.auth.token(), egCore.auth.user().id(),
312             ['webstaff.cat.copy.templates','staff_client.copy_editor.templates']).then(function(settings) {
313                 if (settings['webstaff.cat.copy.templates']) {
314                     egCore.hatch.setItem('cat.copy.templates', settings['webstaff.cat.copy.templates']);
315                     return settings['webstaff.cat.copy.templates'];
316                 } else {
317                     if (settings['staff_client.copy_editor.templates']) {
318                         var new_templ = service.convert_xul_templates(settings['staff_client.copy_editor.templates']);
319                         egCore.hatch.setItem('cat.copy.templates', new_templ);
320                         // console.warn('Saving: ' + JSON.stringify({'webstaff.cat.copy.templates' : new_templ}));
321                         egCore.net.request('open-ils.actor', 'open-ils.actor.patron.settings.update',
322                             egCore.auth.token(), egCore.auth.user().id(), {'webstaff.cat.copy.templates' : new_templ});
323                         return new_templ;
324                     }
325                 }
326                 return {};
327         });
328     };
329
330     service.convert_xul_templates = function(xultempl) {
331         var conv_templ = {};
332         var templ_names = Object.keys(xultempl);
333         var name;
334         var xul_t;
335         var curr_templ;
336         var stat_cats;
337         var fields;
338         var curr_field;
339         var tmp_val;
340         var i, j;
341
342         if (templ_names) {
343             for (i=0; i < templ_names.length; i++) {
344                 name = templ_names[i];
345                 curr_templ = {};
346                 stat_cats = {};
347                 xul_t  = xultempl[name];
348                 fields = Object.keys(xul_t);
349
350                 if (fields.length > 0) {
351                     for (j=0; j < fields.length; j++) {
352                         curr_field = xul_t[fields[j]];
353                         var field_name = curr_field["field"];
354
355                         if ( field_name == null ) { continue; }
356                         if ( curr_field["value"] == "<HACK:KLUDGE:NULL>" ) { continue; }
357
358                         // floating changed from a boolean to an integer at one point;
359                         // take this opportunity to remove the boolean from any old templates
360                         if ( curr_field["type"] === "attribute" && field_name === "floating" ) {
361                             if ( curr_field["value"].match(/[tf]/) ) { continue; }
362                         }
363
364                         if ( curr_field["type"] === "stat_cat" ) {
365                             stat_cats[field_name] = parseInt(curr_field["value"]);
366                         } else {
367                             tmp_val = curr_field['value'];
368                             if ( tmp_val.toString().match(/^[-0-9.]+$/)) {
369                                 tmp_val = parseFloat(tmp_val);
370                             }
371
372                             if (field_name.match(/^batch_.*_menulist$/)) {
373                                 // special handling for volume fields
374                                 if (!("callnumber" in curr_templ)) curr_templ["callnumber"] = {};
375                                 if (field_name === "batch_class_menulist")  curr_templ["callnumber"]["classification"] = tmp_val;
376                                 if (field_name === "batch_prefix_menulist") curr_templ["callnumber"]["prefix"] = tmp_val;
377                                 if (field_name === "batch_suffix_menulist") curr_templ["callnumber"]["suffix"] = tmp_val;
378                             } else {
379                                 curr_templ[field_name] = tmp_val;
380                             }
381                         }
382                     }
383
384                     if ( (Object.keys(stat_cats)).length > 0 ) {
385                         curr_templ["statcats"] = stat_cats;
386                     }
387
388                     conv_templ[name] = curr_templ;
389                 }
390             }
391         }
392         return conv_templ;
393     };
394
395     service.flesh = {   
396         flesh : 3, 
397         flesh_fields : {
398             acp : ['call_number','parts','stat_cat_entries', 'notes', 'tags'],
399             acn : ['label_class','prefix','suffix'],
400             acptcm : ['tag']
401         }
402     }
403
404     service.addCopy = function (cp) {
405
406         if (!cp.parts()) cp.parts([]); // just in case...
407
408         service.get_copy_alerts(cp.id()).then(function(aca) {
409             cp.copy_alerts(aca);
410         });
411
412         var lib = cp.call_number().owning_lib();
413         var cn = cp.call_number().id();
414
415         if (!service.tree[lib]) service.tree[lib] = {};
416         if (!service.tree[lib][cn]) service.tree[lib][cn] = [];
417
418         service.tree[lib][cn].push(cp);
419         service.copies.push(cp);
420     }
421
422     service.checkDuplicateBarcode = function(bc, id) {
423         var final = false;
424         return egCore.pcrud.search('acp', { deleted : 'f', 'barcode' : bc, id : { '!=' : id } })
425             .then(
426                 function () { return final },
427                 function () { return final },
428                 function () { final = true; }
429             );
430     }
431
432     service.fetchIds = function(idList) {
433         service.tree = {}; // clear the tree on fetch
434         service.copies = []; // clear the copy list on fetch
435         return egCore.pcrud.search('acp', { 'id' : idList }, service.flesh).then(null,null,
436             function(copy) {
437                 service.addCopy(copy);
438             }
439         );
440     }
441
442     // create a new acp object with default values
443     // (both hard-coded and coming from OU settings)
444     service.generateNewCopy = function(callNumber, owningLib, isFastAdd, isNew) {
445         var cp = new egCore.idl.acp();
446         cp.id( --service.new_cp_id );
447         if (isNew) {
448             cp.isnew( true );
449         }
450         cp.circ_lib( owningLib );
451         cp.call_number( callNumber );
452         cp.deposit(0);
453         cp.price(0);
454         cp.deposit_amount(0);
455         cp.fine_level(2); // Normal
456         cp.loan_duration(2); // Normal
457         cp.location(1); // Stacks
458         cp.circulate('t');
459         cp.holdable('t');
460         cp.opac_visible('t');
461         cp.ref('f');
462         cp.mint_condition('t');
463         cp.empty_barcode = true;
464
465         var status_setting = isFastAdd ?
466             'cat.default_copy_status_fast' :
467             'cat.default_copy_status_normal';
468         egCore.org.settings(
469             [status_setting],
470             owningLib
471         ).then(function(set) {
472             var default_ccs = parseInt(set[status_setting]);
473             if (isNaN(default_ccs))
474                 default_ccs = (isFastAdd ? 0 : 5); // 0 is Available, 5 is In Process
475             cp.status(default_ccs);
476         });
477
478         return cp;
479     }
480
481     return service;
482 }])
483
484 .directive("egVolCopyEdit", function () {
485     return {
486         restrict: 'E',
487         replace: true,
488         template:
489             '<div class="row">'+
490                 '<div class="col-xs-5" ng-class="{'+"'has-error'"+':barcode_has_error}">'+
491                     '<input id="{{callNumber.id()}}_{{copy.id()}}"'+
492                     ' eg-enter="nextBarcode(copy.id())" class="form-control"'+
493                     ' type="text" ng-model="barcode" ng-change="updateBarcode()"'+
494                     ' ng-focus="selectOnFocus($event)" autofocus/>'+
495                     '<div class="label label-danger" ng-if="duplicate_barcode">{{duplicate_barcode_string}}</div>'+
496                     '<div class="label label-danger" ng-if="empty_barcode">{{empty_barcode_string}}</div>'+
497                 '</div>'+
498                 '<div class="col-xs-3"><input class="form-control" type="number" min="1" ng-model="copy_number" ng-change="updateCopyNo()"/></div>'+
499                 '<div class="col-xs-3"><eg-basic-combo-box list="parts" selected="part"></eg-basic-combo-box></div>'+
500             '</div>',
501
502         scope: { focusNext: "=", copy: "=", callNumber: "=", index: "@", record: "@" },
503         controller : ['$scope','itemSvc','egCore',
504             function ( $scope , itemSvc , egCore ) {
505                 $scope.new_part_id = 0;
506                 $scope.barcode_has_error = false;
507                 $scope.duplicate_barcode = false;
508                 $scope.empty_barcode = false;
509                 $scope.duplicate_barcode_string = window.duplicate_barcode_string;
510                 $scope.empty_barcode_string = window.empty_barcode_string;
511
512                 if (!$scope.copy.barcode()) $scope.copy.empty_barcode = true;
513
514                 $scope.selectOnFocus = function($event) {
515                     if (!$scope.copy.empty_barcode)
516                         $event.target.select();
517                 }
518
519                 $scope.nextBarcode = function (i) {
520                     $scope.focusNext(i, $scope.barcode);
521                 }
522
523                 $scope.updateBarcode = function () {
524                     if ($scope.barcode != '') {
525                         $scope.copy.empty_barcode = $scope.empty_barcode = false;
526                         $scope.barcode_has_error = !Boolean(itemSvc.checkBarcode($scope.barcode));
527                         itemSvc.checkDuplicateBarcode($scope.barcode, $scope.copy.id())
528                             .then(function (state) { $scope.copy.duplicate_barcode = $scope.duplicate_barcode = state });
529                     } else {
530                         $scope.copy.empty_barcode = $scope.empty_barcode = true;
531                     }
532                         
533                     $scope.copy.barcode($scope.barcode);
534                     $scope.copy.ischanged(1);
535                     if (itemSvc.currently_generating)
536                         $scope.focusNext($scope.copy.id(), $scope.barcode);
537                 };
538
539                 $scope.updateCopyNo = function () { $scope.copy.copy_number($scope.copy_number); $scope.copy.ischanged(1); };
540                 $scope.updatePart = function () {
541                     if ($scope.part) {
542                         var p = $scope.part_list.filter(function (x) {
543                             return x.label() == $scope.part
544                         });
545                         if (p.length > 0) { // preexisting part
546                             $scope.copy.parts(p)
547                         } else { // create one...
548                             var part = new egCore.idl.bmp();
549                             part.id( --$scope.new_part_id );
550                             part.isnew( true );
551                             part.label( $scope.part );
552                             part.record( $scope.callNumber.record() );
553                             $scope.copy.parts([part]);
554                             $scope.copy.ischanged(1);
555                         }
556                     } else {
557                         $scope.copy.parts([]);
558                     }
559                     $scope.copy.ischanged(1);
560                 }
561
562                 $scope.parts = [];
563                 $scope.part_list = [];
564
565                 itemSvc.get_parts($scope.callNumber.record())
566                 .then(function(list){
567                     $scope.part_list = list;
568                     angular.forEach(list, function(p){ $scope.parts.push(p.label()) });
569                     $scope.parts = angular.copy($scope.parts);
570                 
571                     $scope.$watch('part', $scope.updatePart);
572                     if ($scope.copy.parts()) {
573                         var the_part = $scope.copy.parts()[0];
574                         if (the_part) $scope.part = the_part.label();
575                     };
576                 });
577
578                 $scope.barcode = $scope.copy.barcode();
579                 $scope.copy_number = $scope.copy.copy_number();
580
581             }
582         ]
583
584     }
585 })
586
587 .directive("egVolRow", function () {
588     return {
589         restrict: 'E',
590         replace: true,
591         transclude: true,
592         template:
593             '<div class="row">'+
594                 '<div class="col-xs-2">'+
595                     '<button aria-label="Delete" style="margin:-5px -15px; float:left;" ng-hide="callNumber.not_ephemeral" type="button" class="close" ng-click="removeCN()">&times;</button>' +
596                     '<select class="form-control" ng-model="classification" ng-change="updateClassification()" ng-options="cl.name() for cl in classification_list"/>'+
597                 '</div>'+
598                 '<div class="col-xs-1">'+
599                     '<select class="form-control" ng-model="prefix" ng-change="updatePrefix()" ng-options="p.label() for p in prefix_list"/>'+
600                 '</div>'+
601                 '<div class="col-xs-2">'+
602                     '<input class="form-control" type="text" ng-change="updateLabel()" ng-model="label"/>'+
603                     '<div class="label label-danger" ng-if="empty_label">{{empty_label_string}}</div>'+
604                 '</div>'+
605                 '<div class="col-xs-1">'+
606                     '<select class="form-control" ng-model="suffix" ng-change="updateSuffix()" ng-options="s.label() for s in suffix_list"/>'+
607                 '</div>'+
608                 '<div ng-hide="onlyVols" class="col-xs-1"><input class="form-control" type="number" ng-model="copy_count" min="{{orig_copy_count}}" ng-change="changeCPCount()"></div>'+
609                 '<div ng-hide="onlyVols" class="col-xs-5">'+
610                     '<eg-vol-copy-edit record="{{record}}" ng-repeat="cp in copies track by idTracker(cp)" focus-next="focusNextBarcode" copy="cp" call-number="callNumber"></eg-vol-copy-edit>'+
611                 '</div>'+
612             '</div>',
613
614         scope: {focusNext: "=", allcopies: "=", copies: "=", onlyVols: "=", record: "@", struct:"=" },
615         controller : ['$scope','itemSvc','egCore',
616             function ( $scope , itemSvc , egCore ) {
617                 $scope.callNumber =  $scope.copies[0].call_number();
618                 if (!$scope.callNumber.label()) $scope.callNumber.empty_label = true;
619
620                 $scope.empty_label = false;
621                 $scope.empty_label_string = window.empty_label_string;
622
623                 $scope.idTracker = function (x) { if (x && x.id) return x.id() };
624
625                 // XXX $() is not working! arg
626                 $scope.focusNextBarcode = function (i, prev_bc) {
627                     var n;
628                     var yep = false;
629                     angular.forEach($scope.copies, function (cp) {
630                         if (n) return;
631
632                         if (cp.id() == i) {
633                             yep = true;
634                             return;
635                         }
636
637                         if (yep) n = cp.id();
638                     });
639
640                     if (n) {
641                         var next = '#' + $scope.callNumber.id() + '_' + n;
642                         var el = $(next);
643                         if (el) {
644                             if (!itemSvc.currently_generating) el.focus();
645                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
646                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
647                                     el.focus();
648                                     el.val(bc);
649                                     el.trigger('change');
650                                 });
651                             } else {
652                                 itemSvc.currently_generating = false;
653                             }
654                         }
655                     } else {
656                         $scope.focusNext($scope.callNumber.id(),prev_bc)
657                     }
658                 }
659
660                 $scope.suffix_list = [];
661                 itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
662                     $scope.suffix_list = list;
663                     $scope.$watch('callNumber.suffix()', function (v) {
664                         if (angular.isObject(v)) v = v.id();
665                         $scope.suffix = $scope.suffix_list.filter( function (s) {
666                             return s.id() == v;
667                         })[0];
668                     });
669
670                 });
671                 $scope.updateSuffix = function () {
672                     angular.forEach($scope.copies, function(cp) {
673                         cp.call_number().suffix($scope.suffix);
674                         cp.call_number().ischanged(1);
675                     });
676                 }
677
678                 $scope.prefix_list = [];
679                 itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
680                     $scope.prefix_list = list;
681                     $scope.$watch('callNumber.prefix()', function (v) {
682                         if (angular.isObject(v)) v = v.id();
683                         $scope.prefix = $scope.prefix_list.filter(function (p) {
684                             return p.id() == v;
685                         })[0];
686                     });
687
688                 });
689                 $scope.updatePrefix = function () {
690                     angular.forEach($scope.copies, function(cp) {
691                         cp.call_number().prefix($scope.prefix);
692                         cp.call_number().ischanged(1);
693                     });
694                 }
695                 $scope.$watch('callNumber.owning_lib()', function(oldLib, newLib) {
696                     if (oldLib == newLib) return;
697                     var currentPrefix = $scope.callNumber.prefix();
698                     if (angular.isObject(currentPrefix)) currentPrefix = currentPrefix.id();
699                     itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
700                         $scope.prefix_list = list;
701                         var newPrefixId = $scope.prefix_list.filter(function (p) {
702                             return p.id() == currentPrefix;
703                         })[0] || -1;
704                         if (newPrefixId.id) newPrefixId = newPrefixId.id();
705                         $scope.prefix = $scope.prefix_list.filter(function (p) {
706                             return p.id() == newPrefixId;
707                         })[0];
708                         if ($scope.newPrefixId != currentPrefix) {
709                             $scope.callNumber.prefix($scope.prefix);
710                         }
711                     });
712                     var currentSuffix = $scope.callNumber.suffix();
713                     if (angular.isObject(currentSuffix)) currentSuffix = currentSuffix.id();
714                     itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
715                         $scope.suffix_list = list;
716                         var newSuffixId = $scope.suffix_list.filter(function (s) {
717                             return s.id() == currentSuffix;
718                         })[0] || -1;
719                         if (newSuffixId.id) newSuffixId = newSuffixId.id();
720                         $scope.suffix = $scope.suffix_list.filter(function (s) {
721                             return s.id() == newSuffixId;
722                         })[0];
723                         if ($scope.newSuffixId != currentSuffix) {
724                             $scope.callNumber.suffix($scope.suffix);
725                         }
726                     });
727                 });
728
729                 $scope.classification_list = [];
730                 itemSvc.get_classifications().then(function(list){
731                     $scope.classification_list = list;
732                     $scope.$watch('callNumber.label_class()', function (v) {
733                         if (angular.isObject(v)) v = v.id();
734                         $scope.classification = $scope.classification_list.filter(function (c) {
735                             return c.id() == v;
736                         })[0];
737                     });
738
739                 });
740                 $scope.updateClassification = function () {
741                     angular.forEach($scope.copies, function(cp) {
742                         cp.call_number().label_class($scope.classification);
743                         cp.call_number().ischanged(1);
744                     });
745                 }
746
747                 $scope.updateLabel = function () {
748                     angular.forEach($scope.copies, function(cp) {
749                         cp.call_number().label($scope.label);
750                         cp.call_number().ischanged(1);
751                     });
752                 }
753
754                 $scope.$watch('callNumber.label()', function (v) {
755                     $scope.label = v;
756                     if ($scope.label == '') {
757                         $scope.callNumber.empty_label = $scope.empty_label = true;
758                     } else {
759                         $scope.callNumber.empty_label = $scope.empty_label = false;
760                     }
761                 });
762
763                 $scope.prefix = $scope.callNumber.prefix();
764                 $scope.suffix = $scope.callNumber.suffix();
765                 $scope.classification = $scope.callNumber.label_class();
766                 $scope.label = $scope.callNumber.label();
767
768                 $scope.copy_count = $scope.copies.length;
769                 $scope.orig_copy_count = $scope.copy_count;
770
771                 $scope.removeCN = function(){
772                     var cn = $scope.callNumber;
773                     if (cn.not_ephemeral) return;  // can't delete existing volumes
774
775                     angular.forEach(Object.keys($scope.struct), function(k){
776                         angular.forEach($scope.struct[k], function(cp){
777                             var struct_cn = cp.call_number();
778                             if (struct_cn.id() == cn.id()){
779                                 console.log("X'ed CN id" + cn.id() + " and struct CN id match!");
780                                 // remove any copies in $scope.struct[k]
781                                 angular.forEach($scope.copies, function(c){
782                                     var idx = $scope.allcopies.indexOf(c);
783                                     $scope.allcopies.splice(idx, 1);
784                                 });
785
786                                 $scope.copies = [];
787                                 // remove added vol:
788                                 delete $scope.struct[k];
789                             }
790                         });
791                     });
792
793                     // manually decrease cn_count numeric input
794                     var cn_spinner = $("input[name='cn_count_lib"+ cn.owning_lib() +"']");
795                     if (cn_spinner.val() > 0) cn_spinner.val(parseInt(cn_spinner.val()) - 1);
796                     cn_spinner.trigger("change");
797
798                 }
799
800                 $scope.changeCPCount = function () {
801                     while ($scope.copy_count > $scope.copies.length) {
802                         var cp = itemSvc.generateNewCopy(
803                             $scope.callNumber,
804                             $scope.callNumber.owning_lib(),
805                             $scope.fast_add,
806                             true
807                         );
808                         $scope.copies.push( cp );
809                         $scope.allcopies.push( cp );
810
811                     }
812
813                     if ($scope.copy_count >= $scope.orig_copy_count) {
814                         var how_many = $scope.copies.length - $scope.copy_count;
815                         if (how_many > 0) {
816                             var dead = $scope.copies.splice($scope.copy_count,how_many);
817                             $scope.callNumber.copies($scope.copies);
818
819                             // Trimming the global list is a bit more tricky
820                             angular.forEach( dead, function (d) {
821                                 angular.forEach( $scope.allcopies, function (l, i) { 
822                                     if (l === d) $scope.allcopies.splice(i,1);
823                                 });
824                             });
825                         }
826                     }
827                 }
828
829             }
830         ]
831
832     }
833 })
834
835 .directive("egVolEdit", function () {
836     return {
837         restrict: 'E',
838         replace: true,
839         template:
840             '<div class="row">'+
841                 '<div class="col-xs-1"><eg-org-selector selected="owning_lib" disable-test="cant_have_vols"></eg-org-selector></div>'+
842                 '<div class="col-xs-1"><input class="form-control" type="number" min="{{orig_cn_count}}" ng-model="cn_count" ng-change="changeCNCount()"/></div>'+
843                 '<div class="col-xs-10">'+
844                     '<eg-vol-row only-vols="onlyVols" record="{{record}}"'+
845                         'ng-repeat="(cn,copies) in struct" '+
846                         'focus-next="focusNextFirst" copies="copies" allcopies="allcopies" struct="struct">'+
847                     '</eg-vol-row>'+
848                 '</div>'+
849             '</div>',
850
851         scope: { focusNext: "=", allcopies: "=", struct: "=", lib: "@", record: "@", onlyVols: "=" },
852         controller : ['$scope','itemSvc','egCore',
853             function ( $scope , itemSvc , egCore ) {
854                 $scope.first_cn = Object.keys($scope.struct)[0];
855                 $scope.full_cn = $scope.struct[$scope.first_cn][0].call_number();
856
857                 $scope.defaults = {};
858                 egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
859                     if (t) {
860                         $scope.defaults = t;
861                     }
862                 });
863
864                 $scope.focusNextFirst = function(prev_cn,prev_bc) {
865                     var n;
866                     var yep = false;
867                     angular.forEach(Object.keys($scope.struct).sort(), function (cn) {
868                         if (n) return;
869
870                         if (cn == prev_cn) {
871                             yep = true;
872                             return;
873                         }
874
875                         if (yep) n = cn;
876                     });
877
878                     if (n) {
879                         var next = '#' + n + '_' + $scope.struct[n][0].id();
880                         var el = $(next);
881                         if (el) {
882                             if (!itemSvc.currently_generating) el.focus();
883                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
884                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
885                                     el.focus();
886                                     el.val(bc);
887                                     el.trigger('change');
888                                 });
889                             } else {
890                                 itemSvc.currently_generating = false;
891                             }
892                         }
893                     } else {
894                         $scope.focusNext($scope.lib, prev_bc);
895                     }
896                 }
897
898                 $scope.cn_count = Object.keys($scope.struct).length;
899                 $scope.orig_cn_count = $scope.cn_count;
900
901                 $scope.owning_lib = egCore.org.get($scope.lib);
902                 $scope.$watch('owning_lib', function (oldLib, newLib) {
903                     if (oldLib == newLib) return;
904                     angular.forEach( Object.keys($scope.struct), function (cn) {
905                         $scope.struct[cn][0].call_number().owning_lib( $scope.owning_lib.id() );
906                         $scope.struct[cn][0].call_number().ischanged(1);
907                     });
908                 });
909
910                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
911
912                 $scope.$watch('cn_count', function (n) {
913                     var o = Object.keys($scope.struct).length;
914                     if (n > o) { // adding
915                         for (var i = o; o < n; o++) {
916                             var cn = new egCore.idl.acn();
917                             cn.id( --itemSvc.new_cn_id );
918                             cn.isnew( true );
919                             cn.prefix( $scope.defaults.prefix || -1 );
920                             cn.suffix( $scope.defaults.suffix || -1 );
921                             cn.label_class( $scope.defaults.classification || 1 );
922                             cn.owning_lib( $scope.owning_lib.id() );
923                             cn.record( $scope.full_cn.record() );
924
925                             var cp = itemSvc.generateNewCopy(
926                                 cn,
927                                 $scope.owning_lib.id(),
928                                 $scope.fast_add,
929                                 true
930                             );
931
932                             $scope.struct[cn.id()] = [cp];
933                             $scope.allcopies.push(cp);
934                             if (!$scope.defaults.classification) {
935                                 egCore.org.settings(
936                                     ['cat.default_classification_scheme'],
937                                     cn.owning_lib()
938                                 ).then(function (val) {
939                                     cn.label_class(val['cat.default_classification_scheme']);
940                                 });
941                             }
942                         }
943                     } else if (n < o && n >= $scope.orig_cn_count) { // removing
944                         var how_many = o - n;
945                         var list = Object
946                                 .keys($scope.struct)
947                                 .sort(function(a, b){return parseInt(a)-parseInt(b)})
948                                 .filter(function(x){ return parseInt(x) <= 0 });
949                         for (var i = 0; i < how_many; i++) {
950                             // Trimming the global list is a bit more tricky
951                             angular.forEach($scope.struct[list[i]], function (d) {
952                                 angular.forEach( $scope.allcopies, function (l, j) { 
953                                     if (l === d) $scope.allcopies.splice(j,1);
954                                 });
955                             });
956                             delete $scope.struct[list[i]];
957                         }
958                     }
959                 });
960             }
961         ]
962
963     }
964 })
965
966 /**
967  * Edit controller!
968  */
969 .controller('EditCtrl', 
970        ['$scope','$q','$window','$routeParams','$location','$timeout','egCore','egNet','egGridDataProvider','itemSvc','$uibModal',
971 function($scope , $q , $window , $routeParams , $location , $timeout , egCore , egNet , egGridDataProvider , itemSvc , $uibModal) {
972
973     $scope.forms = {}; // Accessed by t_attr_edit.tt2
974     $scope.i18n = egCore.i18n;
975
976     $scope.defaults = { // If defaults are not set at all, allow everything
977         barcode_checkdigit : false,
978         auto_gen_barcode : false,
979         statcats : true,
980         copy_notes : true,
981         copy_tags : true,
982         attributes : {
983             status : true,
984             loan_duration : true,
985             fine_level : true,
986             cost : true,
987             alerts : true,
988             deposit : true,
989             deposit_amount : true,
990             opac_visible : true,
991             price : true,
992             circulate : true,
993             mint_condition : true,
994             circ_lib : true,
995             ref : true,
996             circ_modifier : true,
997             circ_as_type : true,
998             location : true,
999             holdable : true,
1000             age_protect : true,
1001             floating : true,
1002             alerts : true
1003         }
1004     };
1005
1006     $scope.new_lib_to_add = egCore.org.get(egCore.auth.user().ws_ou());
1007     $scope.changeNewLib = function (org) {
1008         $scope.new_lib_to_add = org;
1009     }
1010     $scope.addLibToStruct = function () {
1011         var newLib = $scope.new_lib_to_add;
1012         var cn = new egCore.idl.acn();
1013         cn.id( --itemSvc.new_cn_id );
1014         cn.isnew( true );
1015         cn.prefix( $scope.defaults.prefix || -1 );
1016         cn.suffix( $scope.defaults.suffix || -1 );
1017         cn.label_class( $scope.defaults.classification || 1 );
1018         cn.owning_lib( newLib.id() );
1019         cn.record( $scope.record_id );
1020
1021         var cp = itemSvc.generateNewCopy(
1022             cn,
1023             newLib.id(),
1024             $scope.fast_add,
1025             true
1026         );
1027
1028         $scope.data.addCopy(cp);
1029
1030         // manually increase cn_count numeric input
1031         var cn_spinner = $("input[name='cn_count_lib"+ newLib.id() +"']");
1032         cn_spinner.val(parseInt(cn_spinner.val()) + 1);
1033         cn_spinner.trigger("change");
1034
1035         if (!$scope.defaults.classification) {
1036             egCore.org.settings(
1037                 ['cat.default_classification_scheme'],
1038                 cn.owning_lib()
1039             ).then(function (val) {
1040                 cn.label_class(val['cat.default_classification_scheme']);
1041             });
1042         }
1043     }
1044
1045     $scope.embedded = ($routeParams.mode && $routeParams.mode == 'embedded') ? true : false;
1046     $scope.edit_templates = ($location.path().match(/edit_template/)) ? true : false;
1047
1048     $scope.saveDefaults = function () {
1049         egCore.hatch.setItem('cat.copy.defaults', $scope.defaults);
1050     }
1051
1052     $scope.fetchDefaults = function () {
1053         egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
1054             if (t) {
1055                 $scope.defaults = t;
1056                 if (!$scope.batch) $scope.batch = {};
1057                 $scope.batch.classification = $scope.defaults.classification;
1058                 $scope.batch.prefix = $scope.defaults.prefix;
1059                 $scope.batch.suffix = $scope.defaults.suffix;
1060                 $scope.working.statcat_filter = $scope.defaults.statcat_filter;
1061                 if (
1062                         typeof $scope.defaults.statcat_filter == 'object' &&
1063                         Object.keys($scope.defaults.statcat_filter).length > 0
1064                    ) {
1065                     // want fieldmapper object here...
1066                     $scope.defaults.statcat_filter =
1067                          egCore.idl.Clone($scope.defaults.statcat_filter);
1068                     // ... and ID here
1069                     $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
1070                 }
1071                 if ($scope.defaults.always_volumes) $scope.show_vols = true;
1072                 if ($scope.defaults.barcode_checkdigit) itemSvc.barcode_checkdigit = true;
1073                 if ($scope.defaults.auto_gen_barcode) itemSvc.auto_gen_barcode = true;
1074             }
1075
1076             // Fetch the list of bib-level callnumbers based on the applied
1077             // classification scheme.  If none is defined, default to "1"
1078             // (Generic) since it provides the most options.
1079             egCore.net.request(
1080                 'open-ils.cat',
1081                 'open-ils.cat.biblio.record.marc_cn.retrieve',
1082                 $scope.record_id,
1083                 $scope.batch.classification || 1
1084             ).then(function(list) {
1085                 $scope.batch.marcCallNumbers = [];
1086                 list.forEach(function(hash) {
1087                     $scope.batch.marcCallNumbers.push(Object.values(hash)[0]);
1088                 });
1089             });
1090         });
1091     }
1092
1093     $scope.$watch('defaults.statcat_filter', function() {
1094         $scope.saveDefaults();
1095     });
1096     $scope.$watch('defaults.auto_gen_barcode', function (n,o) {
1097         itemSvc.auto_gen_barcode = n
1098     });
1099
1100     $scope.$watch('defaults.barcode_checkdigit', function (n,o) {
1101         itemSvc.barcode_checkdigit = n
1102     });
1103
1104     $scope.dirty = false;
1105     $scope.$watch('dirty',
1106         function(newVal, oldVal) {
1107             if (newVal && newVal != oldVal) {
1108                 $($window).on('beforeunload.edit', function(){
1109                     return 'There is unsaved data!'
1110                 });
1111             } else {
1112                 $($window).off('beforeunload.edit');
1113             }
1114         }
1115     );
1116
1117     $scope.only_vols = false;
1118     $scope.show_vols = true;
1119     $scope.show_copies = true;
1120
1121     $scope.tracker = function (x,f) { if (x) return x[f]() };
1122     $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
1123     $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
1124
1125     $scope.orgById = function (id) { return egCore.org.get(id) }
1126     $scope.statusById = function (id) {
1127         return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
1128     }
1129     $scope.locationById = function (id) {
1130         return $scope.location_cache[''+id];
1131     }
1132
1133     $scope.workingToComplete = function () {
1134         angular.forEach( $scope.workingGridControls.selectedItems(), function (c) {
1135             angular.forEach( itemSvc.copies, function (w, i) {
1136                 if (c === w)
1137                     $scope.completed_copies = $scope.completed_copies.concat(itemSvc.copies.splice(i,1));
1138             });
1139         });
1140
1141         return true;
1142     }
1143
1144     $scope.completeToWorking = function () {
1145         angular.forEach( $scope.completedGridControls.selectedItems(), function (c) {
1146             angular.forEach( $scope.completed_copies, function (w, i) {
1147                 if (c === w)
1148                     itemSvc.copies = itemSvc.copies.concat($scope.completed_copies.splice(i,1));
1149             });
1150         });
1151
1152         return true;
1153     }
1154
1155     createSimpleUpdateWatcher = function (field,exclude_copies_with_one_of_these_values) {
1156         return $scope.$watch('working.' + field, function () {
1157             var newval = $scope.working[field];
1158
1159             if (typeof newval != 'undefined') {
1160                 delete $scope.working.MultiMap[field];
1161                 if (angular.isObject(newval)) { // we'll use the pkey
1162                     if (newval.id) newval = newval.id();
1163                     else if (newval.code) newval = newval.code();
1164                 }
1165
1166                 if (""+newval == "" || newval == null) {
1167                     $scope.working[field] = undefined;
1168                     newval = null;
1169                 }
1170
1171                 if ($scope.workingGridControls && $scope.workingGridControls.selectedItems) {
1172                     angular.forEach(
1173                         $scope.workingGridControls.selectedItems(),
1174                         function (cp) {
1175                             if (exclude_copies_with_one_of_these_values
1176                                 && exclude_copies_with_one_of_these_values.indexOf(cp[field](),0) > -1) {
1177                                 return;
1178                             }
1179                             if (cp[field]() !== newval) {
1180                                 cp[field](newval);
1181                                 cp.ischanged(1);
1182                                 $scope.dirty = true;
1183                             }
1184                         }
1185                     );
1186                 }
1187             }
1188         });
1189     }
1190
1191     $scope.working = {
1192         MultiMap: {},
1193         statcats: {},
1194         statcats_multi: {},
1195         statcat_filter: undefined
1196     };
1197
1198     $scope.copyAlertUpdate = function (alerts) {
1199         if (!$scope.in_item_select &&
1200             $scope.workingGridControls &&
1201             $scope.workingGridControls.selectedItems) {
1202             itemSvc.get_copy_alert_types().then(function(ccat) {
1203                 var ccat_map = {};
1204                 $scope.alert_types = ccat;
1205                 angular.forEach(ccat, function(t) {
1206                     ccat_map[t.id()] = t;
1207                 });
1208                 angular.forEach(
1209                     $scope.workingGridControls.selectedItems(),
1210                     function (cp) {
1211                         $scope.dirty = true;
1212                         angular.forEach(alerts, function(alrt) {
1213                             var a = egCore.idl.fromHash('aca', alrt);
1214                             a.isnew(1);
1215                             a.create_staff(egCore.auth.user().id());
1216                             a.alert_type(ccat_map[a.alert_type()]);
1217                             a.ack_time(null);
1218                             a.copy(cp.id());
1219                             cp.copy_alerts().push( a );
1220                         });
1221                         cp.ischanged(1);
1222                     }
1223                 );
1224             });
1225         }
1226     };
1227
1228     $scope.copyNoteUpdate = function (notes) {
1229         if (!$scope.in_item_select &&
1230             $scope.workingGridControls &&
1231             $scope.workingGridControls.selectedItems) {
1232             angular.forEach(
1233                 $scope.workingGridControls.selectedItems(),
1234                 function (cp) {
1235                     $scope.dirty = true;
1236                     angular.forEach(notes, function(note) {
1237                         var n = egCore.idl.fromHash('acpn', note);
1238                         n.isnew(1);
1239                         n.creator(egCore.auth.user().id());
1240                         n.owning_copy(cp.id());
1241                         cp.notes().push( n );
1242                     });
1243                     cp.ischanged(1);
1244                 }
1245             );
1246
1247         }
1248     }
1249
1250     $scope.statcatUpdate = function (id) {
1251         var newval = $scope.working.statcats[id];
1252
1253         if (typeof newval != 'undefined') {
1254             if (angular.isObject(newval)) { // we'll use the pkey
1255                 newval = newval.id();
1256             }
1257     
1258             if (""+newval == "" || newval == null) {
1259                 $scope.working.statcats[id] = undefined;
1260                 newval = null;
1261             }
1262     
1263             if (!$scope.in_item_select && $scope.workingGridControls && $scope.workingGridControls.selectedItems) {
1264                 angular.forEach(
1265                     $scope.workingGridControls.selectedItems(),
1266                     function (cp) {
1267                         $scope.dirty = true;
1268
1269                         cp.stat_cat_entries(
1270                             angular.forEach( cp.stat_cat_entries(), function (e) {
1271                                 if (e.stat_cat() == id) { // mark deleted
1272                                     e.isdeleted(1);
1273                                 }
1274                             })
1275                         );
1276     
1277                         if (newval) {
1278                             var e = new egCore.idl.asce();
1279                             e.isnew( 1 );
1280                             e.stat_cat( id );
1281                             e.id(newval);
1282
1283                             cp.stat_cat_entries(
1284                                 cp.stat_cat_entries() ?
1285                                     cp.stat_cat_entries().concat([ e ]) :
1286                                     [ e ]
1287                             );
1288
1289                         }
1290
1291                         // trim out all deleted ones; the API used to
1292                         // do the update doesn't actually consult
1293                         // isdeleted for stat cat entries
1294                         if (cp.stat_cat_entries()) {
1295                             cp.stat_cat_entries(
1296                                 cp.stat_cat_entries().filter(function (e) {
1297                                     return !Boolean(e.isdeleted());
1298                                 })
1299                             );
1300                         }
1301    
1302                         cp.ischanged(1);
1303                     }
1304                 );
1305             }
1306         }
1307     }
1308
1309     var dataKey = $routeParams.dataKey;
1310     console.debug('dataKey: ' + dataKey);
1311
1312     if ((dataKey && dataKey.length > 0) || $scope.edit_templates) {
1313
1314         $scope.templates = {};
1315         $scope.template_name = '';
1316         $scope.template_name_list = [];
1317
1318         $scope.fetchTemplates = function () {
1319             itemSvc.get_acp_templates().then(function(t) {
1320                 if (t) {
1321                     $scope.templates = t;
1322                     $scope.template_name_list = Object.keys(t).sort();
1323                 }
1324             });
1325             egCore.hatch.getItem('cat.copy.last_template').then(function(t) {
1326                 if (t) $scope.template_name = t;
1327             });
1328         }
1329         $scope.fetchTemplates();
1330
1331         $scope.applyTemplate = function (n) {
1332             angular.forEach($scope.templates[n], function (v,k) {
1333                 if (k == 'circ_lib') {
1334                     $scope.working[k] = egCore.org.get(v);
1335                 } else if (k == 'copy_notes' && v.length) {
1336                     $scope.copyNoteUpdate(v);
1337                 } else if (k == 'copy_alerts' && v.length) {
1338                     $scope.copyAlertUpdate(v);
1339                 } else if (!angular.isObject(v)) {
1340                     $scope.working[k] = angular.copy(v);
1341                 } else {
1342                     angular.forEach(v, function (sv,sk) {
1343                         if (k == 'callnumber') {
1344                             angular.forEach(v, function (cnv,cnk) {
1345                                 $scope.batch[cnk] = cnv;
1346                             });
1347                             $scope.applyBatchCNValues();
1348                         } else {
1349                             $scope.working[k][sk] = angular.copy(sv);
1350                             if (k == 'statcats') $scope.statcatUpdate(sk);
1351                         }
1352                     });
1353                 }
1354                 delete $scope.working.MultiMap[k];
1355             });
1356             egCore.hatch.setItem('cat.copy.last_template', n);
1357         }
1358
1359         $scope.copytab = 'working';
1360         $scope.tab = 'edit';
1361         $scope.summaryRecord = null;
1362         $scope.record_id = null;
1363         $scope.data = {};
1364         $scope.completed_copies = [];
1365         $scope.location_orgs = [];
1366         $scope.location_cache = {};
1367         $scope.statcats = [];
1368         if (!$scope.batch) $scope.batch = {};
1369
1370         $scope.applyBatchCNValues = function () {
1371             if ($scope.data.tree) {
1372                 angular.forEach($scope.data.tree, function(cn_hash) {
1373                     angular.forEach(cn_hash, function(copies) {
1374                         angular.forEach(copies, function(cp) {
1375                             if (typeof $scope.batch.classification != 'undefined' && $scope.batch.classification != '') {
1376                                 var label_class = $scope.classification_list.filter(function(p){ return p.id() == $scope.batch.classification })[0];
1377                                 cp.call_number().label_class(label_class);
1378                                 cp.call_number().ischanged(1);
1379                                 $scope.dirty = true;
1380                             }
1381                             if (typeof $scope.batch.prefix != 'undefined' && $scope.batch.prefix != '') {
1382                                 var prefix = $scope.prefix_list.filter(function(p){ return p.id() == $scope.batch.prefix })[0];
1383                                 cp.call_number().prefix(prefix);
1384                                 cp.call_number().ischanged(1);
1385                                 $scope.dirty = true;
1386                             }
1387                             if (typeof $scope.batch.label != 'undefined' && $scope.batch.label != '') {
1388                                 cp.call_number().label($scope.batch.label);
1389                                 cp.call_number().ischanged(1);
1390                                 $scope.dirty = true;
1391                             }
1392                             if (typeof $scope.batch.suffix != 'undefined' && $scope.batch.suffix != '') {
1393                                 var suffix = $scope.suffix_list.filter(function(p){ return p.id() == $scope.batch.suffix })[0];
1394                                 cp.call_number().suffix(suffix);
1395                                 cp.call_number().ischanged(1);
1396                                 $scope.dirty = true;
1397                             }
1398                         });
1399                     });
1400                 });
1401             }
1402         }
1403
1404         $scope.clearWorking = function () {
1405             angular.forEach($scope.working, function (v,k,o) {
1406                 if (!angular.isObject(v)) {
1407                     if (typeof v != 'undefined')
1408                         $scope.working[k] = undefined;
1409                 } else if (k != 'circ_lib') {
1410                     angular.forEach(v, function (sv,sk) {
1411                         if (typeof v != 'undefined')
1412                             $scope.working[k][sk] = undefined;
1413                     });
1414                 }
1415             });
1416             $scope.working.circ_lib = undefined; // special
1417         }
1418
1419         $scope.completedGridDataProvider = egGridDataProvider.instance({
1420             get : function(offset, count) {
1421                 //return provider.arrayNotifier(itemSvc.copies, offset, count);
1422                 return this.arrayNotifier($scope.completed_copies, offset, count);
1423             }
1424         });
1425
1426         $scope.completedGridControls = {};
1427
1428         $scope.workingGridDataProvider = egGridDataProvider.instance({
1429             get : function(offset, count) {
1430                 //return provider.arrayNotifier(itemSvc.copies, offset, count);
1431                 return this.arrayNotifier(itemSvc.copies, offset, count);
1432             }
1433         });
1434
1435         $scope.workingGridControls = {};
1436         $scope.add_vols_copies = false;
1437         $scope.is_fast_add = false;
1438
1439         // Generate some functions for selecting items by column value in the working grid
1440         angular.forEach(
1441             ['circulate','status','circ_lib','ref','location','opac_visible','circ_modifier','price',
1442              'loan_duration','cost','circ_as_type','deposit','holdable','deposit_amount','age_protect',
1443              'mint_condition','fine_level','floating'],
1444             function (field) {
1445                 $scope['select_by_' + field] = function (x) {
1446                     $scope.workingGridControls.selectItemsByValue(field,x);
1447                 }
1448             }
1449         );
1450
1451         var truthy = /^t|1/;
1452         $scope.labelYesNo = function (x) {
1453             return truthy.test(x) ? egCore.strings.YES : egCore.strings.NO;
1454         }
1455
1456         $scope.orgShortname = function (x) {
1457             return egCore.org.get(x).shortname();
1458         }
1459
1460         $scope.statusName = function (x) {
1461             var s = $scope.status_list.filter(function(y) {
1462                 return y.id() == x;
1463             });
1464
1465             return s[0].name();
1466         }
1467
1468         $scope.locationName = function (x) {
1469             var s = $scope.location_list.filter(function(y) {
1470                 return y.id() == x;
1471             });
1472
1473             return $scope.i18n.ou_qualified_location_name(s[0]);
1474         }
1475
1476         $scope.durationLabel = function (x) {
1477             return [egCore.strings.SHORT, egCore.strings.NORMAL, egCore.strings.EXTENDED][-1 + x]
1478         }
1479
1480         $scope.fineLabel = function (x) {
1481             return [egCore.strings.LOW, egCore.strings.NORMAL, egCore.strings.HIGH][-1 + x]
1482         }
1483
1484         $scope.circTypeValue = function (x) {
1485             if (x === null || x === undefined) return egCore.strings.UNSET;
1486             var s = $scope.circ_type_list.filter(function(y) {
1487                 return y.code() == x;
1488             });
1489
1490             return s[0].value();
1491         }
1492
1493         $scope.ageprotectName = function (x) {
1494             if (x === null || x === undefined) return egCore.strings.UNSET;
1495             var s = $scope.age_protect_list.filter(function(y) {
1496                 return y.id() == x;
1497             });
1498
1499             return s[0].name();
1500         }
1501
1502         $scope.floatingName = function (x) {
1503             if (x === null || x === undefined) return egCore.strings.UNSET;
1504             var s = $scope.floating_list.filter(function(y) {
1505                 return y.id() == x;
1506             });
1507
1508             return s[0].name();
1509         }
1510
1511         $scope.circmodName = function (x) {
1512             if (x === null || x === undefined) return egCore.strings.UNSET;
1513             var s = $scope.circ_modifier_list.filter(function(y) {
1514                 return y.code() == x;
1515             });
1516
1517             return s[0].name();
1518         }
1519
1520         egNet.request(
1521             'open-ils.actor',
1522             'open-ils.actor.anon_cache.get_value',
1523             dataKey, 'edit-these-copies'
1524         ).then(function (data) {
1525
1526             if (data) {
1527                 if (data.hide_vols && !$scope.defaults.always_volumes) $scope.show_vols = false;
1528                 if (data.hide_copies) {
1529                     $scope.show_copies = false;
1530                     $scope.only_vols = true;
1531                 }
1532
1533                 $scope.record_id = data.record_id;
1534
1535                 // Fetch defaults 
1536                 $scope.fetchDefaults();
1537
1538                 function fetchRaw () {
1539                     if (!$scope.only_vols) $scope.dirty = true;
1540                     $scope.add_vols_copies = true;
1541
1542                     /* data.raw data structure looks like this:
1543                      * [{
1544                      *      callnumber : $cn_id, // optional, to add a copy to a cn
1545                      *      owner      : $org, // optional, defaults to cn.owning_lib or ws_ou
1546                      *      label      : $cn_label, // optional, to supply a label on a new cn
1547                      *      barcode    : $cp_barcode // optional, to supply a barcode on a new cp
1548                      *      fast_add   : boolean // optional, to specify whether this came
1549                      *                              in as a fast add
1550                      * },...]
1551                      * 
1552                      * All can be left out and a completely empty vol/copy combo will be vivicated.
1553                      */
1554
1555                     var promises = [];
1556                     angular.forEach(
1557                         data.raw,
1558                         function (proto) {
1559                             if (proto.fast_add) $scope.is_fast_add = true;
1560                             if (proto.callnumber) {
1561                                 promises.push(egCore.pcrud.retrieve('acn', proto.callnumber)
1562                                 .then(function(cn) {
1563                                     var cp = new itemSvc.generateNewCopy(
1564                                         cn,
1565                                         proto.owner || cn.owning_lib(),
1566                                         $scope.is_fast_add,
1567                                         ((!$scope.only_vols) ? true : false)
1568                                     );
1569
1570                                     if (proto.barcode) {
1571                                         cp.barcode( proto.barcode );
1572                                         cp.empty_barcode = false;
1573                                     }
1574
1575                                     itemSvc.addCopy(cp)
1576                                 }));
1577                             } else {
1578                                 var cn = new egCore.idl.acn();
1579                                 cn.id( --itemSvc.new_cn_id );
1580                                 cn.isnew( true );
1581                                 cn.prefix( $scope.defaults.prefix || -1 );
1582                                 cn.suffix( $scope.defaults.suffix || -1 );
1583                                 cn.owning_lib( proto.owner || egCore.auth.user().ws_ou() );
1584                                 cn.record( $scope.record_id );
1585                                 egCore.org.settings(
1586                                     ['cat.default_classification_scheme'],
1587                                     cn.owning_lib()
1588                                 ).then(function (val) {
1589                                     cn.label_class(
1590                                         $scope.defaults.classification ||
1591                                         val['cat.default_classification_scheme'] ||
1592                                         1
1593                                     );
1594                                     if (proto.label) {
1595                                         cn.label( proto.label );
1596                                     } else {
1597                                         egCore.net.request(
1598                                             'open-ils.cat',
1599                                             'open-ils.cat.biblio.record.marc_cn.retrieve',
1600                                             $scope.record_id,
1601                                             cn.label_class()
1602                                         ).then(function(cn_array) {
1603                                             if (cn_array.length > 0) {
1604                                                 for (var field in cn_array[0]) {
1605                                                     cn.label( cn_array[0][field] );
1606                                                     break;
1607                                                 }
1608                                             }
1609                                         });
1610                                     }
1611                                 });
1612
1613                                 // If we are adding an empty vol,
1614                                 // this is ultimately just a placeholder copy
1615                                 // which gets removed before saving.
1616                                 // TODO: consider ways to remove this
1617                                 // requirement
1618                                 var cp = new itemSvc.generateNewCopy(
1619                                     cn,
1620                                     proto.owner || cn.owning_lib(),
1621                                     $scope.is_fast_add,
1622                                     true
1623                                 );
1624
1625                                 if (proto.barcode) {
1626                                     cp.barcode( proto.barcode );
1627                                     cp.empty_barcode = false;
1628                                 }
1629
1630                                 itemSvc.addCopy(cp)
1631                             }
1632                         }
1633                     );
1634
1635                     angular.forEach(itemSvc.copies, function(c){
1636                         var cn = c.call_number();
1637                         var copy_id = c.id();
1638                         if (copy_id > 0){
1639                             cn.not_ephemeral = true;
1640                         }
1641                     });
1642
1643                     return $q.all(promises);
1644                 }
1645
1646                 if (data.copies && data.copies.length)
1647                     return itemSvc.fetchIds(data.copies).then(fetchRaw);
1648
1649                 return fetchRaw();
1650
1651             }
1652
1653         }).then( function() {
1654
1655             return itemSvc.fetch_locations(
1656                 itemSvc.copies.map(function(cp){
1657                     return cp.location();
1658                 }).filter(function(e,i,a){
1659                     return a.lastIndexOf(e) === i;
1660                 })
1661             ).then(function(list){
1662                 $scope.data = itemSvc;
1663                 $scope.location_list = list;
1664                 $scope.workingGridDataProvider.refresh();
1665             });
1666
1667         });
1668
1669         $scope.can_save = false;
1670         function check_saveable () {
1671             var can_save = true;
1672
1673             angular.forEach(
1674                 itemSvc.copies,
1675                 function (i) {
1676                     if (!$scope.only_vols) {
1677                         if (i.duplicate_barcode || i.empty_barcode || i.call_number().empty_label) {
1678                             can_save = false;
1679                         }
1680                     } else if (i.call_number().empty_label) {
1681                         can_save = false;
1682                     }
1683                 }
1684             );
1685
1686             if (!$scope.only_vols && $scope.forms.myForm && $scope.forms.myForm.$invalid) {
1687                 can_save = false;
1688             }
1689
1690             $scope.can_save = can_save;
1691         }
1692
1693         $scope.disableSave = function () {
1694             check_saveable();
1695             return !$scope.can_save;
1696         }
1697
1698         $scope.focusNextFirst = function(prev_lib,prev_bc) {
1699             var n;
1700             var yep = false;
1701             angular.forEach(Object.keys($scope.data.tree).sort(), function (lib) {
1702                 if (n) return;
1703
1704                 if (lib == prev_lib) {
1705                     yep = true;
1706                     return;
1707                 }
1708
1709                 if (yep) n = lib;
1710             });
1711
1712             if (n) {
1713                 var first_cn = Object.keys($scope.data.tree[n])[0];
1714                 var next = '#' + first_cn + '_' + $scope.data.tree[n][first_cn][0].id();
1715                 var el = $(next);
1716                 if (el) {
1717                     if (!itemSvc.currently_generating) el.focus();
1718                     if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
1719                         itemSvc.nextBarcode(prev_bc).then(function(bc){
1720                             el.focus();
1721                             el.val(bc);
1722                             el.trigger('change');
1723                         });
1724                     } else {
1725                         itemSvc.currently_generating = false;
1726                     }
1727                 }
1728             }
1729         }
1730
1731         $scope.in_item_select = false;
1732         $scope.afterItemSelect = function() { $scope.in_item_select = false };
1733         $scope.handleItemSelect = function (item_list) {
1734             if (item_list && item_list.length > 0) {
1735                 $scope.in_item_select = true;
1736
1737                 angular.forEach(Object.keys($scope.defaults.attributes), function (attr) {
1738
1739                     var value_hash = {};
1740                     var value_list = [];
1741                     angular.forEach(item_list, function (item) {
1742                         if (item[attr]) {
1743                             var v = item[attr]()
1744                             if (angular.isObject(v)) {
1745                                 if (v.id) v = v.id();
1746                                 else if (v.code) v = v.code();
1747                             }
1748                             value_list.push(v);
1749                             value_hash[v] = 1;
1750                         }
1751                     });
1752
1753                     $scope.working.MultiMap[attr] = value_list;
1754
1755                     if (Object.keys(value_hash).length == 1) {
1756                         if (attr == 'circ_lib') {
1757                             $scope.working[attr] = egCore.org.get(item_list[0][attr]());
1758                         } else {
1759                             $scope.working[attr] = item_list[0][attr]();
1760                         }
1761                     } else {
1762                         $scope.working[attr] = undefined;
1763                     }
1764                 });
1765
1766                 angular.forEach($scope.statcats, function (sc) {
1767
1768                     var counter = -1;
1769                     var value_hash = {};
1770                     var none = false;
1771                     angular.forEach(item_list, function (item) {
1772                         if (item.stat_cat_entries()) {
1773                             if (item.stat_cat_entries().length > 0) {
1774                                 var right_sc = item.stat_cat_entries().filter(function (e) {
1775                                     return e.stat_cat() == sc.id() && !Boolean(e.isdeleted());
1776                                 });
1777
1778                                 if (right_sc.length > 0) {
1779                                     value_hash[right_sc[0].id()] = right_sc[0].id();
1780                                 } else {
1781                                     none = true;
1782                                 }
1783                             } else {
1784                                 none = true;
1785                             }
1786                         } else {
1787                             none = true;
1788                         }
1789                     });
1790
1791                     if (!none && Object.keys(value_hash).length == 1) {
1792                         $scope.working.statcats[sc.id()] = value_hash[Object.keys(value_hash)[0]];
1793                         $scope.working.statcats_multi[sc.id()] = false;
1794                     } else if (item_list.length > 1 && Object.keys(value_hash).length > 0) {
1795                         $scope.working.statcats[sc.id()] = undefined;
1796                         $scope.working.statcats_multi[sc.id()] = true;
1797                     } else {
1798                         $scope.working.statcats[sc.id()] = undefined;
1799                         $scope.working.statcats_multi[sc.id()] = false;
1800                     }
1801
1802                 });
1803
1804             } else {
1805                 $scope.clearWorking();
1806             }
1807
1808         }
1809
1810         $scope.$watch('data.copies.length', function () {
1811             if ($scope.data.copies) {
1812                 var base_orgs = $scope.data.copies.map(function(cp){
1813                     if (isNaN(cp.circ_lib())) return Number(cp.circ_lib().id());
1814                     return Number(cp.circ_lib());
1815                 }).concat(
1816                     $scope.data.copies.map(function(cp){
1817                         if (isNaN(cp.call_number().owning_lib())) return Number(cp.call_number().owning_lib().id());
1818                         return Number(cp.call_number().owning_lib());
1819                     })
1820                 ).concat(
1821                     [egCore.auth.user().ws_ou()]
1822                 ).filter(function(e,i,a){
1823                     return a.lastIndexOf(e) === i;
1824                 });
1825
1826                 var all_orgs = [];
1827                 angular.forEach(base_orgs, function(o) {
1828                     all_orgs = all_orgs.concat( egCore.org.fullPath(o, true) );
1829                 });
1830
1831                 var final_orgs = all_orgs.filter(function(e,i,a){
1832                     return a.lastIndexOf(e) === i;
1833                 }).sort(function(a, b){return a-b});
1834
1835                 if ($scope.location_orgs.toString() != final_orgs.toString()) {
1836                     $scope.location_orgs = final_orgs;
1837                     if ($scope.location_orgs.length) {
1838                         itemSvc.get_locations_by_org($scope.location_orgs).then(function(list){
1839                             angular.forEach(list, function(l) {
1840                                 $scope.location_cache[ ''+l.id() ] = l;
1841                             });
1842                             $scope.location_list = list;
1843                         }).then(function() {
1844                             $scope.statcat_filter_list = [];
1845                             angular.forEach($scope.location_orgs, function (o) {
1846                                 $scope.statcat_filter_list.push(egCore.org.get(o));
1847                             });
1848
1849                             itemSvc.get_statcats($scope.location_orgs).then(function(list){
1850                                 $scope.statcats = list;
1851                                 angular.forEach($scope.statcats, function (s) {
1852
1853                                     if (!$scope.working)
1854                                         $scope.working = { statcats_multi: {}, statcats: {}, statcat_filter: undefined};
1855                                     if (!$scope.working.statcats_multi)
1856                                         $scope.working.statcats_multi = {};
1857                                     if (!$scope.working.statcats)
1858                                         $scope.working.statcats = {};
1859
1860                                     if (!$scope.in_item_select) {
1861                                         $scope.working.statcats[s.id()] = undefined;
1862                                     }
1863                                     createStatcatUpdateWatcher(s.id());
1864                                 });
1865                                 $scope.in_item_select = false;
1866                                 // do a refresh here to work around a race
1867                                 // condition that can result in stat cats
1868                                 // not being selected.
1869                                 $scope.workingGridDataProvider.refresh();
1870                             });
1871                         });
1872                     }
1873                 } else {
1874                     $scope.workingGridDataProvider.refresh();
1875                 }
1876             }
1877         });
1878
1879         $scope.statcat_visible = function (sc_owner) {
1880             var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
1881             angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
1882                 if ($scope.working.statcat_filter == ancestor_org.id())
1883                     visible = true;
1884             });
1885             return visible;
1886         }
1887
1888         $scope.suffix_list = [];
1889         itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
1890             $scope.suffix_list = list;
1891         });
1892
1893         $scope.prefix_list = [];
1894         itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
1895             $scope.prefix_list = list;
1896         });
1897
1898         $scope.classification_list = [];
1899         itemSvc.get_classifications().then(function(list){
1900             $scope.classification_list = list;
1901         });
1902
1903         $scope.$watch('completed_copies.length', function () {
1904             $scope.completedGridDataProvider.refresh();
1905         });
1906
1907         $scope.location_list = [];
1908         createSimpleUpdateWatcher('location');
1909
1910         $scope.status_list = [];
1911         itemSvc.get_magic_statuses().then(function(list){
1912             $scope.magic_status_list = list;
1913             createSimpleUpdateWatcher('status',$scope.magic_status_list);
1914         });
1915         itemSvc.get_statuses().then(function(list){
1916             $scope.status_list = list;
1917         });
1918
1919         $scope.circ_modifier_list = [];
1920         itemSvc.get_circ_mods().then(function(list){
1921             $scope.circ_modifier_list = list;
1922         });
1923         createSimpleUpdateWatcher('circ_modifier');
1924
1925         $scope.circ_type_list = [];
1926         itemSvc.get_circ_types().then(function(list){
1927             $scope.circ_type_list = list;
1928         });
1929         createSimpleUpdateWatcher('circ_as_type');
1930
1931         $scope.age_protect_list = [];
1932         itemSvc.get_age_protects().then(function(list){
1933             $scope.age_protect_list = list;
1934         });
1935         createSimpleUpdateWatcher('age_protect');
1936
1937         $scope.floating_list = [];
1938         itemSvc.get_floating_groups().then(function(list){
1939             $scope.floating_list = list;
1940         });
1941         createSimpleUpdateWatcher('floating');
1942
1943         createSimpleUpdateWatcher('circ_lib');
1944         createSimpleUpdateWatcher('circulate');
1945         createSimpleUpdateWatcher('holdable');
1946         createSimpleUpdateWatcher('fine_level');
1947         createSimpleUpdateWatcher('loan_duration');
1948         createSimpleUpdateWatcher('price');
1949         createSimpleUpdateWatcher('cost');
1950         createSimpleUpdateWatcher('deposit');
1951         createSimpleUpdateWatcher('deposit_amount');
1952         createSimpleUpdateWatcher('mint_condition');
1953         createSimpleUpdateWatcher('opac_visible');
1954         createSimpleUpdateWatcher('ref');
1955
1956         $scope.saveCompletedCopies = function (and_exit) {
1957             var cnHash = {};
1958             var perCnCopies = {};
1959             angular.forEach( $scope.completed_copies, function (cp) {
1960                 var cn = cp.call_number();
1961                 var cn_cps = cp.call_number().copies();
1962                 cp.call_number().copies([]);
1963                 var cn_id = cp.call_number().id();
1964                 cp.call_number(cn_id); // prevent loops in JSON-ification
1965                 if (!cnHash[cn_id]) {
1966                     cnHash[cn_id] = egCore.idl.Clone(cn);
1967                     perCnCopies[cn_id] = [egCore.idl.Clone(cp)];
1968                 } else {
1969                     perCnCopies[cn_id].push(egCore.idl.Clone(cp));
1970                 }
1971                 cp.call_number(cn); // put the data back
1972                 cp.call_number().copies(cn_cps);
1973                 if (typeof cnHash[cn_id].prefix() == 'object')
1974                     cnHash[cn_id].prefix(cnHash[cn_id].prefix().id()); // un-object-ize some fields
1975                 if (typeof cnHash[cn_id].suffix() == 'object')
1976                     cnHash[cn_id].suffix(cnHash[cn_id].suffix().id()); // un-object-ize some fields
1977             });
1978
1979             if ($scope.only_vols) { // strip off copies when we're in vol-only mode
1980                 angular.forEach(cnHash, function (v, k) {
1981                     cnHash[k].copies([]);
1982                 });
1983             } else {
1984                 angular.forEach(perCnCopies, function (v, k) {
1985                     cnHash[k].copies(v);
1986                 });
1987             }
1988
1989             cnList = [];
1990             angular.forEach(cnHash, function (v, k) {
1991                 cnList.push(v);
1992             });
1993
1994             egNet.request(
1995                 'open-ils.cat',
1996                 'open-ils.cat.asset.volume.fleshed.batch.update.override',
1997                 egCore.auth.token(), cnList, 1, { auto_merge_vols : 1, create_parts : 1, return_copy_ids : 1 }
1998             ).then(function(copy_ids) {
1999                 if (and_exit) {
2000                     $scope.dirty = false;
2001                     if ($scope.defaults.print_item_labels) {
2002                         egCore.net.request(
2003                             'open-ils.actor',
2004                             'open-ils.actor.anon_cache.set_value',
2005                             null, 'print-labels-these-copies', {
2006                                 copies : copy_ids
2007                             }
2008                         ).then(function(key) {
2009                             if (key) {
2010                                 var url = egCore.env.basePath + 'cat/printlabels/' + key;
2011                                 $timeout(function() { $window.open(url, '_blank') }).then(
2012                                     function() { $timeout(function(){$window.close()}); }
2013                                 );
2014                             } else {
2015                                 alert('Could not create anonymous cache key!');
2016                             }
2017                         });
2018                     } else {
2019                         $timeout(function(){
2020                             if (typeof BroadcastChannel != 'undefined') {
2021                                 var bChannel = new BroadcastChannel("eg.holdings.update");
2022                                 var bre_ids = cnList && cnList.length > 0 ? cnList.map(function(cn){ return Number(cn.record()) }) : [];
2023                                 var cn_ids = cnList && cnList.length > 0 ? cnList.map(function(cn){ return cn.id() }) : [];
2024                                 bChannel.postMessage({
2025                                     copies : copy_ids,
2026                                     volumes: cn_ids,
2027                                     records: bre_ids
2028                                 });
2029                             }
2030
2031                             $window.close();
2032                         });
2033                     }
2034                 }
2035             });
2036         }
2037
2038         $scope.saveAndContinue = function () {
2039             $scope.saveCompletedCopies(false);
2040         }
2041
2042         $scope.workingSaveAndExit = function () {
2043             $scope.workingToComplete();
2044             $scope.saveAndExit();
2045         }
2046
2047         $scope.saveAndExit = function () {
2048             $scope.saveCompletedCopies(true);
2049         }
2050
2051     }
2052
2053     $scope.copy_notes_dialog = function(copy_list) {
2054         var default_pub = Boolean($scope.defaults.copy_notes_pub);
2055         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2056
2057         return $uibModal.open({
2058             templateUrl: './cat/volcopy/t_copy_notes',
2059             backdrop: 'static',
2060             animation: true,
2061             controller:
2062                    ['$scope','$uibModalInstance',
2063             function($scope , $uibModalInstance) {
2064                 $scope.focusNote = true;
2065                 $scope.note = {
2066                     creator : egCore.auth.user().id(),
2067                     title   : '',
2068                     value   : '',
2069                     pub     : default_pub,
2070                 };
2071
2072                 $scope.require_initials = false;
2073                 egCore.org.settings([
2074                     'ui.staff.require_initials.copy_notes'
2075                 ]).then(function(set) {
2076                     $scope.require_initials_ous = Boolean(set['ui.staff.require_initials.copy_notes']);
2077                 });
2078
2079                 $scope.are_initials_required = function() {
2080                   $scope.require_initials = $scope.require_initials_ous && ($scope.note.value.length > 0 || $scope.note.title.length > 0);
2081                 };
2082
2083                 $scope.$watch('note.value.length', $scope.are_initials_required);
2084                 $scope.$watch('note.title.length', $scope.are_initials_required);
2085
2086                 $scope.note_list = [];
2087                 if (copy_list.length == 1) {
2088                     $scope.note_list = copy_list[0].notes();
2089                 }
2090
2091                 $scope.ok = function(note) {
2092
2093                     if (note.value.length > 0 || note.title.length > 0) {
2094                         if ($scope.initials) {
2095                             note.value = egCore.strings.$replace(
2096                                 egCore.strings.COPY_NOTE_INITIALS, {
2097                                 value : note.value,
2098                                 initials : $scope.initials,
2099                                 ws_ou : egCore.org.get(
2100                                     egCore.auth.user().ws_ou()).shortname()
2101                             });
2102                         }
2103
2104                         angular.forEach(copy_list, function (cp) {
2105                             if (!angular.isArray(cp.notes())) cp.notes([]);
2106                             var n = new egCore.idl.acpn();
2107                             n.isnew(1);
2108                             n.creator(note.creator);
2109                             n.pub(note.pub);
2110                             n.title(note.title);
2111                             n.value(note.value);
2112                             n.owning_copy(cp.id());
2113                             cp.notes().push( n );
2114                         });
2115                     }
2116
2117                     $uibModalInstance.close();
2118                 }
2119
2120                 $scope.cancel = function($event) {
2121                     $uibModalInstance.dismiss();
2122                     $event.preventDefault();
2123                 }
2124             }]
2125         });
2126     }
2127
2128     $scope.copy_tags_dialog = function(copy_list) {
2129         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2130
2131         return $uibModal.open({
2132             templateUrl: './cat/volcopy/t_copy_tags',
2133             backdrop: 'static',
2134             animation: true,
2135             controller:
2136                    ['$scope','$uibModalInstance',
2137             function($scope , $uibModalInstance) {
2138
2139                 $scope.tag_map = [];
2140                 var tag_hash = {};
2141                 var shared_tags = {};
2142                 angular.forEach(copy_list, function (cp) {
2143                     angular.forEach(cp.tags(), function(tag) {
2144                         if (!(tag.tag().id() in shared_tags)) {
2145                             shared_tags[tag.tag().id()] = 1;
2146                         } else {
2147                             shared_tags[tag.tag().id()]++;
2148                         }
2149                         if (!(tag.tag().id() in tag_hash)) {
2150                             tag_hash[tag.tag().id()] = tag;
2151                         }
2152                     });
2153                 });
2154                 angular.forEach(tag_hash, function(value, key) {
2155                     if (shared_tags[key] == copy_list.length) {
2156                         $scope.tag_map.push(value);
2157                     }
2158                 });
2159
2160                 $scope.tag_types = [];
2161                 egCore.pcrud.retrieveAll('cctt', {order_by : { cctt : 'label' }}, {atomic : true}).then(function(list) {
2162                     $scope.tag_types = list;
2163                     $scope.tag_type = $scope.tag_types[0].code(); // just pick a default
2164                 });
2165
2166                 $scope.getTags = function(val) {
2167                     return egCore.pcrud.search('acpt',
2168                         { 
2169                             owner :  egCore.org.fullPath(egCore.auth.user().ws_ou(), true),
2170                             label : { 'startwith' : {
2171                                         transform: 'evergreen.lowercase',
2172                                         value : [ 'evergreen.lowercase', val ]
2173                                     }},
2174                             tag_type : $scope.tag_type
2175                         },
2176                         { order_by : { 'acpt' : ['label'] } }, { atomic: true }
2177                     ).then(function(list) {
2178                         return list.map(function(item) {
2179                             return item.label() + " (" + egCore.org.get(item.owner()).shortname() + ")";
2180                         });
2181                     });
2182                 }
2183
2184                 $scope.addTag = function() {
2185                     var tagLabel = $scope.selectedLabel;
2186                     // clear the typeahead
2187                     $scope.selectedLabel = "";
2188
2189                     // first, check tags already associated with the copy
2190                     var foundMatch = false;
2191                     angular.forEach($scope.tag_map, function(tag) {
2192                         if (tag.tag().label() ==  tagLabel && tag.tag().tag_type() == $scope.tag_type) {
2193                             foundMatch = true;
2194                             if (tag.isdeleted()) tag.isdeleted(0); // just deleting the mapping
2195                         }
2196                     });
2197                     if (!foundMatch) {
2198                         egCore.pcrud.search('acpt',
2199                             { 
2200                                 owner : egCore.org.fullPath(egCore.auth.user().ws_ou(), true),
2201                                 label : tagLabel,
2202                                 tag_type : $scope.tag_type
2203                             },
2204                             { order_by : { 'acpt' : ['label'] } }, { atomic: true }
2205                         ).then(function(list) {
2206                             if (list.length > 0) {
2207                                 var newMap = new egCore.idl.acptcm();
2208                                 newMap.isnew(1);
2209                                 newMap.copy(copy_list[0].id());
2210                                 newMap.tag(egCore.idl.Clone(list[0]));
2211                                 $scope.tag_map.push(newMap);
2212                             } else {
2213                                 var newTag = new egCore.idl.acpt();
2214                                 newTag.isnew(1);
2215                                 newTag.owner(egCore.auth.user().ws_ou());
2216                                 newTag.label(tagLabel);
2217                                 newTag.pub('t');
2218                                 newTag.tag_type($scope.tag_type);
2219
2220                                 var newMap = new egCore.idl.acptcm();
2221                                 newMap.isnew(1);
2222                                 newMap.copy(copy_list[0].id());
2223                                 newMap.tag(newTag);
2224                                 $scope.tag_map.push(newMap);
2225                             }
2226                         });
2227                     }
2228                 }
2229
2230                 $scope.ok = function(note) {
2231                     // in the multi-item case, this works OK for
2232                     // adding new maps to existing tags, but doesn't handle
2233                     // all possibilities
2234                     angular.forEach(copy_list, function (cp) {
2235                         cp.tags($scope.tag_map);
2236                     });
2237                     $uibModalInstance.close();
2238                 }
2239
2240                 $scope.cancel = function($event) {
2241                     $uibModalInstance.dismiss();
2242                     $event.preventDefault();
2243                 }
2244             }]
2245         });
2246     }
2247
2248     $scope.copy_alerts_dialog = function(copy_list) {
2249         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2250
2251         return $uibModal.open({
2252             templateUrl: './cat/volcopy/t_copy_alerts',
2253             animation: true,
2254             controller:
2255                    ['$scope','$uibModalInstance',
2256             function($scope , $uibModalInstance) {
2257
2258                 itemSvc.get_copy_alert_types().then(function(ccat) {
2259                     $scope.alert_types = ccat;
2260                 });
2261
2262                 $scope.focusNote = true;
2263                 $scope.copy_alert = {
2264                     create_staff : egCore.auth.user().id(),
2265                     note         : '',
2266                     temp         : false
2267                 };
2268
2269                 egCore.hatch.getItem('cat.copy.alerts.last_type').then(function(t) {
2270                     if (t) $scope.copy_alert.alert_type = t;
2271                 });
2272
2273                 if (copy_list.length == 1) {
2274                     $scope.copy_alert_list = copy_list[0].copy_alerts();
2275                 }
2276
2277                 $scope.ok = function(copy_alert) {
2278
2279                     if (typeof(copy_alert.note) != 'undefined' &&
2280                         copy_alert.note != '') {
2281                         angular.forEach(copy_list, function (cp) {
2282                             var a = new egCore.idl.aca();
2283                             a.isnew(1);
2284                             a.create_staff(copy_alert.create_staff);
2285                             a.note(copy_alert.note);
2286                             a.temp(copy_alert.temp ? 't' : 'f');
2287                             a.copy(cp.id());
2288                             a.ack_time(null);
2289                             a.alert_type(
2290                                 $scope.alert_types.filter(function(at) {
2291                                     return at.id() == copy_alert.alert_type;
2292                                 })[0]
2293                             );
2294                             cp.copy_alerts().push( a );
2295                         });
2296
2297                         if (copy_alert.alert_type) {
2298                             egCore.hatch.setItem(
2299                                 'cat.copy.alerts.last_type',
2300                                 copy_alert.alert_type
2301                             );
2302                         }
2303
2304                     }
2305
2306                     $uibModalInstance.close();
2307                 }
2308
2309                 $scope.cancel = function($event) {
2310                     $uibModalInstance.dismiss();
2311                     $event.preventDefault();
2312                 }
2313             }]
2314         });
2315     }
2316
2317 }])
2318
2319 .directive("egVolTemplate", function () {
2320     return {
2321         restrict: 'E',
2322         replace: true,
2323         template: '<div ng-include="'+"'/eg/staff/cat/volcopy/t_attr_edit'"+'"></div>',
2324         scope: {
2325             editTemplates: '=',
2326         },
2327         controller : ['$scope','$window','itemSvc','egCore','ngToast','$uibModal',
2328             function ( $scope , $window , itemSvc , egCore , ngToast , $uibModal) {
2329
2330                 $scope.i18n = egCore.i18n;
2331
2332                 $scope.defaults = { // If defaults are not set at all, allow everything
2333                     barcode_checkdigit : false,
2334                     auto_gen_barcode : false,
2335                     statcats : true,
2336                     copy_notes : true,
2337                     copy_tags : true,
2338                     copy_alerts : true,
2339                     attributes : {
2340                         status : true,
2341                         loan_duration : true,
2342                         fine_level : true,
2343                         cost : true,
2344                         alerts : true,
2345                         deposit : true,
2346                         deposit_amount : true,
2347                         opac_visible : true,
2348                         price : true,
2349                         circulate : true,
2350                         mint_condition : true,
2351                         circ_lib : true,
2352                         ref : true,
2353                         circ_modifier : true,
2354                         circ_as_type : true,
2355                         location : true,
2356                         holdable : true,
2357                         age_protect : true,
2358                         floating : true
2359                     }
2360                 };
2361
2362                 $scope.fetchDefaults = function () {
2363                     egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
2364                         if (t) {
2365                             $scope.defaults = t;
2366                             $scope.working.statcat_filter = $scope.defaults.statcat_filter;
2367                             if (
2368                                     typeof $scope.defaults.statcat_filter == 'object' &&
2369                                     Object.keys($scope.defaults.statcat_filter).length > 0
2370                                 ) {
2371                                 // want fieldmapper object here...
2372                                 $scope.defaults.statcat_filter =
2373                                     egCore.idl.Clone($scope.defaults.statcat_filter);
2374                                 // ... and ID here
2375                                 $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
2376                             }
2377                         }
2378                     });
2379                 }
2380                 $scope.fetchDefaults();
2381
2382                 $scope.dirty = false;
2383                 $scope.$watch('dirty',
2384                     function(newVal, oldVal) {
2385                         if (newVal && newVal != oldVal) {
2386                             $($window).on('beforeunload.template', function(){
2387                                 return 'There is unsaved template data!'
2388                             });
2389                         } else {
2390                             $($window).off('beforeunload.template');
2391                         }
2392                     }
2393                 );
2394
2395                 $scope.template_controls = true;
2396
2397                 $scope.fetchTemplates = function () {
2398                     itemSvc.get_acp_templates().then(function(t) {
2399                         if (t) {
2400                             $scope.templates = t;
2401                             $scope.template_name_list = Object.keys(t).sort();
2402                         }
2403                     });
2404                 }
2405                 $scope.fetchTemplates();
2406             
2407                 $scope.applyTemplate = function (n) {
2408                     angular.forEach($scope.templates[n], function (v,k) {
2409                         if (k == 'circ_lib') {
2410                             $scope.working[k] = egCore.org.get(v);
2411                         } else if (angular.isArray(v) || !angular.isObject(v)) {
2412                             $scope.working[k] = angular.copy(v);
2413                         } else {
2414                             angular.forEach(v, function (sv,sk) {
2415                                 if (!(k in $scope.working))
2416                                     $scope.working[k] = {};
2417                                 $scope.working[k][sk] = angular.copy(sv);
2418                             });
2419                         }
2420                     });
2421                     $scope.template_name = '';
2422                 }
2423
2424                 $scope.deleteTemplate = function (n) {
2425                     if (n) {
2426                         delete $scope.templates[n]
2427                         $scope.template_name_list = Object.keys($scope.templates).sort();
2428                         $scope.template_name = '';
2429                         itemSvc.save_acp_templates($scope.templates);
2430                         $scope.$parent.fetchTemplates();
2431                         ngToast.create(egCore.strings.VOL_COPY_TEMPLATE_SUCCESS_DELETE);
2432                     }
2433                 }
2434
2435                 $scope.saveTemplate = function (n) {
2436                     if (n) {
2437                         var tmpl = {};
2438             
2439                         angular.forEach($scope.working, function (v,k) {
2440                             if (angular.isObject(v)) { // we'll use the pkey
2441                                 if (v.id) v = v.id();
2442                                 else if (v.code) v = v.code();
2443                                 else v = angular.copy(v); // Should only be statcats and callnumbers currently
2444                             }
2445             
2446                             tmpl[k] = v;
2447                         });
2448             
2449                         $scope.templates[n] = tmpl;
2450                         $scope.template_name_list = Object.keys($scope.templates).sort();
2451             
2452                         itemSvc.save_acp_templates($scope.templates);
2453                         $scope.$parent.fetchTemplates();
2454
2455                         $scope.dirty = false;
2456                     } else {
2457                         // save all templates, as we might do after an import
2458                         itemSvc.save_acp_templates($scope.templates);
2459                         $scope.$parent.fetchTemplates();
2460                     }
2461                     ngToast.create(egCore.strings.VOL_COPY_TEMPLATE_SUCCESS_SAVE);
2462                 }
2463
2464                 $scope.templates = {};
2465                 $scope.imported_templates = { data : '' };
2466                 $scope.template_name = '';
2467                 $scope.template_name_list = [];
2468
2469                 $scope.$watch('imported_templates.data', function(newVal, oldVal) {
2470                     if (newVal && newVal != oldVal) {
2471                         try {
2472                             var newTemplates = JSON.parse(newVal);
2473                             if (!Object.keys(newTemplates).length) return;
2474                             angular.forEach(Object.keys(newTemplates), function (k) {
2475                                 $scope.templates[k] = newTemplates[k];
2476                             });
2477                             itemSvc.save_acp_templates($scope.templates);
2478                             $scope.fetchTemplates();
2479                         } catch (E) {
2480                             console.log('tried to import an invalid copy template file');
2481                         }
2482                     }
2483                 });
2484
2485                 $scope.tracker = function (x,f) { if (x) return x[f]() };
2486                 $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
2487                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
2488             
2489                 $scope.orgById = function (id) { return egCore.org.get(id) }
2490                 $scope.statusById = function (id) {
2491                     return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
2492                 }
2493                 $scope.locationById = function (id) {
2494                     return $scope.location_cache[''+id];
2495                 }
2496             
2497                 createSimpleUpdateWatcher = function (field) {
2498                     $scope.$watch('working.' + field, function () {
2499                         var newval = $scope.working[field];
2500             
2501                         if (typeof newval != 'undefined') {
2502                             $scope.dirty = true;
2503                             if (angular.isObject(newval)) { // we'll use the pkey
2504                                 if (newval.id) $scope.working[field] = newval.id();
2505                                 else if (newval.code) $scope.working[field] = newval.code();
2506                             }
2507             
2508                             if (""+newval == "" || newval == null) {
2509                                 $scope.working[field] = undefined;
2510                             }
2511             
2512                         }
2513                     });
2514                 }
2515             
2516                 $scope.working = {
2517                     copy_notes: [],
2518                     copy_alerts: [],
2519                     statcats: {},
2520                     statcat_filter: undefined
2521                 };
2522             
2523                 $scope.statcat_visible = function (sc_owner) {
2524                     var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
2525                     angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
2526                         if ($scope.working.statcat_filter == ancestor_org.id())
2527                             visible = true;
2528                     });
2529                     return visible;
2530                 }
2531
2532                 createStatcatUpdateWatcher = function (id) {
2533                     return $scope.$watch('working.statcats[' + id + ']', function () {
2534                         if ($scope.working.statcats) {
2535                             var newval = $scope.working.statcats[id];
2536                 
2537                             if (typeof newval != 'undefined') {
2538                                 $scope.dirty = true;
2539                                 if (angular.isObject(newval)) { // we'll use the pkey
2540                                     newval = newval.id();
2541                                 }
2542                 
2543                                 if (""+newval == "" || newval == null) {
2544                                     $scope.working.statcats[id] = undefined;
2545                                     newval = null;
2546                                 }
2547                 
2548                             }
2549                         }
2550                     });
2551                 }
2552
2553                 $scope.clearWorking = function () {
2554                     angular.forEach($scope.working, function (v,k,o) {
2555                         $scope.working.MultiMap[k] = [];
2556                         if (!angular.isObject(v)) {
2557                             if (typeof v != 'undefined')
2558                                 $scope.working[k] = undefined;
2559                         } else if (k != 'circ_lib') {
2560                             angular.forEach(v, function (sv,sk) {
2561                                 $scope.working[k][sk] = undefined;
2562                             });
2563                         }
2564                     });
2565                     $scope.working.circ_lib = undefined; // special
2566                     $scope.dirty = false;
2567                 }
2568
2569                 $scope.working = {};
2570                 $scope.location_orgs = [];
2571                 $scope.location_cache = {};
2572             
2573                 $scope.location_list = [];
2574                 itemSvc.get_locations_by_org(
2575                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
2576                 ).then(function(list){
2577                     $scope.location_list = list;
2578                 });
2579                 createSimpleUpdateWatcher('location');
2580
2581                 $scope.statcat_filter_list = egCore.org.fullPath( egCore.auth.user().ws_ou() );
2582
2583                 $scope.statcats = [];
2584                 itemSvc.get_statcats(
2585                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
2586                 ).then(function(list){
2587                     $scope.statcats = list;
2588                     angular.forEach($scope.statcats, function (s) {
2589
2590                         if (!$scope.working)
2591                             $scope.working = { statcats: {}, statcat_filter: undefined};
2592                         if (!$scope.working.statcats)
2593                             $scope.working.statcats = {};
2594
2595                         $scope.working.statcats[s.id()] = undefined;
2596                         createStatcatUpdateWatcher(s.id());
2597                     });
2598                 });
2599
2600                 $scope.copy_notes_dialog = function() {
2601                     var default_pub = Boolean($scope.defaults.copy_notes_pub);
2602                     var working = $scope.working;
2603             
2604                     return $uibModal.open({
2605                         templateUrl: './cat/volcopy/t_copy_notes',
2606                         animation: true,
2607                         controller:
2608                             ['$scope','$uibModalInstance',
2609                         function($scope , $uibModalInstance) {
2610                             $scope.focusNote = true;
2611                             $scope.note = {
2612                                 title   : '',
2613                                 value   : '',
2614                                 pub     : default_pub,
2615                             };
2616
2617                             $scope.require_initials = false;
2618                             egCore.org.settings([
2619                                 'ui.staff.require_initials.copy_notes'
2620                             ]).then(function(set) {
2621                                 $scope.require_initials = Boolean(set['ui.staff.require_initials.copy_notes']);
2622                             });
2623
2624                             $scope.note_list = [];
2625                             angular.forEach(working.copy_notes, function(note) {
2626                                 var acpn = egCore.idl.fromHash('acpn', note);
2627                                 $scope.note_list.push(acpn);
2628                             });
2629
2630                             $scope.ok = function(note) {
2631
2632                                 if (!working.copy_notes) {
2633                                     working.copy_notes = [];
2634                                 }
2635
2636                                 // clear slate
2637                                 working.copy_notes.length = 0;
2638                                 angular.forEach($scope.note_list, function(existing_note) {
2639                                     if (!existing_note.isdeleted()) {
2640                                         working.copy_notes.push({
2641                                             pub : existing_note.pub() ? 't' : 'f',
2642                                             title : existing_note.title(),
2643                                             value : existing_note.value()
2644                                         });
2645                                     }
2646                                 });
2647
2648                                 // add new note, if any
2649                                 if (note.initials) note.value += ' [' + note.initials + ']';
2650                                 note.pub = note.pub ? 't' : 'f';
2651                                 if (note.title.length && note.value.length) {
2652                                     working.copy_notes.push(note);
2653                                 }
2654
2655                                 $uibModalInstance.close();
2656                             }
2657
2658                             $scope.cancel = function($event) {
2659                                 $uibModalInstance.dismiss();
2660                                 $event.preventDefault();
2661                             }
2662                         }]
2663                     });
2664                 }
2665             
2666                 $scope.copy_alerts_dialog = function() {
2667                     var working = $scope.working;
2668
2669                     return $uibModal.open({
2670                         templateUrl: './cat/volcopy/t_copy_alerts',
2671                         animation: true,
2672                         controller:
2673                             ['$scope','$uibModalInstance',
2674                         function($scope , $uibModalInstance) {
2675
2676                             itemSvc.get_copy_alert_types().then(function(ccat) {
2677                                 var ccat_map = {};
2678                                 $scope.alert_types = ccat;
2679                                 angular.forEach(ccat, function(t) {
2680                                     ccat_map[t.id()] = t;
2681                                 });
2682                                 $scope.copy_alert_list = [];
2683                                 angular.forEach(working.copy_alerts, function (alrt) {
2684                                     var aca = egCore.idl.fromHash('aca', alrt);
2685                                     aca.alert_type(ccat_map[alrt.alert_type]);
2686                                     aca.ack_time(null);
2687                                     $scope.copy_alert_list.push(aca);
2688                                 });
2689                             });
2690
2691                             $scope.focusNote = true;
2692                             $scope.copy_alert = {
2693                                 note         : '',
2694                                 temp         : false
2695                             };
2696
2697                             $scope.ok = function(copy_alert) {
2698             
2699                                 if (!working.copy_alerts) {
2700                                     working.copy_alerts = [];
2701                                 }
2702                                 // clear slate
2703                                 working.copy_alerts.length = 0;
2704
2705                                 angular.forEach($scope.copy_alert_list, function(alrt) {
2706                                     if (alrt.ack_time() == null) {
2707                                         working.copy_alerts.push({
2708                                             note : alrt.note(),
2709                                             temp : alrt.temp(),
2710                                             alert_type : alrt.alert_type().id()
2711                                         });
2712                                     }
2713                                 });
2714
2715                                 if (typeof(copy_alert.note) != 'undefined' &&
2716                                     copy_alert.note != '') {
2717                                     working.copy_alerts.push({
2718                                         note : copy_alert.note,
2719                                         temp : copy_alert.temp ? 't' : 'f',
2720                                         alert_type : copy_alert.alert_type
2721                                     });
2722                                 }
2723
2724                                 $uibModalInstance.close();
2725                             }
2726
2727                             $scope.cancel = function($event) {
2728                                 $uibModalInstance.dismiss();
2729                                 $event.preventDefault();
2730                             }
2731                         }]
2732                     });
2733                 }
2734
2735                 $scope.status_list = [];
2736                 itemSvc.get_magic_statuses().then(function(list){
2737                     $scope.magic_status_list = list;
2738                 });
2739                 itemSvc.get_statuses().then(function(list){
2740                     $scope.status_list = list;
2741                 });
2742                 createSimpleUpdateWatcher('status');
2743             
2744                 $scope.circ_modifier_list = [];
2745                 itemSvc.get_circ_mods().then(function(list){
2746                     $scope.circ_modifier_list = list;
2747                 });
2748                 createSimpleUpdateWatcher('circ_modifier');
2749             
2750                 $scope.circ_type_list = [];
2751                 itemSvc.get_circ_types().then(function(list){
2752                     $scope.circ_type_list = list;
2753                 });
2754                 createSimpleUpdateWatcher('circ_as_type');
2755             
2756                 $scope.age_protect_list = [];
2757                 itemSvc.get_age_protects().then(function(list){
2758                     $scope.age_protect_list = list;
2759                 });
2760                 createSimpleUpdateWatcher('age_protect');
2761
2762                 $scope.floating_list = [];
2763                 itemSvc.get_floating_groups().then(function(list){
2764                     $scope.floating_list = list;
2765                 });
2766                 createSimpleUpdateWatcher('floating');
2767
2768                 createSimpleUpdateWatcher('circulate');
2769                 createSimpleUpdateWatcher('holdable');
2770                 createSimpleUpdateWatcher('fine_level');
2771                 createSimpleUpdateWatcher('loan_duration');
2772                 createSimpleUpdateWatcher('cost');
2773                 createSimpleUpdateWatcher('deposit');
2774                 createSimpleUpdateWatcher('deposit_amount');
2775                 createSimpleUpdateWatcher('mint_condition');
2776                 createSimpleUpdateWatcher('opac_visible');
2777                 createSimpleUpdateWatcher('ref');
2778
2779                 $scope.suffix_list = [];
2780                 itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
2781                     $scope.suffix_list = list;
2782                 });
2783
2784                 $scope.prefix_list = [];
2785                 itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
2786                     $scope.prefix_list = list;
2787                 });
2788
2789                 $scope.classification_list = [];
2790                 itemSvc.get_classifications().then(function(list){
2791                     $scope.classification_list = list;
2792                 });
2793
2794                 createSimpleUpdateWatcher('working.callnumber.classification');
2795                 createSimpleUpdateWatcher('working.callnumber.prefix');
2796                 createSimpleUpdateWatcher('working.callnumber.suffix');
2797             }
2798         ]
2799     }
2800 })
2801
2802