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