]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
webstaff: fix selection of stat cats in copy editor and 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(function($routeProvider, $locationProvider, $compileProvider) {
15     $locationProvider.html5Mode(true);
16     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
17
18     var resolver = {
19         delay : ['egStartup', function(egStartup) { return egStartup.go(); }]
20     };
21
22     $routeProvider.when('/cat/volcopy/:dataKey', {
23         templateUrl: './cat/volcopy/t_view',
24         controller: 'EditCtrl',
25         resolve : resolver
26     });
27
28     $routeProvider.when('/cat/volcopy/:dataKey/:mode', {
29         templateUrl: './cat/volcopy/t_view',
30         controller: 'EditCtrl',
31         resolve : resolver
32     });
33 })
34
35 .factory('itemSvc', 
36        ['egCore','$q',
37 function(egCore , $q) {
38
39     var service = {
40         currently_generating : false,
41         auto_gen_barcode : false,
42         barcode_checkdigit : false,
43         new_cp_id : 0,
44         new_cn_id : 0,
45         tree : {}, // holds lib->cn->copy hash stack
46         copies : [] // raw copy list
47     };
48
49     service.nextBarcode = function(bc) {
50         service.currently_generating = true;
51         return egCore.net.request(
52             'open-ils.cat',
53             'open-ils.cat.item.barcode.autogen',
54             egCore.auth.token(),
55             bc, 1, { checkdigit: service.barcode_checkdigit }
56         ).then(function(resp) { // get_barcodes
57             var evt = egCore.evt.parse(resp);
58             if (!evt) return resp[0];
59             return '';
60         });
61     };
62
63     service.checkBarcode = function(bc) {
64         if (!service.barcode_checkdigit) return true;
65         if (bc != Number(bc)) return false;
66         bc = bc.toString();
67         // "16.00" == Number("16.00"), but the . is bad.
68         // Throw out any barcode that isn't just digits
69         if (bc.search(/\D/) != -1) return false;
70         var last_digit = bc.substr(bc.length-1);
71         var stripped_barcode = bc.substr(0,bc.length-1);
72         return service.barcodeCheckdigit(stripped_barcode).toString() == last_digit;
73     };
74
75     service.barcodeCheckdigit = function(bc) {
76         var reverse_barcode = bc.toString().split('').reverse();
77         var check_sum = 0; var multiplier = 2;
78         for (var i = 0; i < reverse_barcode.length; i++) {
79             var digit = reverse_barcode[i];
80             var product = digit * multiplier; product = product.toString();
81             var temp_sum = 0;
82             for (var j = 0; j < product.length; j++) {
83                 temp_sum += Number( product[j] );
84             }
85             check_sum += Number( temp_sum );
86             multiplier = ( multiplier == 2 ? 1 : 2 );
87         }
88         check_sum = check_sum.toString();
89         var next_multiple_of_10 = (check_sum.match(/(\d*)\d$/)[1] * 10) + 10;
90         var check_digit = next_multiple_of_10 - Number(check_sum); if (check_digit == 10) check_digit = 0;
91         return check_digit;
92     };
93
94     // returns a promise resolved with the list of circ mods
95     service.get_classifications = function() {
96         if (egCore.env.acnc)
97             return $q.when(egCore.env.acnc.list);
98
99         return egCore.pcrud.retrieveAll('acnc', null, {atomic : true})
100         .then(function(list) {
101             egCore.env.absorbList(list, 'acnc');
102             return list;
103         });
104     };
105
106     service.get_prefixes = function(org) {
107         return egCore.pcrud.search('acnp',
108             {owning_lib : egCore.org.fullPath(org, true)},
109             {order_by : { acnp : 'label_sortkey' }}, {atomic : true}
110         );
111
112     };
113
114     service.get_statcats = function(orgs) {
115         return egCore.pcrud.search('asc',
116             {owner : orgs},
117             { flesh : 1,
118               flesh_fields : {
119                 asc : ['owner','entries']
120               }
121             },
122             { atomic : true }
123         );
124     };
125
126     service.get_locations = function(orgs) {
127         return egCore.pcrud.search('acpl',
128             {owning_lib : orgs},
129             {order_by : { acpl : 'name' }}, {atomic : true}
130         );
131     };
132
133     service.get_suffixes = function(org) {
134         return egCore.pcrud.search('acns',
135             {owning_lib : egCore.org.fullPath(org, true)},
136             {order_by : { acns : 'label_sortkey' }}, {atomic : true}
137         );
138
139     };
140
141     service.get_statuses = function() {
142         if (egCore.env.ccs)
143             return $q.when(egCore.env.ccs.list);
144
145         return egCore.pcrud.retrieveAll('ccs', {order_by : { ccs : 'name' }}, {atomic : true}).then(
146             function(list) {
147                 egCore.env.absorbList(list, 'ccs');
148                 return list;
149             }
150         );
151
152     };
153
154     service.get_circ_mods = function() {
155         if (egCore.env.ccm)
156             return $q.when(egCore.env.ccm.list);
157
158         return egCore.pcrud.retrieveAll('ccm', {}, {atomic : true}).then(
159             function(list) {
160                 egCore.env.absorbList(list, 'ccm');
161                 return list;
162             }
163         );
164
165     };
166
167     service.get_circ_types = function() {
168         if (egCore.env.citm)
169             return $q.when(egCore.env.citm.list);
170
171         return egCore.pcrud.retrieveAll('citm', {}, {atomic : true}).then(
172             function(list) {
173                 egCore.env.absorbList(list, 'citm');
174                 return list;
175             }
176         );
177
178     };
179
180     service.get_age_protects = function() {
181         if (egCore.env.crahp)
182             return $q.when(egCore.env.crahp.list);
183
184         return egCore.pcrud.retrieveAll('crahp', {}, {atomic : true}).then(
185             function(list) {
186                 egCore.env.absorbList(list, 'crahp');
187                 return list;
188             }
189         );
190
191     };
192
193     service.get_floating_groups = function() {
194         if (egCore.env.cfg)
195             return $q.when(egCore.env.cfg.list);
196
197         return egCore.pcrud.retrieveAll('cfg', {}, {atomic : true}).then(
198             function(list) {
199                 egCore.env.absorbList(list, 'cfg');
200                 return list;
201             }
202         );
203
204     };
205
206     service.bmp_parts = {};
207     service.get_parts = function(rec) {
208         if (service.bmp_parts[rec])
209             return $q.when(service.bmp_parts[rec]);
210
211         return egCore.pcrud.search('bmp',
212             {record : rec, deleted : 'f'},
213             null, {atomic : true}
214         ).then(function(list) {
215             service.bmp_parts[rec] = list;
216             return list;
217         });
218
219     };
220
221     service.flesh = {   
222         flesh : 3, 
223         flesh_fields : {
224             acp : ['call_number','parts','stat_cat_entries', 'notes'],
225             acn : ['label_class','prefix','suffix']
226         }
227     }
228
229     service.addCopy = function (cp) {
230
231         if (!cp.parts()) cp.parts([]); // just in case...
232
233         var lib = cp.call_number().owning_lib();
234         var cn = cp.call_number().id();
235
236         if (!service.tree[lib]) service.tree[lib] = {};
237         if (!service.tree[lib][cn]) service.tree[lib][cn] = [];
238
239         service.tree[lib][cn].push(cp);
240         service.copies.push(cp);
241     }
242
243     service.fetchIds = function(idList) {
244         service.tree = {}; // clear the tree on fetch
245         service.copies = []; // clear the copy list on fetch
246         return egCore.pcrud.search('acp', { 'id' : idList }, service.flesh).then(null,null,
247             function(copy) {
248                 service.addCopy(copy);
249             }
250         );
251     }
252
253     // create a new acp object with default values
254     // (both hard-coded and coming from OU settings)
255     service.generateNewCopy = function(callNumber, owningLib, isFastAdd, isNew) {
256         var cp = new egCore.idl.acp();
257         cp.id( --service.new_cp_id );
258         if (isNew) {
259             cp.isnew( true );
260         }
261         cp.circ_lib( owningLib );
262         cp.call_number( callNumber );
263         cp.deposit(0);
264         cp.price(0);
265         cp.deposit_amount(0);
266         cp.fine_level(2); // Normal
267         cp.loan_duration(2); // Normal
268         cp.location(1); // Stacks
269         cp.circulate('t');
270         cp.holdable('t');
271         cp.opac_visible('t');
272         cp.ref('f');
273         cp.mint_condition('t');
274
275         var status_setting = isFastAdd ?
276             'cat.default_copy_status_fast' :
277             'cat.default_copy_status_normal';
278         egCore.org.settings(
279             [status_setting],
280             owningLib
281         ).then(function(set) {
282             var default_ccs = set[status_setting] || 
283                 (isFastAdd ? 0 : 5); // 0 is Available, 5 is In Process
284             cp.status(default_ccs);
285         });
286
287         return cp;
288     }
289
290     return service;
291 }])
292
293 .directive("egVolCopyEdit", function () {
294     return {
295         restrict: 'E',
296         replace: true,
297         template:
298             '<div class="row">'+
299                 '<div class="col-xs-5" ng-class="{'+"'has-error'"+':barcode_has_error}">'+
300                     '<input id="{{callNumber.id()}}_{{copy.id()}}"'+
301                     ' eg-enter="nextBarcode(copy.id())" class="form-control"'+
302                     ' type="text" ng-model="barcode" ng-change="updateBarcode()"/>'+
303                 '</div>'+
304                 '<div class="col-xs-3"><input class="form-control" type="number" ng-model="copy_number" ng-change="updateCopyNo()"/></div>'+
305                 '<div class="col-xs-4"><eg-basic-combo-box eg-disabled="record == 0" list="parts" selected="part"></eg-basic-combo-box></div>'+
306             '</div>',
307
308         scope: { focusNext: "=", copy: "=", callNumber: "=", index: "@", record: "@" },
309         controller : ['$scope','itemSvc','egCore',
310             function ( $scope , itemSvc , egCore ) {
311                 $scope.new_part_id = 0;
312                 $scope.barcode_has_error = false;
313
314                 $scope.nextBarcode = function (i) {
315                     $scope.focusNext(i, $scope.barcode);
316                 }
317
318                 $scope.updateBarcode = function () {
319                     if ($scope.barcode != '')
320                         $scope.barcode_has_error = !Boolean(itemSvc.checkBarcode($scope.barcode));
321                     $scope.copy.barcode($scope.barcode);
322                     $scope.copy.ischanged(1);
323                     if (itemSvc.currently_generating)
324                         $scope.focusNext($scope.copy.id(), $scope.barcode);
325                 };
326
327                 $scope.updateCopyNo = function () { $scope.copy.copy_number($scope.copy_number); $scope.copy.ischanged(1); };
328                 $scope.updatePart = function () {
329                     if ($scope.part) {
330                         var p = $scope.part_list.filter(function (x) {
331                             return x.label() == $scope.part
332                         });
333                         if (p.length > 0) { // preexisting part
334                             $scope.copy.parts(p)
335                         } else { // create one...
336                             var part = new egCore.idl.bmp();
337                             part.id( --$scope.new_part_id );
338                             part.isnew( true );
339                             part.label( $scope.part );
340                             part.record( $scope.callNumber.record() );
341                             $scope.copy.parts([part]);
342                             $scope.copy.ischanged(1);
343                         }
344                     } else {
345                         $scope.copy.parts([]);
346                     }
347                 }
348                 $scope.$watch('part', $scope.updatePart);
349
350                 $scope.barcode = $scope.copy.barcode();
351                 $scope.copy_number = $scope.copy.copy_number();
352
353                 if ($scope.copy.parts()) {
354                     $scope.part = $scope.copy.parts()[0];
355                     if ($scope.part) $scope.part = $scope.part.label();
356                 };
357
358                 $scope.parts = [];
359                 $scope.part_list = [];
360
361                 itemSvc.get_parts($scope.callNumber.record()).then(function(list){
362                     $scope.part_list = list;
363                     angular.forEach(list, function(p){ $scope.parts.push(p.label()) });
364                     $scope.parts = angular.copy($scope.parts);
365                 });
366
367             }
368         ]
369
370     }
371 })
372
373 .directive("egVolRow", function () {
374     return {
375         restrict: 'E',
376         replace: true,
377         transclude: true,
378         template:
379             '<div class="row">'+
380                 '<div class="col-xs-2">'+
381                     '<select ng-disabled="record == 0" class="form-control" ng-model="classification" ng-change="updateClassification()" ng-options="cl.name() for cl in classification_list"/>'+
382                 '</div>'+
383                 '<div class="col-xs-1">'+
384                     '<select ng-disabled="record == 0" class="form-control" ng-model="prefix" ng-change="updatePrefix()" ng-options="p.label() for p in prefix_list"/>'+
385                 '</div>'+
386                 '<div class="col-xs-2"><input ng-disabled="record == 0" class="form-control" type="text" ng-change="updateLabel()" ng-model="label"/></div>'+
387                 '<div class="col-xs-1">'+
388                     '<select ng-disabled="record == 0" class="form-control" ng-model="suffix" ng-change="updateSuffix()" ng-options="s.label() for s in suffix_list"/>'+
389                 '</div>'+
390                 '<div ng-hide="onlyVols" class="col-xs-1"><input ng-disabled="record == 0" class="form-control" type="number" ng-model="copy_count" min="{{orig_copy_count}}" ng-change="changeCPCount()"></div>'+
391                 '<div ng-hide="onlyVols" class="col-xs-5">'+
392                     '<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>'+
393                 '</div>'+
394             '</div>',
395
396         scope: {focusNext: "=", allcopies: "=", copies: "=", onlyVols: "=", record: "@" },
397         controller : ['$scope','itemSvc','egCore',
398             function ( $scope , itemSvc , egCore ) {
399                 $scope.callNumber =  $scope.copies[0].call_number();
400
401                 $scope.idTracker = function (x) { if (x && x.id) return x.id() };
402
403                 // XXX $() is not working! arg
404                 $scope.focusNextBarcode = function (i, prev_bc) {
405                     var n;
406                     var yep = false;
407                     angular.forEach($scope.copies, function (cp) {
408                         if (n) return;
409
410                         if (cp.id() == i) {
411                             yep = true;
412                             return;
413                         }
414
415                         if (yep) n = cp.id();
416                     });
417
418                     if (n) {
419                         var next = '#' + $scope.callNumber.id() + '_' + n;
420                         var el = $(next);
421                         if (el) {
422                             if (!itemSvc.currently_generating) el.focus();
423                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
424                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
425                                     el.focus();
426                                     el.val(bc);
427                                     el.trigger('change');
428                                 });
429                             } else {
430                                 itemSvc.currently_generating = false;
431                             }
432                         }
433                     } else {
434                         $scope.focusNext($scope.callNumber.id(),prev_bc)
435                     }
436                 }
437
438                 $scope.suffix_list = [];
439                 itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
440                     $scope.suffix_list = list;
441                     $scope.$watch('callNumber.suffix()', function (v) {
442                         if (angular.isObject(v)) v = v.id();
443                         $scope.suffix = $scope.suffix_list.filter( function (s) {
444                             return s.id() == v;
445                         })[0];
446                     });
447
448                 });
449                 $scope.updateSuffix = function () {
450                     angular.forEach($scope.copies, function(cp) {
451                         cp.call_number().suffix($scope.suffix);
452                         cp.call_number().ischanged(1);
453                     });
454                 }
455
456                 $scope.prefix_list = [];
457                 itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
458                     $scope.prefix_list = list;
459                     $scope.$watch('callNumber.prefix()', function (v) {
460                         if (angular.isObject(v)) v = v.id();
461                         $scope.prefix = $scope.prefix_list.filter(function (p) {
462                             return p.id() == v;
463                         })[0];
464                     });
465
466                 });
467                 $scope.updatePrefix = function () {
468                     angular.forEach($scope.copies, function(cp) {
469                         cp.call_number().prefix($scope.prefix);
470                         cp.call_number().ischanged(1);
471                     });
472                 }
473                 $scope.$watch('callNumber.owning_lib()', function(oldLib, newLib) {
474                     if (oldLib == newLib) return;
475                     var currentPrefix = $scope.callNumber.prefix();
476                     if (angular.isObject(currentPrefix)) currentPrefix = currentPrefix.id();
477                     itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
478                         $scope.prefix_list = list;
479                         var newPrefixId = $scope.prefix_list.filter(function (p) {
480                             return p.id() == currentPrefix;
481                         })[0] || -1;
482                         if (newPrefixId.id) newPrefixId = newPrefixId.id();
483                         $scope.prefix = $scope.prefix_list.filter(function (p) {
484                             return p.id() == newPrefixId;
485                         })[0];
486                         if ($scope.newPrefixId != currentPrefix) {
487                             $scope.callNumber.prefix($scope.prefix);
488                         }
489                     });
490                     var currentSuffix = $scope.callNumber.suffix();
491                     if (angular.isObject(currentSuffix)) currentSuffix = currentSuffix.id();
492                     itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
493                         $scope.suffix_list = list;
494                         var newSuffixId = $scope.suffix_list.filter(function (s) {
495                             return s.id() == currentSuffix;
496                         })[0] || -1;
497                         if (newSuffixId.id) newSuffixId = newSuffixId.id();
498                         $scope.suffix = $scope.suffix_list.filter(function (s) {
499                             return s.id() == newSuffixId;
500                         })[0];
501                         if ($scope.newSuffixId != currentSuffix) {
502                             $scope.callNumber.suffix($scope.suffix);
503                         }
504                     });
505                 });
506
507                 $scope.classification_list = [];
508                 itemSvc.get_classifications().then(function(list){
509                     $scope.classification_list = list;
510                     $scope.$watch('callNumber.label_class()', function (v) {
511                         if (angular.isObject(v)) v = v.id();
512                         $scope.classification = $scope.classification_list.filter(function (c) {
513                             return c.id() == v;
514                         })[0];
515                     });
516
517                 });
518                 $scope.updateClassification = function () {
519                     angular.forEach($scope.copies, function(cp) {
520                         cp.call_number().label_class($scope.classification);
521                         cp.call_number().ischanged(1);
522                     });
523                 }
524
525                 $scope.updateLabel = function () {
526                     angular.forEach($scope.copies, function(cp) {
527                         cp.call_number().label($scope.label);
528                         cp.call_number().ischanged(1);
529                     });
530                 }
531
532                 $scope.$watch('callNumber.label()', function (v) {
533                     $scope.label = v;
534                 });
535
536                 $scope.prefix = $scope.callNumber.prefix();
537                 $scope.suffix = $scope.callNumber.suffix();
538                 $scope.classification = $scope.callNumber.label_class();
539                 $scope.label = $scope.callNumber.label();
540
541                 $scope.copy_count = $scope.copies.length;
542                 $scope.orig_copy_count = $scope.copy_count;
543
544                 $scope.changeCPCount = function () {
545                     while ($scope.copy_count > $scope.copies.length) {
546                         var cp = itemSvc.generateNewCopy(
547                             $scope.callNumber,
548                             $scope.callNumber.owning_lib()
549                         );
550                         $scope.copies.push( cp );
551                         $scope.allcopies.push( cp );
552
553                     }
554
555                     if ($scope.copy_count >= $scope.orig_copy_count) {
556                         var how_many = $scope.copies.length - $scope.copy_count;
557                         if (how_many > 0) {
558                             var dead = $scope.copies.splice($scope.copy_count,how_many);
559                             $scope.callNumber.copies($scope.copies);
560
561                             // Trimming the global list is a bit more tricky
562                             angular.forEach( dead, function (d) {
563                                 angular.forEach( $scope.allcopies, function (l, i) { 
564                                     if (l === d) $scope.allcopies.splice(i,1);
565                                 });
566                             });
567                         }
568                     }
569                 }
570
571             }
572         ]
573
574     }
575 })
576
577 .directive("egVolEdit", function () {
578     return {
579         restrict: 'E',
580         replace: true,
581         template:
582             '<div class="row">'+
583                 '<div class="col-xs-1"><eg-org-selector alldisabled="{{record == 0}}" selected="owning_lib" disable-test="cant_have_vols"></eg-org-selector></div>'+
584                 '<div class="col-xs-1"><input ng-disabled="record == 0" class="form-control" type="number" min="{{orig_cn_count}}" ng-model="cn_count" ng-change="changeCNCount()"/></div>'+
585                 '<div class="col-xs-10">'+
586                     '<eg-vol-row only-vols="onlyVols" record="{{record}}"'+
587                         'ng-repeat="(cn,copies) in struct | orderBy:cn track by cn" '+
588                         'focus-next="focusNextFirst" copies="copies" allcopies="allcopies">'+
589                     '</eg-vol-row>'+
590                 '</div>'+
591             '</div>',
592
593         scope: { focusNext: "=", allcopies: "=", struct: "=", lib: "@", record: "@", onlyVols: "=" },
594         controller : ['$scope','itemSvc','egCore',
595             function ( $scope , itemSvc , egCore ) {
596                 $scope.first_cn = Object.keys($scope.struct)[0];
597                 $scope.full_cn = $scope.struct[$scope.first_cn][0].call_number();
598
599                 $scope.defaults = {};
600                 egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
601                     if (t) {
602                         $scope.defaults = t;
603                     }
604                 });
605
606                 $scope.focusNextFirst = function(prev_cn,prev_bc) {
607                     var n;
608                     var yep = false;
609                     angular.forEach(Object.keys($scope.struct).sort(), function (cn) {
610                         if (n) return;
611
612                         if (cn == prev_cn) {
613                             yep = true;
614                             return;
615                         }
616
617                         if (yep) n = cn;
618                     });
619
620                     if (n) {
621                         var next = '#' + n + '_' + $scope.struct[n][0].id();
622                         var el = $(next);
623                         if (el) {
624                             if (!itemSvc.currently_generating) el.focus();
625                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
626                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
627                                     el.focus();
628                                     el.val(bc);
629                                     el.trigger('change');
630                                 });
631                             } else {
632                                 itemSvc.currently_generating = false;
633                             }
634                         }
635                     } else {
636                         $scope.focusNext($scope.lib, prev_bc);
637                     }
638                 }
639
640                 $scope.cn_count = Object.keys($scope.struct).length;
641                 $scope.orig_cn_count = $scope.cn_count;
642
643                 $scope.owning_lib = egCore.org.get($scope.lib);
644                 $scope.$watch('owning_lib', function (oldLib, newLib) {
645                     if (oldLib == newLib) return;
646                     angular.forEach( Object.keys($scope.struct), function (cn) {
647                         $scope.struct[cn][0].call_number().owning_lib( $scope.owning_lib.id() );
648                         $scope.struct[cn][0].call_number().ischanged(1);
649                     });
650                 });
651
652                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
653
654                 $scope.$watch('cn_count', function (n) {
655                     var o = Object.keys($scope.struct).length;
656                     if (n > o) { // adding
657                         for (var i = o; o < n; o++) {
658                             var cn = new egCore.idl.acn();
659                             cn.id( --itemSvc.new_cn_id );
660                             cn.isnew( true );
661                             cn.prefix( $scope.defaults.prefix || -1 );
662                             cn.suffix( $scope.defaults.suffix || -1 );
663                             cn.label_class( $scope.defaults.classification || 1 );
664                             cn.owning_lib( $scope.owning_lib.id() );
665                             cn.record( $scope.full_cn.record() );
666
667                             var cp = itemSvc.generateNewCopy(cn, $scope.owning_lib.id());
668
669                             $scope.struct[cn.id()] = [cp];
670                             $scope.allcopies.push(cp);
671                             if (!scope.defaults.classification) {
672                                 egCore.org.settings(
673                                     ['cat.default_classification_scheme'],
674                                     cn.owning_lib()
675                                 ).then(function (val) {
676                                     cn.label_class(val['cat.default_classification_scheme']);
677                                 });
678                             }
679                         }
680                     } else if (n < o && n >= $scope.orig_cn_count) { // removing
681                         var how_many = o - n;
682                         var list = Object
683                                 .keys($scope.struct)
684                                 .sort(function(a, b){return parseInt(a)-parseInt(b)})
685                                 .filter(function(x){ return parseInt(x) <= 0 });
686                         for (var i = 0; i < how_many; i++) {
687                             // Trimming the global list is a bit more tricky
688                             angular.forEach($scope.struct[list[i]], function (d) {
689                                 angular.forEach( $scope.allcopies, function (l, j) { 
690                                     if (l === d) $scope.allcopies.splice(j,1);
691                                 });
692                             });
693                             delete $scope.struct[list[i]];
694                         }
695                     }
696                 });
697             }
698         ]
699
700     }
701 })
702
703 /**
704  * Edit controller!
705  */
706 .controller('EditCtrl', 
707        ['$scope','$q','$window','$routeParams','$location','$timeout','egCore','egNet','egGridDataProvider','itemSvc','$modal',
708 function($scope , $q , $window , $routeParams , $location , $timeout , egCore , egNet , egGridDataProvider , itemSvc , $modal) {
709
710     $scope.defaults = { // If defaults are not set at all, allow everything
711         barcode_checkdigit : false,
712         auto_gen_barcode : false,
713         statcats : true,
714         copy_notes : true,
715         attributes : {
716             status : true,
717             loan_duration : true,
718             fine_level : true,
719             cost : true,
720             alerts : true,
721             deposit : true,
722             deposit_amount : true,
723             opac_visible : true,
724             price : true,
725             circulate : true,
726             mint_condition : true,
727             circ_lib : true,
728             ref : true,
729             circ_modifier : true,
730             circ_as_type : true,
731             location : true,
732             holdable : true,
733             age_protect : true,
734             floating : true
735         }
736     };
737
738     $scope.embedded = ($routeParams.mode && $routeParams.mode == 'embedded') ? true : false;
739
740     $scope.saveDefaults = function () {
741         egCore.hatch.setItem('cat.copy.defaults', $scope.defaults);
742     }
743
744     $scope.fetchDefaults = function () {
745         egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
746             if (t) {
747                 $scope.defaults = t;
748                 if (!$scope.batch) $scope.batch = {};
749                 $scope.batch.classification = $scope.defaults.classification;
750                 $scope.batch.prefix = $scope.defaults.prefix;
751                 $scope.batch.suffix = $scope.defaults.suffix;
752                 $scope.working.statcat_filter = $scope.defaults.statcat_filter;
753                 if (typeof $scope.defaults.statcat_filter == 'object') {
754                     // want fieldmapper object here...
755                     $scope.defaults.statcat_filter =
756                          egCore.idl.Clone($scope.defaults.statcat_filter);
757                     // ... and ID here
758                     $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
759                 }
760                 if ($scope.defaults.always_volumes) $scope.show_vols = true;
761                 if ($scope.defaults.barcode_checkdigit) itemSvc.barcode_checkdigit = true;
762                 if ($scope.defaults.auto_gen_barcode) itemSvc.auto_gen_barcode = true;
763             }
764         });
765     }
766     $scope.fetchDefaults();
767
768     $scope.$watch('defaults.statcat_filter', function() {
769         $scope.saveDefaults();
770     });
771     $scope.$watch('defaults.auto_gen_barcode', function (n,o) {
772         itemSvc.auto_gen_barcode = n
773     });
774
775     $scope.$watch('defaults.barcode_checkdigit', function (n,o) {
776         itemSvc.barcode_checkdigit = n
777     });
778
779     $scope.dirty = false;
780     $scope.$watch('dirty',
781         function(newVal, oldVal) {
782             if (newVal && newVal != oldVal) {
783                 $($window).on('beforeunload.edit', function(){
784                     return 'There is unsaved data!'
785                 });
786             } else {
787                 $($window).off('beforeunload.edit');
788             }
789         }
790     );
791
792     $scope.only_vols = false;
793     $scope.show_vols = true;
794     $scope.show_copies = true;
795
796     $scope.tracker = function (x,f) { if (x) return x[f]() };
797     $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
798     $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
799
800     $scope.orgById = function (id) { return egCore.org.get(id) }
801     $scope.statusById = function (id) {
802         return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
803     }
804     $scope.locationById = function (id) {
805         return $scope.location_cache[''+id];
806     }
807
808     $scope.workingToComplete = function () {
809         angular.forEach( $scope.workingGridControls.selectedItems(), function (c) {
810             angular.forEach( itemSvc.copies, function (w, i) {
811                 if (c === w)
812                     $scope.completed_copies = $scope.completed_copies.concat(itemSvc.copies.splice(i,1));
813             });
814         });
815
816         return true;
817     }
818
819     $scope.completeToWorking = function () {
820         angular.forEach( $scope.completedGridControls.selectedItems(), function (c) {
821             angular.forEach( $scope.completed_copies, function (w, i) {
822                 if (c === w)
823                     itemSvc.copies = itemSvc.copies.concat($scope.completed_copies.splice(i,1));
824             });
825         });
826
827         return true;
828     }
829
830     createSimpleUpdateWatcher = function (field) {
831         return $scope.$watch('working.' + field, function () {
832             var newval = $scope.working[field];
833
834             if (typeof newval != 'undefined') {
835                 if (angular.isObject(newval)) { // we'll use the pkey
836                     if (newval.id) newval = newval.id();
837                     else if (newval.code) newval = newval.code();
838                 }
839
840                 if (""+newval == "" || newval == null) {
841                     $scope.working[field] = undefined;
842                     newval = null;
843                 }
844
845                 if ($scope.workingGridControls && $scope.workingGridControls.selectedItems) {
846                     angular.forEach(
847                         $scope.workingGridControls.selectedItems(),
848                         function (cp) {
849                             if (cp[field]() !== newval) {
850                                 cp[field](newval);
851                                 cp.ischanged(1);
852                                 $scope.dirty = true;
853                             }
854                         }
855                     );
856                 }
857             }
858         });
859     }
860
861     $scope.working = {
862         statcats: {},
863         statcat_filter: undefined
864     };
865
866     $scope.statcatUpdate = function (id) {
867         var newval = $scope.working.statcats[id];
868
869         if (typeof newval != 'undefined') {
870             if (angular.isObject(newval)) { // we'll use the pkey
871                 newval = newval.id();
872             }
873     
874             if (""+newval == "" || newval == null) {
875                 $scope.working.statcats[id] = undefined;
876                 newval = null;
877             }
878     
879             if (!$scope.in_item_select && $scope.workingGridControls && $scope.workingGridControls.selectedItems) {
880                 angular.forEach(
881                     $scope.workingGridControls.selectedItems(),
882                     function (cp) {
883                         $scope.dirty = true;
884
885                         cp.stat_cat_entries(
886                             angular.forEach( cp.stat_cat_entries(), function (e) {
887                                 if (e.stat_cat() == id) { // mark deleted
888                                     e.isdeleted(1);
889                                 }
890                             })
891                         );
892     
893                         if (newval) {
894                             var e = new egCore.idl.ascecm();
895                             e.isnew( 1 );
896                             e.owning_copy( cp.id() );
897                             e.stat_cat( id );
898                             e.stat_cat_entry( newval );
899
900                             cp.stat_cat_entries(
901                                 cp.stat_cat_entries().concat([ e ])
902                             );
903
904                         }
905
906                         cp.stat_cat_entries( // trim out ephemeral deleted ones
907                             cp.stat_cat_entries().filter(function (e) {
908                                 if (Boolean(e.isnew())) {
909                                     if (Boolean(e.isdeleted())) {
910                                         return false;
911                                     }
912                                 }
913                                 return true;
914                             })
915                         );
916    
917                         cp.ischanged(1);
918                     }
919                 );
920             }
921         }
922     }
923
924     var dataKey = $routeParams.dataKey;
925     console.debug('dataKey: ' + dataKey);
926
927     if (dataKey && dataKey.length > 0) {
928
929         $scope.templates = {};
930         $scope.template_name = '';
931         $scope.template_name_list = [];
932
933         $scope.fetchTemplates = function () {
934             egCore.hatch.getItem('cat.copy.templates').then(function(t) {
935                 if (t) {
936                     $scope.templates = t;
937                     $scope.template_name_list = Object.keys(t);
938                 }
939             });
940             egCore.hatch.getItem('cat.copy.last_template').then(function(t) {
941                 if (t) $scope.template_name = t;
942             });
943         }
944         $scope.fetchTemplates();
945
946         $scope.applyTemplate = function (n) {
947             angular.forEach($scope.templates[n], function (v,k) {
948                 if (k == 'circ_lib') {
949                     $scope.working[k] = egCore.org.get(v);
950                 } else if (!angular.isObject(v)) {
951                     $scope.working[k] = angular.copy(v);
952                 } else {
953                     angular.forEach(v, function (sv,sk) {
954                         if (k == 'callnumber') {
955                             angular.forEach(v, function (cnv,cnk) {
956                                 $scope.batch[cnk] = cnv;
957                             });
958                             $scope.applyBatchCNValues();
959                         } else {
960                             $scope.working[k][sk] = angular.copy(sv);
961                             if (k == 'statcats') $scope.statcatUpdate(sk);
962                         }
963                     });
964                 }
965             });
966             egCore.hatch.setItem('cat.copy.last_template', n);
967         }
968
969         $scope.copytab = 'working';
970         $scope.tab = 'edit';
971         $scope.summaryRecord = null;
972         $scope.record_id = null;
973         $scope.data = {};
974         $scope.completed_copies = [];
975         $scope.location_orgs = [];
976         $scope.location_cache = {};
977         $scope.statcats = [];
978         if (!$scope.batch) $scope.batch = {};
979
980         $scope.applyBatchCNValues = function () {
981             if ($scope.data.tree) {
982                 angular.forEach($scope.data.tree, function(cn_hash) {
983                     angular.forEach(cn_hash, function(copies) {
984                         angular.forEach(copies, function(cp) {
985                             if (typeof $scope.batch.classification != 'undefined' && $scope.batch.classification != '') {
986                                 var label_class = $scope.classification_list.filter(function(p){ return p.id() == $scope.batch.classification })[0];
987                                 cp.call_number().label_class(label_class);
988                                 cp.call_number().ischanged(1);
989                                 $scope.dirty = true;
990                             }
991                             if (typeof $scope.batch.prefix != 'undefined' && $scope.batch.prefix != '') {
992                                 var prefix = $scope.prefix_list.filter(function(p){ return p.id() == $scope.batch.prefix })[0];
993                                 cp.call_number().prefix(prefix);
994                                 cp.call_number().ischanged(1);
995                                 $scope.dirty = true;
996                             }
997                             if (typeof $scope.batch.label != 'undefined' && $scope.batch.label != '') {
998                                 cp.call_number().label($scope.batch.label);
999                                 cp.call_number().ischanged(1);
1000                                 $scope.dirty = true;
1001                             }
1002                             if (typeof $scope.batch.suffix != 'undefined' && $scope.batch.suffix != '') {
1003                                 var suffix = $scope.suffix_list.filter(function(p){ return p.id() == $scope.batch.suffix })[0];
1004                                 cp.call_number().suffix(suffix);
1005                                 cp.call_number().ischanged(1);
1006                                 $scope.dirty = true;
1007                             }
1008                         });
1009                     });
1010                 });
1011             }
1012         }
1013
1014         $scope.clearWorking = function () {
1015             angular.forEach($scope.working, function (v,k,o) {
1016                 if (!angular.isObject(v)) {
1017                     if (typeof v != 'undefined')
1018                         $scope.working[k] = undefined;
1019                 } else if (k != 'circ_lib') {
1020                     angular.forEach(v, function (sv,sk) {
1021                         if (typeof v != 'undefined')
1022                             $scope.working[k][sk] = undefined;
1023                     });
1024                 }
1025             });
1026             $scope.working.circ_lib = undefined; // special
1027         }
1028
1029         $scope.completedGridDataProvider = egGridDataProvider.instance({
1030             get : function(offset, count) {
1031                 //return provider.arrayNotifier(itemSvc.copies, offset, count);
1032                 return this.arrayNotifier($scope.completed_copies, offset, count);
1033             }
1034         });
1035
1036         $scope.completedGridControls = {};
1037
1038         $scope.workingGridDataProvider = egGridDataProvider.instance({
1039             get : function(offset, count) {
1040                 //return provider.arrayNotifier(itemSvc.copies, offset, count);
1041                 return this.arrayNotifier(itemSvc.copies, offset, count);
1042             }
1043         });
1044
1045         $scope.workingGridControls = {};
1046         $scope.add_vols_copies = false;
1047         $scope.is_fast_add = false;
1048
1049         egNet.request(
1050             'open-ils.actor',
1051             'open-ils.actor.anon_cache.get_value',
1052             dataKey, 'edit-these-copies'
1053         ).then(function (data) {
1054
1055             if (data) {
1056                 if (data.hide_vols && !$scope.defaults.always_volumes) $scope.show_vols = false;
1057                 if (data.hide_copies) {
1058                     $scope.show_copies = false;
1059                     $scope.only_vols = true;
1060                 }
1061
1062                 $scope.record_id = data.record_id;
1063
1064                 function fetchRaw () {
1065                     if (!$scope.only_vols) $scope.dirty = true;
1066                     $scope.add_vols_copies = true;
1067
1068                     /* data.raw data structure looks like this:
1069                      * [{
1070                      *      callnumber : $cn_id, // optional, to add a copy to a cn
1071                      *      owner      : $org, // optional, defaults to ws_ou
1072                      *      label      : $cn_label, // optional, to supply a label on a new cn
1073                      *      barcode    : $cp_barcode // optional, to supply a barcode on a new cp
1074                      *      fast_add   : boolean // optional, to specify whether this came
1075                      *                              in as a fast add
1076                      * },...]
1077                      * 
1078                      * All can be left out and a completely empty vol/copy combo will be vivicated.
1079                      */
1080
1081                     angular.forEach(
1082                         data.raw,
1083                         function (proto) {
1084                             if (proto.fast_add) $scope.is_fast_add = true;
1085                             if (proto.callnumber) {
1086                                 return egCore.pcrud.retrieve('acn', proto.callnumber)
1087                                 .then(function(cn) {
1088                                     var cp = new itemSvc.generateNewCopy(
1089                                         cn,
1090                                         proto.owner || egCore.auth.user().ws_ou(),
1091                                         $scope.is_fast_add,
1092                                         ((!$scope.only_vols) ? true : false)
1093                                     );
1094
1095                                     if (proto.barcode) cp.barcode( proto.barcode );
1096
1097                                     itemSvc.addCopy(cp)
1098                                 });
1099                             } else {
1100                                 var cn = new egCore.idl.acn();
1101                                 cn.id( --itemSvc.new_cn_id );
1102                                 cn.isnew( true );
1103                                 cn.prefix( $scope.defaults.prefix || -1 );
1104                                 cn.suffix( $scope.defaults.suffix || -1 );
1105                                 cn.owning_lib( proto.owner || egCore.auth.user().ws_ou() );
1106                                 cn.record( $scope.record_id );
1107                                 egCore.org.settings(
1108                                     ['cat.default_classification_scheme'],
1109                                     cn.owning_lib()
1110                                 ).then(function (val) {
1111                                     cn.label_class(
1112                                         $scope.defaults.classification ||
1113                                         val['cat.default_classification_scheme'] ||
1114                                         1
1115                                     );
1116                                     if (proto.label) {
1117                                         cn.label( proto.label );
1118                                     } else {
1119                                         egCore.net.request(
1120                                             'open-ils.cat',
1121                                             'open-ils.cat.biblio.record.marc_cn.retrieve',
1122                                             $scope.record_id,
1123                                             cn.label_class()
1124                                         ).then(function(cn_array) {
1125                                             if (cn_array.length > 0) {
1126                                                 for (var field in cn_array[0]) {
1127                                                     cn.label( cn_array[0][field] );
1128                                                     break;
1129                                                 }
1130                                             }
1131                                         });
1132                                     }
1133                                 });
1134
1135                                 var cp = new itemSvc.generateNewCopy(
1136                                     cn,
1137                                     proto.owner || egCore.auth.user().ws_ou(),
1138                                     $scope.is_fast_add
1139                                 );
1140
1141                                 if (proto.barcode) cp.barcode( proto.barcode );
1142
1143                                 itemSvc.addCopy(cp)
1144                             }
1145     
1146                         }
1147                     );
1148
1149                     return itemSvc.copies;
1150                 }
1151
1152                 if (data.copies && data.copies.length)
1153                     return itemSvc.fetchIds(data.copies).then(fetchRaw);
1154
1155                 return fetchRaw();
1156
1157             }
1158
1159         }).then( function() {
1160             $scope.data = itemSvc;
1161             $scope.workingGridDataProvider.refresh();
1162         });
1163
1164         $scope.focusNextFirst = function(prev_lib,prev_bc) {
1165             var n;
1166             var yep = false;
1167             angular.forEach(Object.keys($scope.data.tree).sort(), function (lib) {
1168                 if (n) return;
1169
1170                 if (lib == prev_lib) {
1171                     yep = true;
1172                     return;
1173                 }
1174
1175                 if (yep) n = lib;
1176             });
1177
1178             if (n) {
1179                 var first_cn = Object.keys($scope.data.tree[n])[0];
1180                 var next = '#' + first_cn + '_' + $scope.data.tree[n][first_cn][0].id();
1181                 var el = $(next);
1182                 if (el) {
1183                     if (!itemSvc.currently_generating) el.focus();
1184                     if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
1185                         itemSvc.nextBarcode(prev_bc).then(function(bc){
1186                             el.focus();
1187                             el.val(bc);
1188                             el.trigger('change');
1189                         });
1190                     } else {
1191                         itemSvc.currently_generating = false;
1192                     }
1193                 }
1194             }
1195         }
1196
1197         $scope.in_item_select = false;
1198         $scope.afterItemSelect = function() { $scope.in_item_select = false };
1199         $scope.handleItemSelect = function (item_list) {
1200             if (item_list && item_list.length > 0) {
1201                 $scope.in_item_select = true;
1202
1203                 angular.forEach(Object.keys($scope.defaults.attributes), function (attr) {
1204
1205                     var value_hash = {};
1206                     angular.forEach(item_list, function (item) {
1207                         if (item[attr]) {
1208                             var v = item[attr]()
1209                             if (angular.isObject(v)) {
1210                                 if (v.id) v = v.id();
1211                                 else if (v.code) v = v.code();
1212                             }
1213                             value_hash[v] = 1;
1214                         }
1215                     });
1216
1217                     if (Object.keys(value_hash).length == 1) {
1218                         if (attr == 'circ_lib') {
1219                             $scope.working[attr] = egCore.org.get(item_list[0][attr]());
1220                         } else {
1221                             $scope.working[attr] = item_list[0][attr]();
1222                         }
1223                     } else {
1224                         $scope.working[attr] = undefined;
1225                     }
1226                 });
1227
1228                 angular.forEach($scope.statcats, function (sc) {
1229
1230                     var counter = -1;
1231                     var value_hash = {};
1232                     var none = false;
1233                     angular.forEach(item_list, function (item) {
1234                         if (item.stat_cat_entries()) {
1235                             if (item.stat_cat_entries().length > 0) {
1236                                 var right_sc = item.stat_cat_entries().filter(function (e) {
1237                                     return e.stat_cat() == sc.id() && !Boolean(e.isdeleted());
1238                                 });
1239
1240                                 if (right_sc.length > 0) {
1241                                     value_hash[right_sc[0].stat_cat_entry()] = right_sc[0].stat_cat_entry();
1242                                 } else {
1243                                     none = true;
1244                                 }
1245                             }
1246                         } else {
1247                             none = true;
1248                         }
1249                     });
1250
1251                     if (!none && Object.keys(value_hash).length == 1) {
1252                         $scope.working.statcats[sc.id()] = value_hash[Object.keys(value_hash)[0]];
1253                     } else {
1254                         $scope.working.statcats[sc.id()] = undefined;
1255                     }
1256                 });
1257
1258             } else {
1259                 $scope.clearWorking();
1260             }
1261
1262         }
1263
1264         $scope.$watch('data.copies.length', function () {
1265             if ($scope.data.copies) {
1266                 var base_orgs = $scope.data.copies.map(function(cp){
1267                     return cp.circ_lib()
1268                 }).concat(
1269                     $scope.data.copies.map(function(cp){
1270                         return cp.call_number().owning_lib()
1271                     })
1272                 ).concat(
1273                     [egCore.auth.user().ws_ou()]
1274                 ).filter(function(e,i,a){
1275                     return a.lastIndexOf(e) === i;
1276                 });
1277
1278                 var all_orgs = [];
1279                 angular.forEach(base_orgs, function(o) {
1280                     all_orgs = all_orgs.concat( egCore.org.fullPath(o, true) );
1281                 });
1282
1283                 var final_orgs = all_orgs.filter(function(e,i,a){
1284                     return a.lastIndexOf(e) === i;
1285                 }).sort(function(a, b){return parseInt(a)-parseInt(b)});
1286
1287                 if ($scope.location_orgs.toString() != final_orgs.toString()) {
1288                     $scope.location_orgs = final_orgs;
1289                     if ($scope.location_orgs.length) {
1290                         itemSvc.get_locations($scope.location_orgs).then(function(list){
1291                             angular.forEach(list, function(l) {
1292                                 $scope.location_cache[ ''+l.id() ] = l;
1293                             });
1294                             $scope.location_list = list;
1295                         });
1296
1297                         $scope.statcat_filter_list = [];
1298                         angular.forEach($scope.location_orgs, function (o) {
1299                             $scope.statcat_filter_list.push(egCore.org.get(o));
1300                         });
1301
1302                         itemSvc.get_statcats($scope.location_orgs).then(function(list){
1303                             $scope.statcats = list;
1304                             angular.forEach($scope.statcats, function (s) {
1305
1306                                 if (!$scope.working)
1307                                     $scope.working = { statcats: {}, statcat_filter: undefined};
1308                                 if (!$scope.working.statcats)
1309                                     $scope.working.statcats = {};
1310
1311                                 if (!$scope.in_item_select) {
1312                                     $scope.working.statcats[s.id()] = undefined;
1313                                 }
1314                                 createStatcatUpdateWatcher(s.id());
1315                             });
1316                             $scope.in_item_select = false;
1317                         });
1318                     }
1319                 }
1320             }
1321
1322             $scope.workingGridDataProvider.refresh();
1323         });
1324
1325         $scope.statcat_visible = function (sc_owner) {
1326             var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
1327             angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
1328                 if ($scope.working.statcat_filter == ancestor_org.id())
1329                     visible = true;
1330             });
1331             return visible;
1332         }
1333
1334         $scope.suffix_list = [];
1335         itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
1336             $scope.suffix_list = list;
1337         });
1338
1339         $scope.prefix_list = [];
1340         itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
1341             $scope.prefix_list = list;
1342         });
1343
1344         $scope.classification_list = [];
1345         itemSvc.get_classifications().then(function(list){
1346             $scope.classification_list = list;
1347         });
1348
1349         $scope.$watch('completed_copies.length', function () {
1350             $scope.completedGridDataProvider.refresh();
1351         });
1352
1353         $scope.location_list = [];
1354         itemSvc.get_locations().then(function(list){
1355             $scope.location_list = list;
1356         });
1357         createSimpleUpdateWatcher('location');
1358
1359         $scope.status_list = [];
1360         itemSvc.get_statuses().then(function(list){
1361             $scope.status_list = list;
1362         });
1363         createSimpleUpdateWatcher('status');
1364
1365         $scope.circ_modifier_list = [];
1366         itemSvc.get_circ_mods().then(function(list){
1367             $scope.circ_modifier_list = list;
1368         });
1369         createSimpleUpdateWatcher('circ_modifier');
1370
1371         $scope.circ_type_list = [];
1372         itemSvc.get_circ_types().then(function(list){
1373             $scope.circ_type_list = list;
1374         });
1375         createSimpleUpdateWatcher('circ_as_type');
1376
1377         $scope.age_protect_list = [];
1378         itemSvc.get_age_protects().then(function(list){
1379             $scope.age_protect_list = list;
1380         });
1381         createSimpleUpdateWatcher('age_protect');
1382
1383         $scope.floating_list = [];
1384         itemSvc.get_floating_groups().then(function(list){
1385             $scope.floating_list = list;
1386         });
1387         createSimpleUpdateWatcher('floating');
1388
1389         createSimpleUpdateWatcher('circ_lib');
1390         createSimpleUpdateWatcher('circulate');
1391         createSimpleUpdateWatcher('holdable');
1392         createSimpleUpdateWatcher('fine_level');
1393         createSimpleUpdateWatcher('loan_duration');
1394         createSimpleUpdateWatcher('price');
1395         createSimpleUpdateWatcher('cost');
1396         createSimpleUpdateWatcher('deposit');
1397         createSimpleUpdateWatcher('deposit_amount');
1398         createSimpleUpdateWatcher('mint_condition');
1399         createSimpleUpdateWatcher('opac_visible');
1400         createSimpleUpdateWatcher('ref');
1401
1402         $scope.saveCompletedCopies = function (and_exit) {
1403             var cnHash = {};
1404             var perCnCopies = {};
1405             angular.forEach( $scope.completed_copies, function (cp) {
1406                 var cn = cp.call_number();
1407                 var cn_cps = cp.call_number().copies();
1408                 cp.call_number().copies([]);
1409                 var cn_id = cp.call_number().id();
1410                 cp.call_number(cn_id); // prevent loops in JSON-ification
1411                 if (!cnHash[cn_id]) {
1412                     cnHash[cn_id] = egCore.idl.Clone(cn);
1413                     perCnCopies[cn_id] = [egCore.idl.Clone(cp)];
1414                 } else {
1415                     perCnCopies[cn_id].push(egCore.idl.Clone(cp));
1416                 }
1417                 cp.call_number(cn); // put the data back
1418                 cp.call_number().copies(cn_cps);
1419                 if (typeof cnHash[cn_id].prefix() == 'object')
1420                     cnHash[cn_id].prefix(cnHash[cn_id].prefix().id()); // un-object-ize some fields
1421                 if (typeof cnHash[cn_id].suffix() == 'object')
1422                     cnHash[cn_id].suffix(cnHash[cn_id].suffix().id()); // un-object-ize some fields
1423             });
1424
1425             angular.forEach(perCnCopies, function (v, k) {
1426                 cnHash[k].copies(v);
1427             });
1428
1429             cnList = [];
1430             angular.forEach(cnHash, function (v, k) {
1431                 cnList.push(v);
1432             });
1433
1434             egNet.request(
1435                 'open-ils.cat',
1436                 'open-ils.cat.asset.volume.fleshed.batch.update.override',
1437                 egCore.auth.token(), cnList, 1, { auto_merge_vols : 1, create_parts : 1 }
1438             ).then(function(update_count) {
1439                 if (and_exit) {
1440                     $scope.dirty = false;
1441                     $timeout(function(){$window.close()});
1442                 }
1443             });
1444         }
1445
1446         $scope.saveAndContinue = function () {
1447             $scope.saveCompletedCopies(false);
1448         }
1449
1450         $scope.workingSaveAndExit = function () {
1451             $scope.workingToComplete();
1452             $scope.saveAndExit();
1453         }
1454
1455         $scope.saveAndExit = function () {
1456             $scope.saveCompletedCopies(true);
1457         }
1458
1459     }
1460
1461     $scope.copy_notes_dialog = function(copy_list) {
1462         var default_pub = Boolean($scope.defaults.copy_notes_pub);
1463         if (!angular.isArray(copy_list)) copy_list = [copy_list];
1464
1465         return $modal.open({
1466             templateUrl: './cat/volcopy/t_copy_notes',
1467             animation: true,
1468             controller:
1469                    ['$scope','$modalInstance',
1470             function($scope , $modalInstance) {
1471                 $scope.focusNote = true;
1472                 $scope.note = {
1473                     creator : egCore.auth.user().id(),
1474                     title   : '',
1475                     value   : '',
1476                     pub     : default_pub,
1477                 };
1478
1479                 $scope.require_initials = false;
1480                 egCore.org.settings([
1481                     'ui.staff.require_initials.copy_notes'
1482                 ]).then(function(set) {
1483                     $scope.require_initials = Boolean(set['ui.staff.require_initials.copy_notes']);
1484                 });
1485
1486                 $scope.note_list = [];
1487                 if (copy_list.length == 1) {
1488                     $scope.note_list = copy_list[0].notes();
1489                 }
1490
1491                 $scope.ok = function(note) {
1492
1493                     if (note.initials) note.value += ' [' + note.initials + ']';
1494                     angular.forEach(copy_list, function (cp) {
1495                         if (!angular.isArray(cp.notes())) cp.notes([]);
1496                         var n = new egCore.idl.acpn();
1497                         n.isnew(1);
1498                         n.creator(note.creator);
1499                         n.pub(note.pub);
1500                         n.title(note.title);
1501                         n.value(note.value);
1502                         n.owning_copy(cp.id());
1503                         cp.notes().push( n );
1504                     });
1505
1506                     $modalInstance.close();
1507                 }
1508
1509                 $scope.cancel = function($event) {
1510                     $modalInstance.dismiss();
1511                     $event.preventDefault();
1512                 }
1513             }]
1514         });
1515     }
1516
1517 }])
1518
1519 .directive("egVolTemplate", function () {
1520     return {
1521         restrict: 'E',
1522         replace: true,
1523         template: '<div ng-include="'+"'/eg/staff/cat/volcopy/t_attr_edit'"+'"></div>',
1524         scope: { },
1525         controller : ['$scope','$window','itemSvc','egCore',
1526             function ( $scope , $window , itemSvc , egCore ) {
1527
1528                 $scope.defaults = { // If defaults are not set at all, allow everything
1529                     barcode_checkdigit : false,
1530                     auto_gen_barcode : false,
1531                     statcats : true,
1532                     copy_notes : true,
1533                     attributes : {
1534                         status : true,
1535                         loan_duration : true,
1536                         fine_level : true,
1537                         cost : true,
1538                         alerts : true,
1539                         deposit : true,
1540                         deposit_amount : true,
1541                         opac_visible : true,
1542                         price : true,
1543                         circulate : true,
1544                         mint_condition : true,
1545                         circ_lib : true,
1546                         ref : true,
1547                         circ_modifier : true,
1548                         circ_as_type : true,
1549                         location : true,
1550                         holdable : true,
1551                         age_protect : true,
1552                         floating : true
1553                     }
1554                 };
1555
1556                 $scope.fetchDefaults = function () {
1557                     egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
1558                         if (t) {
1559                             $scope.defaults = t;
1560                             $scope.working.statcat_filter = $scope.defaults.statcat_filter;
1561                             if (typeof $scope.defaults.statcat_filter == 'object') {
1562                                 // want fieldmapper object here...
1563                                 $scope.defaults.statcat_filter =
1564                                     egCore.idl.Clone($scope.defaults.statcat_filter);
1565                                 // ... and ID here
1566                                 $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
1567                             }
1568                         }
1569                     });
1570                 }
1571                 $scope.fetchDefaults();
1572
1573                 $scope.dirty = false;
1574                 $scope.$watch('dirty',
1575                     function(newVal, oldVal) {
1576                         if (newVal && newVal != oldVal) {
1577                             $($window).on('beforeunload.template', function(){
1578                                 return 'There is unsaved template data!'
1579                             });
1580                         } else {
1581                             $($window).off('beforeunload.template');
1582                         }
1583                     }
1584                 );
1585
1586                 $scope.template_controls = true;
1587
1588                 $scope.fetchTemplates = function () {
1589                     egCore.hatch.getItem('cat.copy.templates').then(function(t) {
1590                         if (t) {
1591                             $scope.templates = t;
1592                             $scope.template_name_list = Object.keys(t);
1593                         }
1594                     });
1595                 }
1596                 $scope.fetchTemplates();
1597             
1598                 $scope.applyTemplate = function (n) {
1599                     angular.forEach($scope.templates[n], function (v,k) {
1600                         if (k == 'circ_lib') {
1601                             $scope.working[k] = egCore.org.get(v);
1602                         } else if (!angular.isObject(v)) {
1603                             $scope.working[k] = angular.copy(v);
1604                         } else {
1605                             angular.forEach(v, function (sv,sk) {
1606                                 $scope.working[k][sk] = angular.copy(sv);
1607                             });
1608                         }
1609                     });
1610                     $scope.template_name = '';
1611                 }
1612
1613                 $scope.deleteTemplate = function (n) {
1614                     if (n) {
1615                         delete $scope.templates[n]
1616                         $scope.template_name_list = Object.keys($scope.templates);
1617                         $scope.template_name = '';
1618                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1619                         $scope.$parent.fetchTemplates();
1620                     }
1621                 }
1622
1623                 $scope.saveTemplate = function (n) {
1624                     if (n) {
1625                         var tmpl = {};
1626             
1627                         angular.forEach($scope.working, function (v,k) {
1628                             if (angular.isObject(v)) { // we'll use the pkey
1629                                 if (v.id) v = v.id();
1630                                 else if (v.code) v = v.code();
1631                             }
1632             
1633                             tmpl[k] = v;
1634                         });
1635             
1636                         $scope.templates[n] = tmpl;
1637                         $scope.template_name_list = Object.keys($scope.templates);
1638             
1639                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1640                         $scope.$parent.fetchTemplates();
1641
1642                         $scope.dirty = false;
1643                     } else {
1644                         // save all templates, as we might do after an import
1645                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1646                         $scope.$parent.fetchTemplates();
1647                     }
1648                 }
1649             
1650                 $scope.templates = {};
1651                 $scope.imported_templates = { data : '' };
1652                 $scope.template_name = '';
1653                 $scope.template_name_list = [];
1654
1655                 $scope.$watch('imported_templates.data', function(newVal, oldVal) {
1656                     if (newVal && newVal != oldVal) {
1657                         try {
1658                             var newTemplates = JSON.parse(newVal);
1659                             if (!Object.keys(newTemplates).length) return;
1660                             $scope.templates = newTemplates;
1661                             $scope.template_name_list = Object.keys(newTemplates);
1662                             $scope.template_name = '';
1663                         } catch (E) {
1664                             console.log('tried to import an invalid copy template file');
1665                         }
1666                     }
1667                 });
1668
1669                 $scope.tracker = function (x,f) { if (x) return x[f]() };
1670                 $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
1671                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
1672             
1673                 $scope.orgById = function (id) { return egCore.org.get(id) }
1674                 $scope.statusById = function (id) {
1675                     return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
1676                 }
1677                 $scope.locationById = function (id) {
1678                     return $scope.location_cache[''+id];
1679                 }
1680             
1681                 createSimpleUpdateWatcher = function (field) {
1682                     $scope.$watch('working.' + field, function () {
1683                         var newval = $scope.working[field];
1684             
1685                         if (typeof newval != 'undefined') {
1686                             $scope.dirty = true;
1687                             if (angular.isObject(newval)) { // we'll use the pkey
1688                                 if (newval.id) $scope.working[field] = newval.id();
1689                                 else if (newval.code) $scope.working[field] = newval.code();
1690                             }
1691             
1692                             if (""+newval == "" || newval == null) {
1693                                 $scope.working[field] = undefined;
1694                             }
1695             
1696                         }
1697                     });
1698                 }
1699             
1700                 $scope.working = {
1701                     statcats: {},
1702                     statcat_filter: undefined
1703                 };
1704             
1705                 $scope.statcat_visible = function (sc_owner) {
1706                     var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
1707                     angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
1708                         if ($scope.working.statcat_filter == ancestor_org.id())
1709                             visible = true;
1710                     });
1711                     return visible;
1712                 }
1713
1714                 createStatcatUpdateWatcher = function (id) {
1715                     return $scope.$watch('working.statcats[' + id + ']', function () {
1716                         if ($scope.working.statcats) {
1717                             var newval = $scope.working.statcats[id];
1718                 
1719                             if (typeof newval != 'undefined') {
1720                                 $scope.dirty = true;
1721                                 if (angular.isObject(newval)) { // we'll use the pkey
1722                                     newval = newval.id();
1723                                 }
1724                 
1725                                 if (""+newval == "" || newval == null) {
1726                                     $scope.working.statcats[id] = undefined;
1727                                     newval = null;
1728                                 }
1729                 
1730                             }
1731                         }
1732                     });
1733                 }
1734
1735                 $scope.clearWorking = function () {
1736                     angular.forEach($scope.working, function (v,k,o) {
1737                         if (!angular.isObject(v)) {
1738                             if (typeof v != 'undefined')
1739                                 $scope.working[k] = undefined;
1740                         } else if (k != 'circ_lib') {
1741                             angular.forEach(v, function (sv,sk) {
1742                                 $scope.working[k][sk] = undefined;
1743                             });
1744                         }
1745                     });
1746                     $scope.working.circ_lib = undefined; // special
1747                     $scope.dirty = false;
1748                 }
1749
1750                 $scope.working = {};
1751                 $scope.location_orgs = [];
1752                 $scope.location_cache = {};
1753             
1754                 $scope.location_list = [];
1755                 itemSvc.get_locations(
1756                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
1757                 ).then(function(list){
1758                     $scope.location_list = list;
1759                 });
1760                 createSimpleUpdateWatcher('location');
1761
1762                 $scope.statcat_filter_list = egCore.org.fullPath( egCore.auth.user().ws_ou() );
1763
1764                 $scope.statcats = [];
1765                 itemSvc.get_statcats(
1766                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
1767                 ).then(function(list){
1768                     $scope.statcats = list;
1769                     angular.forEach($scope.statcats, function (s) {
1770
1771                         if (!$scope.working)
1772                             $scope.working = { statcats: {}, statcat_filter: undefined};
1773                         if (!$scope.working.statcats)
1774                             $scope.working.statcats = {};
1775
1776                         $scope.working.statcats[s.id()] = undefined;
1777                         createStatcatUpdateWatcher(s.id());
1778                     });
1779                 });
1780             
1781                 $scope.status_list = [];
1782                 itemSvc.get_statuses().then(function(list){
1783                     $scope.status_list = list;
1784                 });
1785                 createSimpleUpdateWatcher('status');
1786             
1787                 $scope.circ_modifier_list = [];
1788                 itemSvc.get_circ_mods().then(function(list){
1789                     $scope.circ_modifier_list = list;
1790                 });
1791                 createSimpleUpdateWatcher('circ_modifier');
1792             
1793                 $scope.circ_type_list = [];
1794                 itemSvc.get_circ_types().then(function(list){
1795                     $scope.circ_type_list = list;
1796                 });
1797                 createSimpleUpdateWatcher('circ_as_type');
1798             
1799                 $scope.age_protect_list = [];
1800                 itemSvc.get_age_protects().then(function(list){
1801                     $scope.age_protect_list = list;
1802                 });
1803                 createSimpleUpdateWatcher('age_protect');
1804             
1805                 createSimpleUpdateWatcher('circulate');
1806                 createSimpleUpdateWatcher('holdable');
1807                 createSimpleUpdateWatcher('fine_level');
1808                 createSimpleUpdateWatcher('loan_duration');
1809                 createSimpleUpdateWatcher('cost');
1810                 createSimpleUpdateWatcher('deposit');
1811                 createSimpleUpdateWatcher('deposit_amount');
1812                 createSimpleUpdateWatcher('mint_condition');
1813                 createSimpleUpdateWatcher('opac_visible');
1814                 createSimpleUpdateWatcher('ref');
1815
1816                 $scope.suffix_list = [];
1817                 itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
1818                     $scope.suffix_list = list;
1819                 });
1820
1821                 $scope.prefix_list = [];
1822                 itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
1823                     $scope.prefix_list = list;
1824                 });
1825
1826                 $scope.classification_list = [];
1827                 itemSvc.get_classifications().then(function(list){
1828                     $scope.classification_list = list;
1829                 });
1830
1831                 createSimpleUpdateWatcher('working.callnumber.classification');
1832                 createSimpleUpdateWatcher('working.callnumber.prefix');
1833                 createSimpleUpdateWatcher('working.callnumber.suffix');
1834             }
1835         ]
1836     }
1837 })
1838
1839