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