]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
04b19638afb85cc5cd52b5dc057c477830840ed5
[working/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 eg-disabled="record == 0" 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 ng-disabled="record == 0" 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 ng-disabled="record == 0" 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 ng-disabled="record == 0" 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 ng-disabled="record == 0" 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 ng-disabled="record == 0" 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 alldisabled="{{record == 0}}" selected="owning_lib" disable-test="cant_have_vols"></eg-org-selector></div>'+
834                 '<div class="col-xs-1"><input name="cn_count_lib{{lib}}" ng-disabled="record == 0" 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             });
1331             delete $scope.working.MultiMap[k];
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                     angular.forEach(
1529                         data.raw,
1530                         function (proto) {
1531                             if (proto.fast_add) $scope.is_fast_add = true;
1532                             if (proto.callnumber) {
1533                                 return egCore.pcrud.retrieve('acn', proto.callnumber)
1534                                 .then(function(cn) {
1535                                     var cp = new itemSvc.generateNewCopy(
1536                                         cn,
1537                                         proto.owner || cn.owning_lib(),
1538                                         $scope.is_fast_add,
1539                                         ((!$scope.only_vols) ? true : false)
1540                                     );
1541
1542                                     if (proto.barcode) {
1543                                         cp.barcode( proto.barcode );
1544                                         cp.empty_barcode = false;
1545                                     }
1546
1547                                     itemSvc.addCopy(cp)
1548                                 });
1549                             } else {
1550                                 var cn = new egCore.idl.acn();
1551                                 cn.id( --itemSvc.new_cn_id );
1552                                 cn.isnew( true );
1553                                 cn.prefix( $scope.defaults.prefix || -1 );
1554                                 cn.suffix( $scope.defaults.suffix || -1 );
1555                                 cn.owning_lib( proto.owner || egCore.auth.user().ws_ou() );
1556                                 cn.record( $scope.record_id );
1557                                 egCore.org.settings(
1558                                     ['cat.default_classification_scheme'],
1559                                     cn.owning_lib()
1560                                 ).then(function (val) {
1561                                     cn.label_class(
1562                                         $scope.defaults.classification ||
1563                                         val['cat.default_classification_scheme'] ||
1564                                         1
1565                                     );
1566                                     if (proto.label) {
1567                                         cn.label( proto.label );
1568                                     } else {
1569                                         egCore.net.request(
1570                                             'open-ils.cat',
1571                                             'open-ils.cat.biblio.record.marc_cn.retrieve',
1572                                             $scope.record_id,
1573                                             cn.label_class()
1574                                         ).then(function(cn_array) {
1575                                             if (cn_array.length > 0) {
1576                                                 for (var field in cn_array[0]) {
1577                                                     cn.label( cn_array[0][field] );
1578                                                     break;
1579                                                 }
1580                                             }
1581                                         });
1582                                     }
1583                                 });
1584
1585                                 // If we are adding an empty vol,
1586                                 // this is ultimately just a placeholder copy
1587                                 // which gets removed before saving.
1588                                 // TODO: consider ways to remove this
1589                                 // requirement
1590                                 var cp = new itemSvc.generateNewCopy(
1591                                     cn,
1592                                     proto.owner || cn.owning_lib(),
1593                                     $scope.is_fast_add,
1594                                     true
1595                                 );
1596
1597                                 if (proto.barcode) {
1598                                     cp.barcode( proto.barcode );
1599                                     cp.empty_barcode = false;
1600                                 }
1601
1602                                 itemSvc.addCopy(cp)
1603                             }
1604                         }
1605                     );
1606
1607                     angular.forEach(itemSvc.copies, function(c){
1608                         var cn = c.call_number();
1609                         var copy_id = c.id();
1610                         if (copy_id > 0){
1611                             cn.not_ephemeral = true;
1612                         }
1613                     });
1614
1615                     return itemSvc.copies;
1616                 }
1617
1618                 if (data.copies && data.copies.length)
1619                     return itemSvc.fetchIds(data.copies).then(fetchRaw);
1620
1621                 return fetchRaw();
1622
1623             }
1624
1625         }).then( function() {
1626
1627             return itemSvc.fetch_locations(
1628                 itemSvc.copies.map(function(cp){
1629                     return cp.location();
1630                 }).filter(function(e,i,a){
1631                     return a.lastIndexOf(e) === i;
1632                 })
1633             ).then(function(list){
1634                 $scope.data = itemSvc;
1635                 $scope.location_list = list;
1636                 $scope.workingGridDataProvider.refresh();
1637             });
1638
1639         });
1640
1641         $scope.can_save = false;
1642         function check_saveable () {
1643             var can_save = true;
1644
1645             angular.forEach(
1646                 itemSvc.copies,
1647                 function (i) {
1648                     if (!$scope.only_vols) {
1649                         if (i.duplicate_barcode || i.empty_barcode || i.call_number().empty_label) {
1650                             can_save = false;
1651                         }
1652                     } else if (i.call_number().empty_label) {
1653                         can_save = false;
1654                     }
1655                 }
1656             );
1657
1658             if (!$scope.only_vols && $scope.forms.myForm && $scope.forms.myForm.$invalid) {
1659                 can_save = false;
1660             }
1661
1662             $scope.can_save = can_save;
1663         }
1664
1665         $scope.disableSave = function () {
1666             check_saveable();
1667             return !$scope.can_save;
1668         }
1669
1670         $scope.focusNextFirst = function(prev_lib,prev_bc) {
1671             var n;
1672             var yep = false;
1673             angular.forEach(Object.keys($scope.data.tree).sort(), function (lib) {
1674                 if (n) return;
1675
1676                 if (lib == prev_lib) {
1677                     yep = true;
1678                     return;
1679                 }
1680
1681                 if (yep) n = lib;
1682             });
1683
1684             if (n) {
1685                 var first_cn = Object.keys($scope.data.tree[n])[0];
1686                 var next = '#' + first_cn + '_' + $scope.data.tree[n][first_cn][0].id();
1687                 var el = $(next);
1688                 if (el) {
1689                     if (!itemSvc.currently_generating) el.focus();
1690                     if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
1691                         itemSvc.nextBarcode(prev_bc).then(function(bc){
1692                             el.focus();
1693                             el.val(bc);
1694                             el.trigger('change');
1695                         });
1696                     } else {
1697                         itemSvc.currently_generating = false;
1698                     }
1699                 }
1700             }
1701         }
1702
1703         $scope.in_item_select = false;
1704         $scope.afterItemSelect = function() { $scope.in_item_select = false };
1705         $scope.handleItemSelect = function (item_list) {
1706             if (item_list && item_list.length > 0) {
1707                 $scope.in_item_select = true;
1708
1709                 angular.forEach(Object.keys($scope.defaults.attributes), function (attr) {
1710
1711                     var value_hash = {};
1712                     var value_list = [];
1713                     angular.forEach(item_list, function (item) {
1714                         if (item[attr]) {
1715                             var v = item[attr]()
1716                             if (angular.isObject(v)) {
1717                                 if (v.id) v = v.id();
1718                                 else if (v.code) v = v.code();
1719                             }
1720                             value_list.push(v);
1721                             value_hash[v] = 1;
1722                         }
1723                     });
1724
1725                     $scope.working.MultiMap[attr] = value_list;
1726
1727                     if (Object.keys(value_hash).length == 1) {
1728                         if (attr == 'circ_lib') {
1729                             $scope.working[attr] = egCore.org.get(item_list[0][attr]());
1730                         } else {
1731                             $scope.working[attr] = item_list[0][attr]();
1732                         }
1733                     } else {
1734                         $scope.working[attr] = undefined;
1735                     }
1736                 });
1737
1738                 angular.forEach($scope.statcats, function (sc) {
1739
1740                     var counter = -1;
1741                     var value_hash = {};
1742                     var none = false;
1743                     angular.forEach(item_list, function (item) {
1744                         if (item.stat_cat_entries()) {
1745                             if (item.stat_cat_entries().length > 0) {
1746                                 var right_sc = item.stat_cat_entries().filter(function (e) {
1747                                     return e.stat_cat() == sc.id() && !Boolean(e.isdeleted());
1748                                 });
1749
1750                                 if (right_sc.length > 0) {
1751                                     value_hash[right_sc[0].id()] = right_sc[0].id();
1752                                 } else {
1753                                     none = true;
1754                                 }
1755                             } else {
1756                                 none = true;
1757                             }
1758                         } else {
1759                             none = true;
1760                         }
1761                     });
1762
1763                     if (!none && Object.keys(value_hash).length == 1) {
1764                         $scope.working.statcats[sc.id()] = value_hash[Object.keys(value_hash)[0]];
1765                         $scope.working.statcats_multi[sc.id()] = false;
1766                     } else if (item_list.length > 1 && Object.keys(value_hash).length > 0) {
1767                         $scope.working.statcats[sc.id()] = undefined;
1768                         $scope.working.statcats_multi[sc.id()] = true;
1769                     } else {
1770                         $scope.working.statcats[sc.id()] = undefined;
1771                         $scope.working.statcats_multi[sc.id()] = false;
1772                     }
1773
1774                 });
1775
1776             } else {
1777                 $scope.clearWorking();
1778             }
1779
1780         }
1781
1782         $scope.$watch('data.copies.length', function () {
1783             if ($scope.data.copies) {
1784                 var base_orgs = $scope.data.copies.map(function(cp){
1785                     if (isNaN(cp.circ_lib())) return Number(cp.circ_lib().id());
1786                     return Number(cp.circ_lib());
1787                 }).concat(
1788                     $scope.data.copies.map(function(cp){
1789                         if (isNaN(cp.call_number().owning_lib())) return Number(cp.call_number().owning_lib().id());
1790                         return Number(cp.call_number().owning_lib());
1791                     })
1792                 ).concat(
1793                     [egCore.auth.user().ws_ou()]
1794                 ).filter(function(e,i,a){
1795                     return a.lastIndexOf(e) === i;
1796                 });
1797
1798                 var all_orgs = [];
1799                 angular.forEach(base_orgs, function(o) {
1800                     all_orgs = all_orgs.concat( egCore.org.fullPath(o, true) );
1801                 });
1802
1803                 var final_orgs = all_orgs.filter(function(e,i,a){
1804                     return a.lastIndexOf(e) === i;
1805                 }).sort(function(a, b){return a-b});
1806
1807                 if ($scope.location_orgs.toString() != final_orgs.toString()) {
1808                     $scope.location_orgs = final_orgs;
1809                     if ($scope.location_orgs.length) {
1810                         itemSvc.get_locations_by_org($scope.location_orgs).then(function(list){
1811                             angular.forEach(list, function(l) {
1812                                 $scope.location_cache[ ''+l.id() ] = l;
1813                             });
1814                             $scope.location_list = list;
1815                         }).then(function() {
1816                             $scope.statcat_filter_list = [];
1817                             angular.forEach($scope.location_orgs, function (o) {
1818                                 $scope.statcat_filter_list.push(egCore.org.get(o));
1819                             });
1820
1821                             itemSvc.get_statcats($scope.location_orgs).then(function(list){
1822                                 $scope.statcats = list;
1823                                 angular.forEach($scope.statcats, function (s) {
1824
1825                                     if (!$scope.working)
1826                                         $scope.working = { statcats_multi: {}, statcats: {}, statcat_filter: undefined};
1827                                     if (!$scope.working.statcats_multi)
1828                                         $scope.working.statcats_multi = {};
1829                                     if (!$scope.working.statcats)
1830                                         $scope.working.statcats = {};
1831
1832                                     if (!$scope.in_item_select) {
1833                                         $scope.working.statcats[s.id()] = undefined;
1834                                     }
1835                                     createStatcatUpdateWatcher(s.id());
1836                                 });
1837                                 $scope.in_item_select = false;
1838                                 // do a refresh here to work around a race
1839                                 // condition that can result in stat cats
1840                                 // not being selected.
1841                                 $scope.workingGridDataProvider.refresh();
1842                             });
1843                         });
1844                     }
1845                 }
1846             } else {
1847                 $scope.workingGridDataProvider.refresh();
1848             }
1849         });
1850
1851         $scope.statcat_visible = function (sc_owner) {
1852             var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
1853             angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
1854                 if ($scope.working.statcat_filter == ancestor_org.id())
1855                     visible = true;
1856             });
1857             return visible;
1858         }
1859
1860         $scope.suffix_list = [];
1861         itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
1862             $scope.suffix_list = list;
1863         });
1864
1865         $scope.prefix_list = [];
1866         itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
1867             $scope.prefix_list = list;
1868         });
1869
1870         $scope.classification_list = [];
1871         itemSvc.get_classifications().then(function(list){
1872             $scope.classification_list = list;
1873         });
1874
1875         $scope.$watch('completed_copies.length', function () {
1876             $scope.completedGridDataProvider.refresh();
1877         });
1878
1879         $scope.location_list = [];
1880         createSimpleUpdateWatcher('location');
1881
1882         $scope.status_list = [];
1883         itemSvc.get_magic_statuses().then(function(list){
1884             $scope.magic_status_list = list;
1885             createSimpleUpdateWatcher('status',$scope.magic_status_list);
1886         });
1887         itemSvc.get_statuses().then(function(list){
1888             $scope.status_list = list;
1889         });
1890
1891         $scope.circ_modifier_list = [];
1892         itemSvc.get_circ_mods().then(function(list){
1893             $scope.circ_modifier_list = list;
1894         });
1895         createSimpleUpdateWatcher('circ_modifier');
1896
1897         $scope.circ_type_list = [];
1898         itemSvc.get_circ_types().then(function(list){
1899             $scope.circ_type_list = list;
1900         });
1901         createSimpleUpdateWatcher('circ_as_type');
1902
1903         $scope.age_protect_list = [];
1904         itemSvc.get_age_protects().then(function(list){
1905             $scope.age_protect_list = list;
1906         });
1907         createSimpleUpdateWatcher('age_protect');
1908
1909         $scope.floating_list = [];
1910         itemSvc.get_floating_groups().then(function(list){
1911             $scope.floating_list = list;
1912         });
1913         createSimpleUpdateWatcher('floating');
1914
1915         createSimpleUpdateWatcher('circ_lib');
1916         createSimpleUpdateWatcher('circulate');
1917         createSimpleUpdateWatcher('holdable');
1918         createSimpleUpdateWatcher('fine_level');
1919         createSimpleUpdateWatcher('loan_duration');
1920         createSimpleUpdateWatcher('price');
1921         createSimpleUpdateWatcher('cost');
1922         createSimpleUpdateWatcher('deposit');
1923         createSimpleUpdateWatcher('deposit_amount');
1924         createSimpleUpdateWatcher('mint_condition');
1925         createSimpleUpdateWatcher('opac_visible');
1926         createSimpleUpdateWatcher('ref');
1927
1928         $scope.saveCompletedCopies = function (and_exit) {
1929             var cnHash = {};
1930             var perCnCopies = {};
1931             angular.forEach( $scope.completed_copies, function (cp) {
1932                 var cn = cp.call_number();
1933                 var cn_cps = cp.call_number().copies();
1934                 cp.call_number().copies([]);
1935                 var cn_id = cp.call_number().id();
1936                 cp.call_number(cn_id); // prevent loops in JSON-ification
1937                 if (!cnHash[cn_id]) {
1938                     cnHash[cn_id] = egCore.idl.Clone(cn);
1939                     perCnCopies[cn_id] = [egCore.idl.Clone(cp)];
1940                 } else {
1941                     perCnCopies[cn_id].push(egCore.idl.Clone(cp));
1942                 }
1943                 cp.call_number(cn); // put the data back
1944                 cp.call_number().copies(cn_cps);
1945                 if (typeof cnHash[cn_id].prefix() == 'object')
1946                     cnHash[cn_id].prefix(cnHash[cn_id].prefix().id()); // un-object-ize some fields
1947                 if (typeof cnHash[cn_id].suffix() == 'object')
1948                     cnHash[cn_id].suffix(cnHash[cn_id].suffix().id()); // un-object-ize some fields
1949             });
1950
1951             if ($scope.only_vols) { // strip off copies when we're in vol-only mode
1952                 angular.forEach(cnHash, function (v, k) {
1953                     cnHash[k].copies([]);
1954                 });
1955             } else {
1956                 angular.forEach(perCnCopies, function (v, k) {
1957                     cnHash[k].copies(v);
1958                 });
1959             }
1960
1961             cnList = [];
1962             angular.forEach(cnHash, function (v, k) {
1963                 cnList.push(v);
1964             });
1965
1966             egNet.request(
1967                 'open-ils.cat',
1968                 'open-ils.cat.asset.volume.fleshed.batch.update.override',
1969                 egCore.auth.token(), cnList, 1, { auto_merge_vols : 1, create_parts : 1, return_copy_ids : 1 }
1970             ).then(function(copy_ids) {
1971                 if (and_exit) {
1972                     $scope.dirty = false;
1973                     if ($scope.defaults.print_item_labels) {
1974                         egCore.net.request(
1975                             'open-ils.actor',
1976                             'open-ils.actor.anon_cache.set_value',
1977                             null, 'print-labels-these-copies', {
1978                                 copies : copy_ids
1979                             }
1980                         ).then(function(key) {
1981                             if (key) {
1982                                 var url = egCore.env.basePath + 'cat/printlabels/' + key;
1983                                 $timeout(function() { $window.open(url, '_blank') }).then(
1984                                     function() { $timeout(function(){$window.close()}); }
1985                                 );
1986                             } else {
1987                                 alert('Could not create anonymous cache key!');
1988                             }
1989                         });
1990                     } else {
1991                         $timeout(function(){$window.close()});
1992                     }
1993                 }
1994             });
1995         }
1996
1997         $scope.saveAndContinue = function () {
1998             $scope.saveCompletedCopies(false);
1999         }
2000
2001         $scope.workingSaveAndExit = function () {
2002             $scope.workingToComplete();
2003             $scope.saveAndExit();
2004         }
2005
2006         $scope.saveAndExit = function () {
2007             $scope.saveCompletedCopies(true);
2008         }
2009
2010     }
2011
2012     $scope.copy_notes_dialog = function(copy_list) {
2013         var default_pub = Boolean($scope.defaults.copy_notes_pub);
2014         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2015
2016         return $uibModal.open({
2017             templateUrl: './cat/volcopy/t_copy_notes',
2018             backdrop: 'static',
2019             animation: true,
2020             controller:
2021                    ['$scope','$uibModalInstance',
2022             function($scope , $uibModalInstance) {
2023                 $scope.focusNote = true;
2024                 $scope.note = {
2025                     creator : egCore.auth.user().id(),
2026                     title   : '',
2027                     value   : '',
2028                     pub     : default_pub,
2029                 };
2030
2031                 $scope.require_initials = false;
2032                 egCore.org.settings([
2033                     'ui.staff.require_initials.copy_notes'
2034                 ]).then(function(set) {
2035                     $scope.require_initials_ous = Boolean(set['ui.staff.require_initials.copy_notes']);
2036                 });
2037
2038                 $scope.are_initials_required = function() {
2039                   $scope.require_initials = $scope.require_initials_ous && ($scope.note.value.length > 0 || $scope.note.title.length > 0);
2040                 };
2041
2042                 $scope.$watch('note.value.length', $scope.are_initials_required);
2043                 $scope.$watch('note.title.length', $scope.are_initials_required);
2044
2045                 $scope.note_list = [];
2046                 if (copy_list.length == 1) {
2047                     $scope.note_list = copy_list[0].notes();
2048                 }
2049
2050                 $scope.ok = function(note) {
2051
2052                     if (note.value.length > 0 || note.title.length > 0) {
2053                         if ($scope.initials) {
2054                             note.value = egCore.strings.$replace(
2055                                 egCore.strings.COPY_NOTE_INITIALS, {
2056                                 value : note.value,
2057                                 initials : $scope.initials,
2058                                 ws_ou : egCore.org.get(
2059                                     egCore.auth.user().ws_ou()).shortname()
2060                             });
2061                         }
2062
2063                         angular.forEach(copy_list, function (cp) {
2064                             if (!angular.isArray(cp.notes())) cp.notes([]);
2065                             var n = new egCore.idl.acpn();
2066                             n.isnew(1);
2067                             n.creator(note.creator);
2068                             n.pub(note.pub);
2069                             n.title(note.title);
2070                             n.value(note.value);
2071                             n.owning_copy(cp.id());
2072                             cp.notes().push( n );
2073                         });
2074                     }
2075
2076                     $uibModalInstance.close();
2077                 }
2078
2079                 $scope.cancel = function($event) {
2080                     $uibModalInstance.dismiss();
2081                     $event.preventDefault();
2082                 }
2083             }]
2084         });
2085     }
2086
2087     $scope.copy_tags_dialog = function(copy_list) {
2088         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2089
2090         return $uibModal.open({
2091             templateUrl: './cat/volcopy/t_copy_tags',
2092             backdrop: 'static',
2093             animation: true,
2094             controller:
2095                    ['$scope','$uibModalInstance',
2096             function($scope , $uibModalInstance) {
2097
2098                 $scope.tag_map = [];
2099                 var tag_hash = {};
2100                 var shared_tags = {};
2101                 angular.forEach(copy_list, function (cp) {
2102                     angular.forEach(cp.tags(), function(tag) {
2103                         if (!(tag.tag().id() in shared_tags)) {
2104                             shared_tags[tag.tag().id()] = 1;
2105                         } else {
2106                             shared_tags[tag.tag().id()]++;
2107                         }
2108                         if (!(tag.tag().id() in tag_hash)) {
2109                             tag_hash[tag.tag().id()] = tag;
2110                         }
2111                     });
2112                 });
2113                 angular.forEach(tag_hash, function(value, key) {
2114                     if (shared_tags[key] == copy_list.length) {
2115                         $scope.tag_map.push(value);
2116                     }
2117                 });
2118
2119                 $scope.tag_types = [];
2120                 egCore.pcrud.retrieveAll('cctt', {order_by : { cctt : 'label' }}, {atomic : true}).then(function(list) {
2121                     $scope.tag_types = list;
2122                     $scope.tag_type = $scope.tag_types[0].code(); // just pick a default
2123                 });
2124
2125                 $scope.getTags = function(val) {
2126                     return egCore.pcrud.search('acpt',
2127                         { 
2128                             owner :  egCore.org.fullPath(egCore.auth.user().ws_ou(), true),
2129                             label : { 'startwith' : {
2130                                         transform: 'evergreen.lowercase',
2131                                         value : [ 'evergreen.lowercase', val ]
2132                                     }},
2133                             tag_type : $scope.tag_type
2134                         },
2135                         { order_by : { 'acpt' : ['label'] } }, { atomic: true }
2136                     ).then(function(list) {
2137                         return list.map(function(item) {
2138                             return item.label();
2139                         });
2140                     });
2141                 }
2142
2143                 $scope.addTag = function() {
2144                     var tagLabel = $scope.selectedLabel;
2145                     // clear the typeahead
2146                     $scope.selectedLabel = "";
2147
2148                     // first, check tags already associated with the copy
2149                     var foundMatch = false;
2150                     angular.forEach($scope.tag_map, function(tag) {
2151                         if (tag.tag().label() ==  tagLabel && tag.tag().tag_type() == $scope.tag_type) {
2152                             foundMatch = true;
2153                             if (tag.isdeleted()) tag.isdeleted(0); // just deleting the mapping
2154                         }
2155                     });
2156                     if (!foundMatch) {
2157                         egCore.pcrud.search('acpt',
2158                             { 
2159                                 owner : egCore.org.fullPath(egCore.auth.user().ws_ou(), true),
2160                                 label : tagLabel,
2161                                 tag_type : $scope.tag_type
2162                             },
2163                             { order_by : { 'acpt' : ['label'] } }, { atomic: true }
2164                         ).then(function(list) {
2165                             if (list.length > 0) {
2166                                 var newMap = new egCore.idl.acptcm();
2167                                 newMap.isnew(1);
2168                                 newMap.copy(copy_list[0].id());
2169                                 newMap.tag(egCore.idl.Clone(list[0]));
2170                                 $scope.tag_map.push(newMap);
2171                             } else {
2172                                 var newTag = new egCore.idl.acpt();
2173                                 newTag.isnew(1);
2174                                 newTag.owner(egCore.auth.user().ws_ou());
2175                                 newTag.label(tagLabel);
2176                                 newTag.pub('t');
2177                                 newTag.tag_type($scope.tag_type);
2178
2179                                 var newMap = new egCore.idl.acptcm();
2180                                 newMap.isnew(1);
2181                                 newMap.copy(copy_list[0].id());
2182                                 newMap.tag(newTag);
2183                                 $scope.tag_map.push(newMap);
2184                             }
2185                         });
2186                     }
2187                 }
2188
2189                 $scope.ok = function(note) {
2190                     // in the multi-item case, this works OK for
2191                     // adding new maps to existing tags, but doesn't handle
2192                     // all possibilities
2193                     angular.forEach(copy_list, function (cp) {
2194                         cp.tags($scope.tag_map);
2195                     });
2196                     $uibModalInstance.close();
2197                 }
2198
2199                 $scope.cancel = function($event) {
2200                     $uibModalInstance.dismiss();
2201                     $event.preventDefault();
2202                 }
2203             }]
2204         });
2205     }
2206
2207     $scope.copy_alerts_dialog = function(copy_list) {
2208         if (!angular.isArray(copy_list)) copy_list = [copy_list];
2209
2210         return $uibModal.open({
2211             templateUrl: './cat/volcopy/t_copy_alerts',
2212             animation: true,
2213             controller:
2214                    ['$scope','$uibModalInstance',
2215             function($scope , $uibModalInstance) {
2216
2217                 itemSvc.get_copy_alert_types().then(function(ccat) {
2218                     $scope.alert_types = ccat;
2219                 });
2220
2221                 $scope.focusNote = true;
2222                 $scope.copy_alert = {
2223                     create_staff : egCore.auth.user().id(),
2224                     note         : '',
2225                     temp         : false
2226                 };
2227
2228                 egCore.hatch.getItem('cat.copy.alerts.last_type').then(function(t) {
2229                     if (t) $scope.copy_alert.alert_type = t;
2230                 });
2231
2232                 if (copy_list.length == 1) {
2233                     $scope.copy_alert_list = copy_list[0].copy_alerts();
2234                 }
2235
2236                 $scope.ok = function(copy_alert) {
2237
2238                     if (typeof(copy_alert.note) != 'undefined' &&
2239                         copy_alert.note != '') {
2240                         angular.forEach(copy_list, function (cp) {
2241                             var a = new egCore.idl.aca();
2242                             a.isnew(1);
2243                             a.create_staff(copy_alert.create_staff);
2244                             a.note(copy_alert.note);
2245                             a.temp(copy_alert.temp ? 't' : 'f');
2246                             a.copy(cp.id());
2247                             a.ack_time(null);
2248                             a.alert_type(
2249                                 $scope.alert_types.filter(function(at) {
2250                                     return at.id() == copy_alert.alert_type;
2251                                 })[0]
2252                             );
2253                             cp.copy_alerts().push( a );
2254                         });
2255
2256                         if (copy_alert.alert_type) {
2257                             egCore.hatch.setItem(
2258                                 'cat.copy.alerts.last_type',
2259                                 copy_alert.alert_type
2260                             );
2261                         }
2262
2263                     }
2264
2265                     $uibModalInstance.close();
2266                 }
2267
2268                 $scope.cancel = function($event) {
2269                     $uibModalInstance.dismiss();
2270                     $event.preventDefault();
2271                 }
2272             }]
2273         });
2274     }
2275
2276 }])
2277
2278 .directive("egVolTemplate", function () {
2279     return {
2280         restrict: 'E',
2281         replace: true,
2282         template: '<div ng-include="'+"'/eg/staff/cat/volcopy/t_attr_edit'"+'"></div>',
2283         scope: {
2284             editTemplates: '=',
2285         },
2286         controller : ['$scope','$window','itemSvc','egCore','ngToast','$uibModal',
2287             function ( $scope , $window , itemSvc , egCore , ngToast , $uibModal) {
2288
2289                 $scope.i18n = egCore.i18n;
2290
2291                 $scope.defaults = { // If defaults are not set at all, allow everything
2292                     barcode_checkdigit : false,
2293                     auto_gen_barcode : false,
2294                     statcats : true,
2295                     copy_notes : true,
2296                     copy_tags : true,
2297                     copy_alerts : true,
2298                     attributes : {
2299                         status : true,
2300                         loan_duration : true,
2301                         fine_level : true,
2302                         cost : true,
2303                         alerts : true,
2304                         deposit : true,
2305                         deposit_amount : true,
2306                         opac_visible : true,
2307                         price : true,
2308                         circulate : true,
2309                         mint_condition : true,
2310                         circ_lib : true,
2311                         ref : true,
2312                         circ_modifier : true,
2313                         circ_as_type : true,
2314                         location : true,
2315                         holdable : true,
2316                         age_protect : true,
2317                         floating : true
2318                     }
2319                 };
2320
2321                 $scope.fetchDefaults = function () {
2322                     egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
2323                         if (t) {
2324                             $scope.defaults = t;
2325                             $scope.working.statcat_filter = $scope.defaults.statcat_filter;
2326                             if (
2327                                     typeof $scope.defaults.statcat_filter == 'object' &&
2328                                     Object.keys($scope.defaults.statcat_filter).length > 0
2329                                 ) {
2330                                 // want fieldmapper object here...
2331                                 $scope.defaults.statcat_filter =
2332                                     egCore.idl.Clone($scope.defaults.statcat_filter);
2333                                 // ... and ID here
2334                                 $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
2335                             }
2336                         }
2337                     });
2338                 }
2339                 $scope.fetchDefaults();
2340
2341                 $scope.dirty = false;
2342                 $scope.$watch('dirty',
2343                     function(newVal, oldVal) {
2344                         if (newVal && newVal != oldVal) {
2345                             $($window).on('beforeunload.template', function(){
2346                                 return 'There is unsaved template data!'
2347                             });
2348                         } else {
2349                             $($window).off('beforeunload.template');
2350                         }
2351                     }
2352                 );
2353
2354                 $scope.template_controls = true;
2355
2356                 $scope.fetchTemplates = function () {
2357                     itemSvc.get_acp_templates().then(function(t) {
2358                         if (t) {
2359                             $scope.templates = t;
2360                             $scope.template_name_list = Object.keys(t).sort();
2361                         }
2362                     });
2363                 }
2364                 $scope.fetchTemplates();
2365             
2366                 $scope.applyTemplate = function (n) {
2367                     angular.forEach($scope.templates[n], function (v,k) {
2368                         if (k == 'circ_lib') {
2369                             $scope.working[k] = egCore.org.get(v);
2370                         } else if (angular.isArray(v) || !angular.isObject(v)) {
2371                             $scope.working[k] = angular.copy(v);
2372                         } else {
2373                             angular.forEach(v, function (sv,sk) {
2374                                 if (!(k in $scope.working))
2375                                     $scope.working[k] = {};
2376                                 $scope.working[k][sk] = angular.copy(sv);
2377                             });
2378                         }
2379                     });
2380                     $scope.template_name = '';
2381                 }
2382
2383                 $scope.deleteTemplate = function (n) {
2384                     if (n) {
2385                         delete $scope.templates[n]
2386                         $scope.template_name_list = Object.keys($scope.templates).sort();
2387                         $scope.template_name = '';
2388                         itemSvc.save_acp_templates($scope.templates);
2389                         $scope.$parent.fetchTemplates();
2390                         ngToast.create(egCore.strings.VOL_COPY_TEMPLATE_SUCCESS_DELETE);
2391                     }
2392                 }
2393
2394                 $scope.saveTemplate = function (n) {
2395                     if (n) {
2396                         var tmpl = {};
2397             
2398                         angular.forEach($scope.working, function (v,k) {
2399                             if (angular.isObject(v)) { // we'll use the pkey
2400                                 if (v.id) v = v.id();
2401                                 else if (v.code) v = v.code();
2402                                 else v = angular.copy(v); // Should only be statcats and callnumbers currently
2403                             }
2404             
2405                             tmpl[k] = v;
2406                         });
2407             
2408                         $scope.templates[n] = tmpl;
2409                         $scope.template_name_list = Object.keys($scope.templates).sort();
2410             
2411                         itemSvc.save_acp_templates($scope.templates);
2412                         $scope.$parent.fetchTemplates();
2413
2414                         $scope.dirty = false;
2415                     } else {
2416                         // save all templates, as we might do after an import
2417                         itemSvc.save_acp_templates($scope.templates);
2418                         $scope.$parent.fetchTemplates();
2419                     }
2420                     ngToast.create(egCore.strings.VOL_COPY_TEMPLATE_SUCCESS_SAVE);
2421                 }
2422
2423                 $scope.templates = {};
2424                 $scope.imported_templates = { data : '' };
2425                 $scope.template_name = '';
2426                 $scope.template_name_list = [];
2427
2428                 $scope.$watch('imported_templates.data', function(newVal, oldVal) {
2429                     if (newVal && newVal != oldVal) {
2430                         try {
2431                             var newTemplates = JSON.parse(newVal);
2432                             if (!Object.keys(newTemplates).length) return;
2433                             angular.forEach(Object.keys(newTemplates), function (k) {
2434                                 $scope.templates[k] = newTemplates[k];
2435                             });
2436                             itemSvc.save_acp_templates($scope.templates);
2437                             $scope.fetchTemplates();
2438                         } catch (E) {
2439                             console.log('tried to import an invalid copy template file');
2440                         }
2441                     }
2442                 });
2443
2444                 $scope.tracker = function (x,f) { if (x) return x[f]() };
2445                 $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
2446                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
2447             
2448                 $scope.orgById = function (id) { return egCore.org.get(id) }
2449                 $scope.statusById = function (id) {
2450                     return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
2451                 }
2452                 $scope.locationById = function (id) {
2453                     return $scope.location_cache[''+id];
2454                 }
2455             
2456                 createSimpleUpdateWatcher = function (field) {
2457                     $scope.$watch('working.' + field, function () {
2458                         var newval = $scope.working[field];
2459             
2460                         if (typeof newval != 'undefined') {
2461                             $scope.dirty = true;
2462                             if (angular.isObject(newval)) { // we'll use the pkey
2463                                 if (newval.id) $scope.working[field] = newval.id();
2464                                 else if (newval.code) $scope.working[field] = newval.code();
2465                             }
2466             
2467                             if (""+newval == "" || newval == null) {
2468                                 $scope.working[field] = undefined;
2469                             }
2470             
2471                         }
2472                     });
2473                 }
2474             
2475                 $scope.working = {
2476                     copy_notes: [],
2477                     copy_alerts: [],
2478                     statcats: {},
2479                     statcat_filter: undefined
2480                 };
2481             
2482                 $scope.statcat_visible = function (sc_owner) {
2483                     var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
2484                     angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
2485                         if ($scope.working.statcat_filter == ancestor_org.id())
2486                             visible = true;
2487                     });
2488                     return visible;
2489                 }
2490
2491                 createStatcatUpdateWatcher = function (id) {
2492                     return $scope.$watch('working.statcats[' + id + ']', function () {
2493                         if ($scope.working.statcats) {
2494                             var newval = $scope.working.statcats[id];
2495                 
2496                             if (typeof newval != 'undefined') {
2497                                 $scope.dirty = true;
2498                                 if (angular.isObject(newval)) { // we'll use the pkey
2499                                     newval = newval.id();
2500                                 }
2501                 
2502                                 if (""+newval == "" || newval == null) {
2503                                     $scope.working.statcats[id] = undefined;
2504                                     newval = null;
2505                                 }
2506                 
2507                             }
2508                         }
2509                     });
2510                 }
2511
2512                 $scope.clearWorking = function () {
2513                     angular.forEach($scope.working, function (v,k,o) {
2514                         $scope.working.MultiMap[k] = [];
2515                         if (!angular.isObject(v)) {
2516                             if (typeof v != 'undefined')
2517                                 $scope.working[k] = undefined;
2518                         } else if (k != 'circ_lib') {
2519                             angular.forEach(v, function (sv,sk) {
2520                                 $scope.working[k][sk] = undefined;
2521                             });
2522                         }
2523                     });
2524                     $scope.working.circ_lib = undefined; // special
2525                     $scope.dirty = false;
2526                 }
2527
2528                 $scope.working = {};
2529                 $scope.location_orgs = [];
2530                 $scope.location_cache = {};
2531             
2532                 $scope.location_list = [];
2533                 itemSvc.get_locations_by_org(
2534                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
2535                 ).then(function(list){
2536                     $scope.location_list = list;
2537                 });
2538                 createSimpleUpdateWatcher('location');
2539
2540                 $scope.statcat_filter_list = egCore.org.fullPath( egCore.auth.user().ws_ou() );
2541
2542                 $scope.statcats = [];
2543                 itemSvc.get_statcats(
2544                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
2545                 ).then(function(list){
2546                     $scope.statcats = list;
2547                     angular.forEach($scope.statcats, function (s) {
2548
2549                         if (!$scope.working)
2550                             $scope.working = { statcats: {}, statcat_filter: undefined};
2551                         if (!$scope.working.statcats)
2552                             $scope.working.statcats = {};
2553
2554                         $scope.working.statcats[s.id()] = undefined;
2555                         createStatcatUpdateWatcher(s.id());
2556                     });
2557                 });
2558
2559                 $scope.copy_notes_dialog = function() {
2560                     var default_pub = Boolean($scope.defaults.copy_notes_pub);
2561                     var working = $scope.working;
2562             
2563                     return $uibModal.open({
2564                         templateUrl: './cat/volcopy/t_copy_notes',
2565                         animation: true,
2566                         controller:
2567                             ['$scope','$uibModalInstance',
2568                         function($scope , $uibModalInstance) {
2569                             $scope.focusNote = true;
2570                             $scope.note = {
2571                                 title   : '',
2572                                 value   : '',
2573                                 pub     : default_pub,
2574                             };
2575
2576                             $scope.require_initials = false;
2577                             egCore.org.settings([
2578                                 'ui.staff.require_initials.copy_notes'
2579                             ]).then(function(set) {
2580                                 $scope.require_initials = Boolean(set['ui.staff.require_initials.copy_notes']);
2581                             });
2582
2583                             $scope.note_list = [];
2584                             angular.forEach(working.copy_notes, function(note) {
2585                                 var acpn = egCore.idl.fromHash('acpn', note);
2586                                 $scope.note_list.push(acpn);
2587                             });
2588
2589                             $scope.ok = function(note) {
2590
2591                                 if (!working.copy_notes) {
2592                                     working.copy_notes = [];
2593                                 }
2594
2595                                 // clear slate
2596                                 working.copy_notes.length = 0;
2597                                 angular.forEach($scope.note_list, function(existing_note) {
2598                                     if (!existing_note.isdeleted()) {
2599                                         working.copy_notes.push({
2600                                             pub : existing_note.pub() ? 't' : 'f',
2601                                             title : existing_note.title(),
2602                                             value : existing_note.value()
2603                                         });
2604                                     }
2605                                 });
2606
2607                                 // add new note, if any
2608                                 if (note.initials) note.value += ' [' + note.initials + ']';
2609                                 note.pub = note.pub ? 't' : 'f';
2610                                 if (note.title.length && note.value.length) {
2611                                     working.copy_notes.push(note);
2612                                 }
2613
2614                                 $uibModalInstance.close();
2615                             }
2616
2617                             $scope.cancel = function($event) {
2618                                 $uibModalInstance.dismiss();
2619                                 $event.preventDefault();
2620                             }
2621                         }]
2622                     });
2623                 }
2624             
2625                 $scope.copy_alerts_dialog = function() {
2626                     var working = $scope.working;
2627
2628                     return $uibModal.open({
2629                         templateUrl: './cat/volcopy/t_copy_alerts',
2630                         animation: true,
2631                         controller:
2632                             ['$scope','$uibModalInstance',
2633                         function($scope , $uibModalInstance) {
2634
2635                             itemSvc.get_copy_alert_types().then(function(ccat) {
2636                                 var ccat_map = {};
2637                                 $scope.alert_types = ccat;
2638                                 angular.forEach(ccat, function(t) {
2639                                     ccat_map[t.id()] = t;
2640                                 });
2641                                 $scope.copy_alert_list = [];
2642                                 angular.forEach(working.copy_alerts, function (alrt) {
2643                                     var aca = egCore.idl.fromHash('aca', alrt);
2644                                     aca.alert_type(ccat_map[alrt.alert_type]);
2645                                     aca.ack_time(null);
2646                                     $scope.copy_alert_list.push(aca);
2647                                 });
2648                             });
2649
2650                             $scope.focusNote = true;
2651                             $scope.copy_alert = {
2652                                 note         : '',
2653                                 temp         : false
2654                             };
2655
2656                             $scope.ok = function(copy_alert) {
2657             
2658                                 if (!working.copy_alerts) {
2659                                     working.copy_alerts = [];
2660                                 }
2661                                 // clear slate
2662                                 working.copy_alerts.length = 0;
2663
2664                                 angular.forEach($scope.copy_alert_list, function(alrt) {
2665                                     if (alrt.ack_time() == null) {
2666                                         working.copy_alerts.push({
2667                                             note : alrt.note(),
2668                                             temp : alrt.temp(),
2669                                             alert_type : alrt.alert_type().id()
2670                                         });
2671                                     }
2672                                 });
2673
2674                                 if (typeof(copy_alert.note) != 'undefined' &&
2675                                     copy_alert.note != '') {
2676                                     working.copy_alerts.push({
2677                                         note : copy_alert.note,
2678                                         temp : copy_alert.temp ? 't' : 'f',
2679                                         alert_type : copy_alert.alert_type
2680                                     });
2681                                 }
2682
2683                                 $uibModalInstance.close();
2684                             }
2685
2686                             $scope.cancel = function($event) {
2687                                 $uibModalInstance.dismiss();
2688                                 $event.preventDefault();
2689                             }
2690                         }]
2691                     });
2692                 }
2693
2694                 $scope.status_list = [];
2695                 itemSvc.get_magic_statuses().then(function(list){
2696                     $scope.magic_status_list = list;
2697                 });
2698                 itemSvc.get_statuses().then(function(list){
2699                     $scope.status_list = list;
2700                 });
2701                 createSimpleUpdateWatcher('status');
2702             
2703                 $scope.circ_modifier_list = [];
2704                 itemSvc.get_circ_mods().then(function(list){
2705                     $scope.circ_modifier_list = list;
2706                 });
2707                 createSimpleUpdateWatcher('circ_modifier');
2708             
2709                 $scope.circ_type_list = [];
2710                 itemSvc.get_circ_types().then(function(list){
2711                     $scope.circ_type_list = list;
2712                 });
2713                 createSimpleUpdateWatcher('circ_as_type');
2714             
2715                 $scope.age_protect_list = [];
2716                 itemSvc.get_age_protects().then(function(list){
2717                     $scope.age_protect_list = list;
2718                 });
2719                 createSimpleUpdateWatcher('age_protect');
2720
2721                 $scope.floating_list = [];
2722                 itemSvc.get_floating_groups().then(function(list){
2723                     $scope.floating_list = list;
2724                 });
2725                 createSimpleUpdateWatcher('floating');
2726
2727                 createSimpleUpdateWatcher('circulate');
2728                 createSimpleUpdateWatcher('holdable');
2729                 createSimpleUpdateWatcher('fine_level');
2730                 createSimpleUpdateWatcher('loan_duration');
2731                 createSimpleUpdateWatcher('cost');
2732                 createSimpleUpdateWatcher('deposit');
2733                 createSimpleUpdateWatcher('deposit_amount');
2734                 createSimpleUpdateWatcher('mint_condition');
2735                 createSimpleUpdateWatcher('opac_visible');
2736                 createSimpleUpdateWatcher('ref');
2737
2738                 $scope.suffix_list = [];
2739                 itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
2740                     $scope.suffix_list = list;
2741                 });
2742
2743                 $scope.prefix_list = [];
2744                 itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
2745                     $scope.prefix_list = list;
2746                 });
2747
2748                 $scope.classification_list = [];
2749                 itemSvc.get_classifications().then(function(list){
2750                     $scope.classification_list = list;
2751                 });
2752
2753                 createSimpleUpdateWatcher('working.callnumber.classification');
2754                 createSimpleUpdateWatcher('working.callnumber.prefix');
2755                 createSimpleUpdateWatcher('working.callnumber.suffix');
2756             }
2757         ]
2758     }
2759 })
2760
2761