]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/cat/volcopy/app.js
webstaff: ensure that volcopy editor saves copy part maps
[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                     $scope.copy.ischanged(1);
348                 }
349                 $scope.$watch('part', $scope.updatePart);
350
351                 $scope.barcode = $scope.copy.barcode();
352                 $scope.copy_number = $scope.copy.copy_number();
353
354                 if ($scope.copy.parts()) {
355                     $scope.part = $scope.copy.parts()[0];
356                     if ($scope.part) $scope.part = $scope.part.label();
357                 };
358
359                 $scope.parts = [];
360                 $scope.part_list = [];
361
362                 itemSvc.get_parts($scope.callNumber.record()).then(function(list){
363                     $scope.part_list = list;
364                     angular.forEach(list, function(p){ $scope.parts.push(p.label()) });
365                     $scope.parts = angular.copy($scope.parts);
366                 });
367
368             }
369         ]
370
371     }
372 })
373
374 .directive("egVolRow", function () {
375     return {
376         restrict: 'E',
377         replace: true,
378         transclude: true,
379         template:
380             '<div class="row">'+
381                 '<div class="col-xs-2">'+
382                     '<select ng-disabled="record == 0" class="form-control" ng-model="classification" ng-change="updateClassification()" ng-options="cl.name() for cl in classification_list"/>'+
383                 '</div>'+
384                 '<div class="col-xs-1">'+
385                     '<select ng-disabled="record == 0" class="form-control" ng-model="prefix" ng-change="updatePrefix()" ng-options="p.label() for p in prefix_list"/>'+
386                 '</div>'+
387                 '<div class="col-xs-2"><input ng-disabled="record == 0" class="form-control" type="text" ng-change="updateLabel()" ng-model="label"/></div>'+
388                 '<div class="col-xs-1">'+
389                     '<select ng-disabled="record == 0" class="form-control" ng-model="suffix" ng-change="updateSuffix()" ng-options="s.label() for s in suffix_list"/>'+
390                 '</div>'+
391                 '<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>'+
392                 '<div ng-hide="onlyVols" class="col-xs-5">'+
393                     '<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>'+
394                 '</div>'+
395             '</div>',
396
397         scope: {focusNext: "=", allcopies: "=", copies: "=", onlyVols: "=", record: "@" },
398         controller : ['$scope','itemSvc','egCore',
399             function ( $scope , itemSvc , egCore ) {
400                 $scope.callNumber =  $scope.copies[0].call_number();
401
402                 $scope.idTracker = function (x) { if (x && x.id) return x.id() };
403
404                 // XXX $() is not working! arg
405                 $scope.focusNextBarcode = function (i, prev_bc) {
406                     var n;
407                     var yep = false;
408                     angular.forEach($scope.copies, function (cp) {
409                         if (n) return;
410
411                         if (cp.id() == i) {
412                             yep = true;
413                             return;
414                         }
415
416                         if (yep) n = cp.id();
417                     });
418
419                     if (n) {
420                         var next = '#' + $scope.callNumber.id() + '_' + n;
421                         var el = $(next);
422                         if (el) {
423                             if (!itemSvc.currently_generating) el.focus();
424                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
425                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
426                                     el.focus();
427                                     el.val(bc);
428                                     el.trigger('change');
429                                 });
430                             } else {
431                                 itemSvc.currently_generating = false;
432                             }
433                         }
434                     } else {
435                         $scope.focusNext($scope.callNumber.id(),prev_bc)
436                     }
437                 }
438
439                 $scope.suffix_list = [];
440                 itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
441                     $scope.suffix_list = list;
442                     $scope.$watch('callNumber.suffix()', function (v) {
443                         if (angular.isObject(v)) v = v.id();
444                         $scope.suffix = $scope.suffix_list.filter( function (s) {
445                             return s.id() == v;
446                         })[0];
447                     });
448
449                 });
450                 $scope.updateSuffix = function () {
451                     angular.forEach($scope.copies, function(cp) {
452                         cp.call_number().suffix($scope.suffix);
453                         cp.call_number().ischanged(1);
454                     });
455                 }
456
457                 $scope.prefix_list = [];
458                 itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
459                     $scope.prefix_list = list;
460                     $scope.$watch('callNumber.prefix()', function (v) {
461                         if (angular.isObject(v)) v = v.id();
462                         $scope.prefix = $scope.prefix_list.filter(function (p) {
463                             return p.id() == v;
464                         })[0];
465                     });
466
467                 });
468                 $scope.updatePrefix = function () {
469                     angular.forEach($scope.copies, function(cp) {
470                         cp.call_number().prefix($scope.prefix);
471                         cp.call_number().ischanged(1);
472                     });
473                 }
474                 $scope.$watch('callNumber.owning_lib()', function(oldLib, newLib) {
475                     if (oldLib == newLib) return;
476                     var currentPrefix = $scope.callNumber.prefix();
477                     if (angular.isObject(currentPrefix)) currentPrefix = currentPrefix.id();
478                     itemSvc.get_prefixes($scope.callNumber.owning_lib()).then(function(list){
479                         $scope.prefix_list = list;
480                         var newPrefixId = $scope.prefix_list.filter(function (p) {
481                             return p.id() == currentPrefix;
482                         })[0] || -1;
483                         if (newPrefixId.id) newPrefixId = newPrefixId.id();
484                         $scope.prefix = $scope.prefix_list.filter(function (p) {
485                             return p.id() == newPrefixId;
486                         })[0];
487                         if ($scope.newPrefixId != currentPrefix) {
488                             $scope.callNumber.prefix($scope.prefix);
489                         }
490                     });
491                     var currentSuffix = $scope.callNumber.suffix();
492                     if (angular.isObject(currentSuffix)) currentSuffix = currentSuffix.id();
493                     itemSvc.get_suffixes($scope.callNumber.owning_lib()).then(function(list){
494                         $scope.suffix_list = list;
495                         var newSuffixId = $scope.suffix_list.filter(function (s) {
496                             return s.id() == currentSuffix;
497                         })[0] || -1;
498                         if (newSuffixId.id) newSuffixId = newSuffixId.id();
499                         $scope.suffix = $scope.suffix_list.filter(function (s) {
500                             return s.id() == newSuffixId;
501                         })[0];
502                         if ($scope.newSuffixId != currentSuffix) {
503                             $scope.callNumber.suffix($scope.suffix);
504                         }
505                     });
506                 });
507
508                 $scope.classification_list = [];
509                 itemSvc.get_classifications().then(function(list){
510                     $scope.classification_list = list;
511                     $scope.$watch('callNumber.label_class()', function (v) {
512                         if (angular.isObject(v)) v = v.id();
513                         $scope.classification = $scope.classification_list.filter(function (c) {
514                             return c.id() == v;
515                         })[0];
516                     });
517
518                 });
519                 $scope.updateClassification = function () {
520                     angular.forEach($scope.copies, function(cp) {
521                         cp.call_number().label_class($scope.classification);
522                         cp.call_number().ischanged(1);
523                     });
524                 }
525
526                 $scope.updateLabel = function () {
527                     angular.forEach($scope.copies, function(cp) {
528                         cp.call_number().label($scope.label);
529                         cp.call_number().ischanged(1);
530                     });
531                 }
532
533                 $scope.$watch('callNumber.label()', function (v) {
534                     $scope.label = v;
535                 });
536
537                 $scope.prefix = $scope.callNumber.prefix();
538                 $scope.suffix = $scope.callNumber.suffix();
539                 $scope.classification = $scope.callNumber.label_class();
540                 $scope.label = $scope.callNumber.label();
541
542                 $scope.copy_count = $scope.copies.length;
543                 $scope.orig_copy_count = $scope.copy_count;
544
545                 $scope.changeCPCount = function () {
546                     while ($scope.copy_count > $scope.copies.length) {
547                         var cp = itemSvc.generateNewCopy(
548                             $scope.callNumber,
549                             $scope.callNumber.owning_lib()
550                         );
551                         $scope.copies.push( cp );
552                         $scope.allcopies.push( cp );
553
554                     }
555
556                     if ($scope.copy_count >= $scope.orig_copy_count) {
557                         var how_many = $scope.copies.length - $scope.copy_count;
558                         if (how_many > 0) {
559                             var dead = $scope.copies.splice($scope.copy_count,how_many);
560                             $scope.callNumber.copies($scope.copies);
561
562                             // Trimming the global list is a bit more tricky
563                             angular.forEach( dead, function (d) {
564                                 angular.forEach( $scope.allcopies, function (l, i) { 
565                                     if (l === d) $scope.allcopies.splice(i,1);
566                                 });
567                             });
568                         }
569                     }
570                 }
571
572             }
573         ]
574
575     }
576 })
577
578 .directive("egVolEdit", function () {
579     return {
580         restrict: 'E',
581         replace: true,
582         template:
583             '<div class="row">'+
584                 '<div class="col-xs-1"><eg-org-selector alldisabled="{{record == 0}}" selected="owning_lib" disable-test="cant_have_vols"></eg-org-selector></div>'+
585                 '<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>'+
586                 '<div class="col-xs-10">'+
587                     '<eg-vol-row only-vols="onlyVols" record="{{record}}"'+
588                         'ng-repeat="(cn,copies) in struct | orderBy:cn track by cn" '+
589                         'focus-next="focusNextFirst" copies="copies" allcopies="allcopies">'+
590                     '</eg-vol-row>'+
591                 '</div>'+
592             '</div>',
593
594         scope: { focusNext: "=", allcopies: "=", struct: "=", lib: "@", record: "@", onlyVols: "=" },
595         controller : ['$scope','itemSvc','egCore',
596             function ( $scope , itemSvc , egCore ) {
597                 $scope.first_cn = Object.keys($scope.struct)[0];
598                 $scope.full_cn = $scope.struct[$scope.first_cn][0].call_number();
599
600                 $scope.defaults = {};
601                 egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
602                     if (t) {
603                         $scope.defaults = t;
604                     }
605                 });
606
607                 $scope.focusNextFirst = function(prev_cn,prev_bc) {
608                     var n;
609                     var yep = false;
610                     angular.forEach(Object.keys($scope.struct).sort(), function (cn) {
611                         if (n) return;
612
613                         if (cn == prev_cn) {
614                             yep = true;
615                             return;
616                         }
617
618                         if (yep) n = cn;
619                     });
620
621                     if (n) {
622                         var next = '#' + n + '_' + $scope.struct[n][0].id();
623                         var el = $(next);
624                         if (el) {
625                             if (!itemSvc.currently_generating) el.focus();
626                             if (prev_bc && itemSvc.auto_gen_barcode && el.val() == "") {
627                                 itemSvc.nextBarcode(prev_bc).then(function(bc){
628                                     el.focus();
629                                     el.val(bc);
630                                     el.trigger('change');
631                                 });
632                             } else {
633                                 itemSvc.currently_generating = false;
634                             }
635                         }
636                     } else {
637                         $scope.focusNext($scope.lib, prev_bc);
638                     }
639                 }
640
641                 $scope.cn_count = Object.keys($scope.struct).length;
642                 $scope.orig_cn_count = $scope.cn_count;
643
644                 $scope.owning_lib = egCore.org.get($scope.lib);
645                 $scope.$watch('owning_lib', function (oldLib, newLib) {
646                     if (oldLib == newLib) return;
647                     angular.forEach( Object.keys($scope.struct), function (cn) {
648                         $scope.struct[cn][0].call_number().owning_lib( $scope.owning_lib.id() );
649                         $scope.struct[cn][0].call_number().ischanged(1);
650                     });
651                 });
652
653                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
654
655                 $scope.$watch('cn_count', function (n) {
656                     var o = Object.keys($scope.struct).length;
657                     if (n > o) { // adding
658                         for (var i = o; o < n; o++) {
659                             var cn = new egCore.idl.acn();
660                             cn.id( --itemSvc.new_cn_id );
661                             cn.isnew( true );
662                             cn.prefix( $scope.defaults.prefix || -1 );
663                             cn.suffix( $scope.defaults.suffix || -1 );
664                             cn.label_class( $scope.defaults.classification || 1 );
665                             cn.owning_lib( $scope.owning_lib.id() );
666                             cn.record( $scope.full_cn.record() );
667
668                             var cp = itemSvc.generateNewCopy(cn, $scope.owning_lib.id());
669
670                             $scope.struct[cn.id()] = [cp];
671                             $scope.allcopies.push(cp);
672                             if (!scope.defaults.classification) {
673                                 egCore.org.settings(
674                                     ['cat.default_classification_scheme'],
675                                     cn.owning_lib()
676                                 ).then(function (val) {
677                                     cn.label_class(val['cat.default_classification_scheme']);
678                                 });
679                             }
680                         }
681                     } else if (n < o && n >= $scope.orig_cn_count) { // removing
682                         var how_many = o - n;
683                         var list = Object
684                                 .keys($scope.struct)
685                                 .sort(function(a, b){return parseInt(a)-parseInt(b)})
686                                 .filter(function(x){ return parseInt(x) <= 0 });
687                         for (var i = 0; i < how_many; i++) {
688                             // Trimming the global list is a bit more tricky
689                             angular.forEach($scope.struct[list[i]], function (d) {
690                                 angular.forEach( $scope.allcopies, function (l, j) { 
691                                     if (l === d) $scope.allcopies.splice(j,1);
692                                 });
693                             });
694                             delete $scope.struct[list[i]];
695                         }
696                     }
697                 });
698             }
699         ]
700
701     }
702 })
703
704 /**
705  * Edit controller!
706  */
707 .controller('EditCtrl', 
708        ['$scope','$q','$window','$routeParams','$location','$timeout','egCore','egNet','egGridDataProvider','itemSvc','$modal',
709 function($scope , $q , $window , $routeParams , $location , $timeout , egCore , egNet , egGridDataProvider , itemSvc , $modal) {
710
711     $scope.defaults = { // If defaults are not set at all, allow everything
712         barcode_checkdigit : false,
713         auto_gen_barcode : false,
714         statcats : true,
715         copy_notes : true,
716         attributes : {
717             status : true,
718             loan_duration : true,
719             fine_level : true,
720             cost : true,
721             alerts : true,
722             deposit : true,
723             deposit_amount : true,
724             opac_visible : true,
725             price : true,
726             circulate : true,
727             mint_condition : true,
728             circ_lib : true,
729             ref : true,
730             circ_modifier : true,
731             circ_as_type : true,
732             location : true,
733             holdable : true,
734             age_protect : true,
735             floating : true
736         }
737     };
738
739     $scope.embedded = ($routeParams.mode && $routeParams.mode == 'embedded') ? true : false;
740
741     $scope.saveDefaults = function () {
742         egCore.hatch.setItem('cat.copy.defaults', $scope.defaults);
743     }
744
745     $scope.fetchDefaults = function () {
746         egCore.hatch.getItem('cat.copy.defaults').then(function(t) {
747             if (t) {
748                 $scope.defaults = t;
749                 if (!$scope.batch) $scope.batch = {};
750                 $scope.batch.classification = $scope.defaults.classification;
751                 $scope.batch.prefix = $scope.defaults.prefix;
752                 $scope.batch.suffix = $scope.defaults.suffix;
753                 $scope.working.statcat_filter = $scope.defaults.statcat_filter;
754                 if (typeof $scope.defaults.statcat_filter == 'object') {
755                     // want fieldmapper object here...
756                     $scope.defaults.statcat_filter =
757                          egCore.idl.Clone($scope.defaults.statcat_filter);
758                     // ... and ID here
759                     $scope.working.statcat_filter = $scope.defaults.statcat_filter.id();
760                 }
761                 if ($scope.defaults.always_volumes) $scope.show_vols = true;
762                 if ($scope.defaults.barcode_checkdigit) itemSvc.barcode_checkdigit = true;
763                 if ($scope.defaults.auto_gen_barcode) itemSvc.auto_gen_barcode = true;
764             }
765         });
766     }
767     $scope.fetchDefaults();
768
769     $scope.$watch('defaults.statcat_filter', function() {
770         $scope.saveDefaults();
771     });
772     $scope.$watch('defaults.auto_gen_barcode', function (n,o) {
773         itemSvc.auto_gen_barcode = n
774     });
775
776     $scope.$watch('defaults.barcode_checkdigit', function (n,o) {
777         itemSvc.barcode_checkdigit = n
778     });
779
780     $scope.dirty = false;
781     $scope.$watch('dirty',
782         function(newVal, oldVal) {
783             if (newVal && newVal != oldVal) {
784                 $($window).on('beforeunload.edit', function(){
785                     return 'There is unsaved data!'
786                 });
787             } else {
788                 $($window).off('beforeunload.edit');
789             }
790         }
791     );
792
793     $scope.only_vols = false;
794     $scope.show_vols = true;
795     $scope.show_copies = true;
796
797     $scope.tracker = function (x,f) { if (x) return x[f]() };
798     $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
799     $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
800
801     $scope.orgById = function (id) { return egCore.org.get(id) }
802     $scope.statusById = function (id) {
803         return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
804     }
805     $scope.locationById = function (id) {
806         return $scope.location_cache[''+id];
807     }
808
809     $scope.workingToComplete = function () {
810         angular.forEach( $scope.workingGridControls.selectedItems(), function (c) {
811             angular.forEach( itemSvc.copies, function (w, i) {
812                 if (c === w)
813                     $scope.completed_copies = $scope.completed_copies.concat(itemSvc.copies.splice(i,1));
814             });
815         });
816
817         return true;
818     }
819
820     $scope.completeToWorking = function () {
821         angular.forEach( $scope.completedGridControls.selectedItems(), function (c) {
822             angular.forEach( $scope.completed_copies, function (w, i) {
823                 if (c === w)
824                     itemSvc.copies = itemSvc.copies.concat($scope.completed_copies.splice(i,1));
825             });
826         });
827
828         return true;
829     }
830
831     createSimpleUpdateWatcher = function (field) {
832         return $scope.$watch('working.' + field, function () {
833             var newval = $scope.working[field];
834
835             if (typeof newval != 'undefined') {
836                 if (angular.isObject(newval)) { // we'll use the pkey
837                     if (newval.id) newval = newval.id();
838                     else if (newval.code) newval = newval.code();
839                 }
840
841                 if (""+newval == "" || newval == null) {
842                     $scope.working[field] = undefined;
843                     newval = null;
844                 }
845
846                 if ($scope.workingGridControls && $scope.workingGridControls.selectedItems) {
847                     angular.forEach(
848                         $scope.workingGridControls.selectedItems(),
849                         function (cp) {
850                             if (cp[field]() !== newval) {
851                                 cp[field](newval);
852                                 cp.ischanged(1);
853                                 $scope.dirty = true;
854                             }
855                         }
856                     );
857                 }
858             }
859         });
860     }
861
862     $scope.working = {
863         statcats: {},
864         statcat_filter: undefined
865     };
866
867     $scope.statcatUpdate = function (id) {
868         var newval = $scope.working.statcats[id];
869
870         if (typeof newval != 'undefined') {
871             if (angular.isObject(newval)) { // we'll use the pkey
872                 newval = newval.id();
873             }
874     
875             if (""+newval == "" || newval == null) {
876                 $scope.working.statcats[id] = undefined;
877                 newval = null;
878             }
879     
880             if (!$scope.in_item_select && $scope.workingGridControls && $scope.workingGridControls.selectedItems) {
881                 angular.forEach(
882                     $scope.workingGridControls.selectedItems(),
883                     function (cp) {
884                         $scope.dirty = true;
885
886                         cp.stat_cat_entries(
887                             angular.forEach( cp.stat_cat_entries(), function (e) {
888                                 if (e.stat_cat() == id) { // mark deleted
889                                     e.isdeleted(1);
890                                 }
891                             })
892                         );
893     
894                         if (newval) {
895                             var e = new egCore.idl.asce();
896                             e.isnew( 1 );
897                             e.stat_cat( id );
898                             e.id(newval);
899
900                             cp.stat_cat_entries(
901                                 cp.stat_cat_entries() ?
902                                     cp.stat_cat_entries().concat([ e ]) :
903                                     [ e ]
904                             );
905
906                         }
907
908                         // trim out all deleted ones; the API used to
909                         // do the update doesn't actually consult
910                         // isdeleted for stat cat entries
911                         cp.stat_cat_entries(
912                             cp.stat_cat_entries().filter(function (e) {
913                                 return !Boolean(e.isdeleted());
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].id()] = right_sc[0].id();
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                                 if (!(k in $scope.working))
1607                                     $scope.working[k] = {};
1608                                 $scope.working[k][sk] = angular.copy(sv);
1609                             });
1610                         }
1611                     });
1612                     $scope.template_name = '';
1613                 }
1614
1615                 $scope.deleteTemplate = function (n) {
1616                     if (n) {
1617                         delete $scope.templates[n]
1618                         $scope.template_name_list = Object.keys($scope.templates);
1619                         $scope.template_name = '';
1620                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1621                         $scope.$parent.fetchTemplates();
1622                     }
1623                 }
1624
1625                 $scope.saveTemplate = function (n) {
1626                     if (n) {
1627                         var tmpl = {};
1628             
1629                         angular.forEach($scope.working, function (v,k) {
1630                             if (angular.isObject(v)) { // we'll use the pkey
1631                                 if (v.id) v = v.id();
1632                                 else if (v.code) v = v.code();
1633                             }
1634             
1635                             tmpl[k] = v;
1636                         });
1637             
1638                         $scope.templates[n] = tmpl;
1639                         $scope.template_name_list = Object.keys($scope.templates);
1640             
1641                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1642                         $scope.$parent.fetchTemplates();
1643
1644                         $scope.dirty = false;
1645                     } else {
1646                         // save all templates, as we might do after an import
1647                         egCore.hatch.setItem('cat.copy.templates', $scope.templates);
1648                         $scope.$parent.fetchTemplates();
1649                     }
1650                 }
1651             
1652                 $scope.templates = {};
1653                 $scope.imported_templates = { data : '' };
1654                 $scope.template_name = '';
1655                 $scope.template_name_list = [];
1656
1657                 $scope.$watch('imported_templates.data', function(newVal, oldVal) {
1658                     if (newVal && newVal != oldVal) {
1659                         try {
1660                             var newTemplates = JSON.parse(newVal);
1661                             if (!Object.keys(newTemplates).length) return;
1662                             $scope.templates = newTemplates;
1663                             $scope.template_name_list = Object.keys(newTemplates);
1664                             $scope.template_name = '';
1665                         } catch (E) {
1666                             console.log('tried to import an invalid copy template file');
1667                         }
1668                     }
1669                 });
1670
1671                 $scope.tracker = function (x,f) { if (x) return x[f]() };
1672                 $scope.idTracker = function (x) { if (x) return $scope.tracker(x,'id') };
1673                 $scope.cant_have_vols = function (id) { return !egCore.org.CanHaveVolumes(id); };
1674             
1675                 $scope.orgById = function (id) { return egCore.org.get(id) }
1676                 $scope.statusById = function (id) {
1677                     return $scope.status_list.filter( function (s) { return s.id() == id } )[0];
1678                 }
1679                 $scope.locationById = function (id) {
1680                     return $scope.location_cache[''+id];
1681                 }
1682             
1683                 createSimpleUpdateWatcher = function (field) {
1684                     $scope.$watch('working.' + field, function () {
1685                         var newval = $scope.working[field];
1686             
1687                         if (typeof newval != 'undefined') {
1688                             $scope.dirty = true;
1689                             if (angular.isObject(newval)) { // we'll use the pkey
1690                                 if (newval.id) $scope.working[field] = newval.id();
1691                                 else if (newval.code) $scope.working[field] = newval.code();
1692                             }
1693             
1694                             if (""+newval == "" || newval == null) {
1695                                 $scope.working[field] = undefined;
1696                             }
1697             
1698                         }
1699                     });
1700                 }
1701             
1702                 $scope.working = {
1703                     statcats: {},
1704                     statcat_filter: undefined
1705                 };
1706             
1707                 $scope.statcat_visible = function (sc_owner) {
1708                     var visible = typeof $scope.working.statcat_filter === 'undefined' || !$scope.working.statcat_filter;
1709                     angular.forEach(egCore.org.ancestors(sc_owner), function (ancestor_org) {
1710                         if ($scope.working.statcat_filter == ancestor_org.id())
1711                             visible = true;
1712                     });
1713                     return visible;
1714                 }
1715
1716                 createStatcatUpdateWatcher = function (id) {
1717                     return $scope.$watch('working.statcats[' + id + ']', function () {
1718                         if ($scope.working.statcats) {
1719                             var newval = $scope.working.statcats[id];
1720                 
1721                             if (typeof newval != 'undefined') {
1722                                 $scope.dirty = true;
1723                                 if (angular.isObject(newval)) { // we'll use the pkey
1724                                     newval = newval.id();
1725                                 }
1726                 
1727                                 if (""+newval == "" || newval == null) {
1728                                     $scope.working.statcats[id] = undefined;
1729                                     newval = null;
1730                                 }
1731                 
1732                             }
1733                         }
1734                     });
1735                 }
1736
1737                 $scope.clearWorking = function () {
1738                     angular.forEach($scope.working, function (v,k,o) {
1739                         if (!angular.isObject(v)) {
1740                             if (typeof v != 'undefined')
1741                                 $scope.working[k] = undefined;
1742                         } else if (k != 'circ_lib') {
1743                             angular.forEach(v, function (sv,sk) {
1744                                 $scope.working[k][sk] = undefined;
1745                             });
1746                         }
1747                     });
1748                     $scope.working.circ_lib = undefined; // special
1749                     $scope.dirty = false;
1750                 }
1751
1752                 $scope.working = {};
1753                 $scope.location_orgs = [];
1754                 $scope.location_cache = {};
1755             
1756                 $scope.location_list = [];
1757                 itemSvc.get_locations(
1758                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
1759                 ).then(function(list){
1760                     $scope.location_list = list;
1761                 });
1762                 createSimpleUpdateWatcher('location');
1763
1764                 $scope.statcat_filter_list = egCore.org.fullPath( egCore.auth.user().ws_ou() );
1765
1766                 $scope.statcats = [];
1767                 itemSvc.get_statcats(
1768                     egCore.org.fullPath( egCore.auth.user().ws_ou(), true )
1769                 ).then(function(list){
1770                     $scope.statcats = list;
1771                     angular.forEach($scope.statcats, function (s) {
1772
1773                         if (!$scope.working)
1774                             $scope.working = { statcats: {}, statcat_filter: undefined};
1775                         if (!$scope.working.statcats)
1776                             $scope.working.statcats = {};
1777
1778                         $scope.working.statcats[s.id()] = undefined;
1779                         createStatcatUpdateWatcher(s.id());
1780                     });
1781                 });
1782             
1783                 $scope.status_list = [];
1784                 itemSvc.get_statuses().then(function(list){
1785                     $scope.status_list = list;
1786                 });
1787                 createSimpleUpdateWatcher('status');
1788             
1789                 $scope.circ_modifier_list = [];
1790                 itemSvc.get_circ_mods().then(function(list){
1791                     $scope.circ_modifier_list = list;
1792                 });
1793                 createSimpleUpdateWatcher('circ_modifier');
1794             
1795                 $scope.circ_type_list = [];
1796                 itemSvc.get_circ_types().then(function(list){
1797                     $scope.circ_type_list = list;
1798                 });
1799                 createSimpleUpdateWatcher('circ_as_type');
1800             
1801                 $scope.age_protect_list = [];
1802                 itemSvc.get_age_protects().then(function(list){
1803                     $scope.age_protect_list = list;
1804                 });
1805                 createSimpleUpdateWatcher('age_protect');
1806             
1807                 createSimpleUpdateWatcher('circulate');
1808                 createSimpleUpdateWatcher('holdable');
1809                 createSimpleUpdateWatcher('fine_level');
1810                 createSimpleUpdateWatcher('loan_duration');
1811                 createSimpleUpdateWatcher('cost');
1812                 createSimpleUpdateWatcher('deposit');
1813                 createSimpleUpdateWatcher('deposit_amount');
1814                 createSimpleUpdateWatcher('mint_condition');
1815                 createSimpleUpdateWatcher('opac_visible');
1816                 createSimpleUpdateWatcher('ref');
1817
1818                 $scope.suffix_list = [];
1819                 itemSvc.get_suffixes(egCore.auth.user().ws_ou()).then(function(list){
1820                     $scope.suffix_list = list;
1821                 });
1822
1823                 $scope.prefix_list = [];
1824                 itemSvc.get_prefixes(egCore.auth.user().ws_ou()).then(function(list){
1825                     $scope.prefix_list = list;
1826                 });
1827
1828                 $scope.classification_list = [];
1829                 itemSvc.get_classifications().then(function(list){
1830                     $scope.classification_list = list;
1831                 });
1832
1833                 createSimpleUpdateWatcher('working.callnumber.classification');
1834                 createSimpleUpdateWatcher('working.callnumber.prefix');
1835                 createSimpleUpdateWatcher('working.callnumber.suffix');
1836             }
1837         ]
1838     }
1839 })
1840
1841