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