]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/services/item.js
eda4d8e07bfa1c285d3cc7ac3ee57d247feef0a1
[working/Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / services / item.js
1 /**
2  * Shared item services for circulation
3  */
4
5 angular.module('egCoreMod')
6     .factory('egItem',
7        ['egCore','egCirc','$uibModal','$q','$timeout','$window','egConfirmDialog','egAlertDialog',
8 function(egCore , egCirc , $uibModal , $q , $timeout , $window , egConfirmDialog , egAlertDialog ) {
9
10     var service = {
11         copies : [], // copy barcode search results
12         index : 0 // search grid index
13     };
14
15     service.flesh = {   
16         flesh : 4,
17         flesh_fields : {
18             acp : ['call_number','location','status','floating','circ_modifier',
19                 'age_protect','circ_lib','copy_alerts', 'creator', 'editor', 'circ_as_type', 'latest_inventory'],
20             acn : ['record','prefix','suffix','label_class'],
21             bre : ['simple_record','creator','editor'],
22             alci : ['inventory_workstation']
23         },
24         select : { 
25             // avoid fleshing MARC on the bre
26             // note: don't add simple_record.. not sure why
27             bre : ['id','tcn_value','creator','editor', 'create_date', 'edit_date'],
28         } 
29     }
30
31     service.circFlesh = {
32         flesh : 2,
33         flesh_fields : {
34             combcirc : [
35                 'usr',
36                 'workstation',
37                 'checkin_workstation',
38                 'checkin_lib',
39                 'duration_rule',
40                 'max_fine_rule',
41                 'recurring_fine_rule'
42             ],
43             au : ['card']
44         },
45         order_by : {combcirc : 'xact_start desc'},
46         limit :  1
47     }
48
49     //Retrieve separate copy, aacs, and accs information
50     service.getCopy = function(barcode, id) {
51         if (barcode) {
52             // handle barcode completion
53             return egCirc.handle_barcode_completion(barcode)
54             .then(function(actual_barcode) {
55                 return egCore.pcrud.search(
56                     'acp', {barcode : actual_barcode, deleted : 'f'},
57                     service.flesh).then(function(copy) {return copy});
58             });
59         }
60
61         return egCore.pcrud.retrieve( 'acp', id, service.flesh)
62             .then(function(copy) {return copy});
63     }
64
65     service.getCirc = function(id) {
66         return egCore.pcrud.search('combcirc', { target_copy : id },
67             service.circFlesh).then(function(circ) {return circ});
68     }
69
70     service.getSummary = function(id) {
71         return circ_summary = egCore.net.request(
72             'open-ils.circ',
73             'open-ils.circ.renewal_chain.retrieve_by_circ.summary',
74             egCore.auth.token(), id).then(
75                 function(circ_summary) {return circ_summary});
76     }
77
78     //Combine copy, circ, and accs information
79     service.retrieveCopyData = function(barcode, id) {
80         var copyData = {};
81
82         var fetchCopy = function(barcode, id) {
83             return service.getCopy(barcode, id)
84                 .then(function(copy) {
85                     copyData.copy = copy;
86                     return copyData;
87                 });
88         }
89         var fetchCirc = function(copy) {
90             return service.getCirc(copy.id())
91                 .then(function(circ) {
92                     copyData.circ = circ;
93                     return copyData;
94                 });
95         }
96         var fetchSummary = function(circ) {
97             return service.getSummary(circ.id())
98                 .then(function(summary) {
99                     copyData.circ_summary = summary;
100                     return copyData;
101                 });
102         }
103
104         return fetchCopy(barcode, id).then(function(res) {
105
106             if(!res.copy) { return $q.when(); }
107             return fetchCirc(copyData.copy).then(function(res) {
108                 if (copyData.circ) {
109                     return fetchSummary(copyData.circ).then(function() {
110                         return copyData;
111                     });
112                 } else {
113                     return copyData;
114                 }
115             });
116         });
117
118     }
119
120     // resolved with the last received copy
121     service.fetch = function(barcode, id, noListDupes) {
122         var copy;
123         var circ;
124         var circ_summary;
125         var lastRes = {};
126
127         return service.retrieveCopyData(barcode, id)
128         .then(function(copyData) {
129             if(!copyData) { return $q.when(); }
130             //Make sure we're getting a completed copyData - no plain acp or circ objects
131             if (copyData.circ) {
132                 // flesh circ_lib locally
133                 copyData.circ.circ_lib(egCore.org.get(copyData.circ.circ_lib()));
134
135             }
136             var flatCopy;
137
138             if (noListDupes) {
139                 // use the existing copy if possible
140                 flatCopy = service.copies.filter(
141                     function(c) {return c.id == copyData.copy.id()})[0];
142             }
143
144             // flesh acn.owning_lib
145             copyData.copy.call_number().owning_lib(egCore.org.get(copyData.copy.call_number().owning_lib()));
146
147             if (!flatCopy) {
148                 flatCopy = egCore.idl.toHash(copyData.copy, true);
149
150                 if (copyData.circ) {
151                     flatCopy._circ = egCore.idl.toHash(copyData.circ, true);
152                     flatCopy._circ_summary = egCore.idl.toHash(copyData.circ_summary, true);
153                     flatCopy._circ_lib = copyData.circ.circ_lib();
154                     flatCopy._duration = copyData.circ.duration();
155                     flatCopy._circ_ws = flatCopy._circ_summary.last_renewal_workstation ?
156                                         flatCopy._circ_summary.last_renewal_workstation :
157                                         flatCopy._circ_summary.checkout_workstation ?
158                                         flatCopy._circ_summary.checkout_workstation :
159                                         '';
160                 }
161                 flatCopy.index = service.index++;
162                 flatCopy.copy_alert_count = copyData.copy.copy_alerts().filter(function(aca) {
163                     return !aca.ack_time();
164                 }).length;
165
166                 service.copies.unshift(flatCopy);
167             }
168
169             //Get in-house use count
170             egCore.pcrud.search('aihu',
171                 {item : flatCopy.id}, {}, {idlist : true, atomic : true})
172             .then(function(uses) {
173                 flatCopy._inHouseUseCount = uses.length;
174                 copyData.copy._inHouseUseCount = uses.length;
175             });
176
177             //Get Monograph Parts
178             egCore.pcrud.search('acpm',
179                 {target_copy: flatCopy.id},
180                 { flesh : 1, flesh_fields : { acpm : ['part'] } },
181                 {atomic :true})
182             .then(function(acpm_array) {
183                 angular.forEach(acpm_array, function(acpm) {
184                     flatCopy.parts = egCore.idl.toHash(acpm.part());
185                     copyData.copy.parts = egCore.idl.toHash(acpm.part());
186                 });
187             });
188
189             return lastRes = {
190                 copy : copyData.copy,
191                 index : flatCopy.index
192             }
193         });
194
195
196     }
197
198     //all_items = selected grid rows, to be updated in place
199     service.updateInventory = function(copy_list, all_items) {
200         if (copy_list.length == 0) return;
201         return egCore.net.request(
202             'open-ils.circ',
203             'open-ils.circ.circulation.update_latest_inventory',
204             egCore.auth.token(), {copy_list: copy_list}
205         ).then(function(res) {
206             if (res) {
207                 if (all_items) angular.forEach(copy_list, function(copy) {
208                     angular.forEach(all_items, function(item) {
209                         if (copy == item.id) {
210                             egCore.pcrud.search('alci', {copy: copy},
211                               {flesh: 1, flesh_fields:
212                                 {alci: ['inventory_workstation']}
213                             }).then(function(alci) {
214                                 //update existing grid rows
215                                 item["latest_inventory.inventory_date"] = alci.inventory_date();
216                                 item["latest_inventory.inventory_workstation.name"] =
217                                     alci.inventory_workstation().name();
218                             });
219                         }
220                     });
221                 });
222                 return all_items || res;
223             }
224         });
225     }
226
227     service.add_copies_to_bucket = function(copy_list) {
228         if (copy_list.length == 0) return;
229
230         return $uibModal.open({
231             templateUrl: './cat/catalog/t_add_to_bucket',
232             backdrop: 'static',
233             animation: true,
234             size: 'md',
235             controller:
236                    ['$scope','$uibModalInstance',
237             function($scope , $uibModalInstance) {
238
239                 $scope.bucket_id = 0;
240                 $scope.newBucketName = '';
241                 $scope.allBuckets = [];
242
243                 egCore.net.request(
244                     'open-ils.actor',
245                     'open-ils.actor.container.retrieve_by_class.authoritative',
246                     egCore.auth.token(), egCore.auth.user().id(),
247                     'copy', 'staff_client'
248                 ).then(function(buckets) { $scope.allBuckets = buckets; });
249
250                 $scope.add_to_bucket = function() {
251                     var promises = [];
252                     angular.forEach(copy_list, function (cp) {
253                         var item = new egCore.idl.ccbi()
254                         item.bucket($scope.bucket_id);
255                         item.target_copy(cp);
256                         promises.push(
257                             egCore.net.request(
258                                 'open-ils.actor',
259                                 'open-ils.actor.container.item.create',
260                                 egCore.auth.token(), 'copy', item
261                             )
262                         );
263
264                         return $q.all(promises).then(function() {
265                             $uibModalInstance.close();
266                         });
267                     });
268                 }
269
270                 $scope.add_to_new_bucket = function() {
271                     var bucket = new egCore.idl.ccb();
272                     bucket.owner(egCore.auth.user().id());
273                     bucket.name($scope.newBucketName);
274                     bucket.description('');
275                     bucket.btype('staff_client');
276
277                     return egCore.net.request(
278                         'open-ils.actor',
279                         'open-ils.actor.container.create',
280                         egCore.auth.token(), 'copy', bucket
281                     ).then(function(bucket) {
282                         $scope.bucket_id = bucket;
283                         $scope.add_to_bucket();
284                     });
285                 }
286
287                 $scope.cancel = function() {
288                     $uibModalInstance.dismiss();
289                 }
290             }]
291         });
292     }
293
294     service.make_copies_bookable = function(items) {
295
296         var copies_by_record = {};
297         var record_list = [];
298         angular.forEach(
299             items,
300             function (item) {
301                 var record_id = item['call_number.record.id'];
302                 if (typeof copies_by_record[ record_id ] == 'undefined') {
303                     copies_by_record[ record_id ] = [];
304                     record_list.push( record_id );
305                 }
306                 copies_by_record[ record_id ].push(item.id);
307             }
308         );
309
310         var promises = [];
311         var combined_results = [];
312         angular.forEach(record_list, function(record_id) {
313             promises.push(
314                 egCore.net.request(
315                     'open-ils.booking',
316                     'open-ils.booking.resources.create_from_copies',
317                     egCore.auth.token(),
318                     copies_by_record[record_id]
319                 ).then(function(results) {
320                     if (results && results['brsrc']) {
321                         combined_results = combined_results.concat(results['brsrc']);
322                     }
323                 })
324             );
325         });
326
327         $q.all(promises).then(function() {
328             if (combined_results.length > 0) {
329                 $uibModal.open({
330                     template: '<eg-embed-frame url="booking_admin_url" handlers="funcs"></eg-embed-frame>',
331                     backdrop: 'static',
332                     animation: true,
333                     size: 'md',
334                     controller:
335                            ['$scope','$location','egCore','$uibModalInstance',
336                     function($scope , $location , egCore , $uibModalInstance) {
337
338                         $scope.funcs = {
339                             ses : egCore.auth.token(),
340                             resultant_brsrc : combined_results.map(function(o) { return o[0]; })
341                         }
342
343                         var booking_path = '/eg/conify/global/booking/resource';
344
345                         $scope.booking_admin_url =
346                             $location.absUrl().replace(/\/eg\/staff.*/, booking_path);
347                     }]
348                 });
349             }
350         });
351     }
352
353     service.book_copies_now = function(barcode) {
354         location.href = "/eg2/staff/booking/create_reservation/for_resource/" + barcode;
355     }
356
357     service.manage_reservations = function(barcode) {
358         location.href = "/eg2/staff/booking/manage_reservations/by_resource/" + barcode;
359     }
360
361     service.requestItems = function(copy_list) {
362         if (copy_list.length == 0) return;
363
364         return $uibModal.open({
365             templateUrl: './cat/catalog/t_request_items',
366             backdrop: 'static',
367             animation: true,
368             controller:
369                    ['$scope','$uibModalInstance','egUser',
370             function($scope , $uibModalInstance , egUser) {
371                 $scope.user = null;
372                 $scope.first_user_fetch = true;
373
374                 $scope.hold_data = {
375                     hold_type : 'C',
376                     copy_list : copy_list,
377                     pickup_lib: egCore.org.get(egCore.auth.user().ws_ou()),
378                     user      : egCore.auth.user().id()
379                 };
380
381                 egUser.get( $scope.hold_data.user ).then(function(u) {
382                     $scope.user = u;
383                     $scope.barcode = u.card().barcode();
384                     $scope.user_name = egUser.format_name(u);
385                     $scope.hold_data.user = u.id();
386                 });
387
388                 $scope.user_name = '';
389                 $scope.barcode = '';
390                 $scope.$watch('barcode', function (n) {
391                     if (!$scope.first_user_fetch) {
392                         egUser.getByBarcode(n).then(function(u) {
393                             $scope.user = u;
394                             $scope.user_name = egUser.format_name(u);
395                             $scope.hold_data.user = u.id();
396                         }, function() {
397                             $scope.user = null;
398                             $scope.user_name = '';
399                             delete $scope.hold_data.user;
400                         });
401                     }
402                     $scope.first_user_fetch = false;
403                 });
404
405                 $scope.ok = function(h) {
406                     var args = {
407                         patronid  : h.user,
408                         hold_type : h.hold_type,
409                         pickup_lib: h.pickup_lib.id(),
410                         depth     : 0
411                     };
412
413                     egCore.net.request(
414                         'open-ils.circ',
415                         'open-ils.circ.holds.test_and_create.batch.override',
416                         egCore.auth.token(), args, h.copy_list
417                     );
418
419                     $uibModalInstance.close();
420                 }
421
422                 $scope.cancel = function($event) {
423                     $uibModalInstance.dismiss();
424                     $event.preventDefault();
425                 }
426             }]
427         });
428     }
429
430     service.attach_to_peer_bib = function(items) {
431         if (items.length == 0) return;
432
433         egCore.hatch.getItem('eg.cat.marked_conjoined_record').then(function(target_record) {
434             if (!target_record) return;
435
436             return $uibModal.open({
437                 templateUrl: './cat/catalog/t_conjoined_selector',
438                 backdrop: 'static',
439                 animation: true,
440                 controller:
441                        ['$scope','$uibModalInstance',
442                 function($scope , $uibModalInstance) {
443                     $scope.update = false;
444
445                     $scope.peer_type = null;
446                     $scope.peer_type_list = [];
447
448                     get_peer_types = function() {
449                         if (egCore.env.bpt)
450                             return $q.when(egCore.env.bpt.list);
451
452                         return egCore.pcrud.retrieveAll('bpt', null, {atomic : true})
453                         .then(function(list) {
454                             egCore.env.absorbList(list, 'bpt');
455                             return list;
456                         });
457                     }
458
459                     get_peer_types().then(function(list){
460                         $scope.peer_type_list = list;
461                     });
462
463                     $scope.ok = function(type) {
464                         var promises = [];
465
466                         angular.forEach(items, function (cp) {
467                             var n = new egCore.idl.bpbcm();
468                             n.isnew(true);
469                             n.peer_record(target_record);
470                             n.target_copy(cp.id);
471                             n.peer_type(type);
472                             promises.push(egCore.pcrud.create(n).then(function(){service.add_barcode_to_list(cp.barcode)}));
473                         });
474
475                         return $q.all(promises).then(function(){$uibModalInstance.close()});
476                     }
477
478                     $scope.cancel = function($event) {
479                         $uibModalInstance.dismiss();
480                         $event.preventDefault();
481                     }
482                 }]
483             });
484         });
485     }
486
487     service.selectedHoldingsCopyDelete = function (items) {
488         if (items.length == 0) return;
489
490         var copy_objects = [];
491         egCore.pcrud.search('acp',
492             {deleted : 'f', id : items.map(function(el){return el.id;}) },
493             { flesh : 1, flesh_fields : { acp : ['call_number'] } }
494         ).then(function() {
495
496             var cnHash = {};
497             var perCnCopies = {};
498
499             var cn_count = 0;
500             var cp_count = 0;
501
502             angular.forEach(
503                 copy_objects,
504                 function (cp) {
505                     cp.isdeleted(1);
506                     cp_count++;
507                     var cn_id = cp.call_number().id();
508                     if (!cnHash[cn_id]) {
509                         cnHash[cn_id] = cp.call_number();
510                         perCnCopies[cn_id] = [cp];
511                     } else {
512                         perCnCopies[cn_id].push(cp);
513                     }
514                     cp.call_number(cn_id); // prevent loops in JSON-ification
515                 }
516             );
517
518             angular.forEach(perCnCopies, function (v, k) {
519                 cnHash[k].copies(v);
520             });
521
522             cnList = [];
523             angular.forEach(cnHash, function (v, k) {
524                 cnList.push(v);
525             });
526
527             if (cnList.length == 0) return;
528
529             var flags = {};
530
531             egConfirmDialog.open(
532                 egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES,
533                 egCore.strings.CONFIRM_DELETE_COPIES_VOLUMES_MESSAGE,
534                 {copies : cp_count, volumes : cn_count}
535             ).result.then(function() {
536                 egCore.net.request(
537                     'open-ils.cat',
538                     'open-ils.cat.asset.volume.fleshed.batch.update.override',
539                     egCore.auth.token(), cnList, 1, flags
540                 ).then(function(){
541                     angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
542                 });
543             });
544         },
545         null,
546         function(copy) {
547             copy_objects.push(copy);
548         });
549     }
550
551     service.checkin = function (items) {
552         angular.forEach(items, function (cp) {
553             egCirc.checkin({copy_barcode:cp.barcode}).then(
554                 function() { service.add_barcode_to_list(cp.barcode) }
555             );
556         });
557     }
558
559     service.renew = function (items) {
560         angular.forEach(items, function (cp) {
561             egCirc.renew({copy_barcode:cp.barcode}).then(
562                 function() { service.add_barcode_to_list(cp.barcode) }
563             );
564         });
565     }
566
567     service.cancel_transit = function (items) {
568         angular.forEach(items, function(cp) {
569             egCirc.find_copy_transit(null, {copy_barcode:cp.barcode})
570                 .then(function(t) { return egCirc.abort_transit(t.id())    })
571                 .then(function()  { return service.add_barcode_to_list(cp.barcode) });
572         });
573     }
574
575     service.selectedHoldingsDamaged = function (items) {
576         angular.forEach(items, function(cp) {
577             if (cp) {
578                 egCirc.mark_damaged({
579                     id: cp.id,
580                     barcode: cp.barcode,
581                     refresh: cp.refresh
582                 });
583             }
584         });
585     }
586
587     service.selectedHoldingsDiscard = function (items) {
588         egCirc.mark_discard(items.map(function(el){return {id : el.id, barcode : el.barcode};})).then(function(){
589             angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
590         });
591     }
592
593     service.selectedHoldingsMissing = function (items) {
594         egCirc.mark_missing(items.map(function(el){return {id : el.id, barcode : el.barcode};})).then(function(){
595             angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
596         });
597     }
598
599     service.gatherSelectedRecordIds = function (items) {
600         var rid_list = [];
601         angular.forEach(
602             items,
603             function (item) {
604                 if (rid_list.indexOf(item['call_number.record.id']) == -1)
605                     rid_list.push(item['call_number.record.id'])
606             }
607         );
608         return rid_list;
609     }
610
611     service.gatherSelectedVolumeIds = function (items,rid) {
612         var cn_id_list = [];
613         angular.forEach(
614             items,
615             function (item) {
616                 if (rid && item['call_number.record.id'] != rid) return;
617                 if (cn_id_list.indexOf(item['call_number.id']) == -1)
618                     cn_id_list.push(item['call_number.id'])
619             }
620         );
621         return cn_id_list;
622     }
623
624     service.gatherSelectedHoldingsIds = function (items,rid) {
625         var cp_id_list = [];
626         angular.forEach(
627             items,
628             function (item) {
629                 if (rid && item['call_number.record.id'] != rid) return;
630                 cp_id_list.push(item.id)
631             }
632         );
633         return cp_id_list;
634     }
635
636     service.spawnHoldingsAdd = function (items,use_vols,use_copies){
637         angular.forEach(service.gatherSelectedRecordIds(items), function (r) {
638             var raw = [];
639             if (use_copies) { // just a copy on existing volumes
640                 angular.forEach(service.gatherSelectedVolumeIds(items,r), function (v) {
641                     raw.push( {callnumber : v} );
642                 });
643             } else if (use_vols) {
644                 angular.forEach(
645                     service.gatherSelectedHoldingsIds(items,r),
646                     function (i) {
647                         angular.forEach(items, function(item) {
648                             if (i == item.id) raw.push({owner : item['call_number.owning_lib']});
649                         });
650                     }
651                 );
652             }
653
654             if (raw.length == 0) raw.push({});
655
656             egCore.net.request(
657                 'open-ils.actor',
658                 'open-ils.actor.anon_cache.set_value',
659                 null, 'edit-these-copies', {
660                     record_id: r,
661                     raw: raw,
662                     hide_vols : false,
663                     hide_copies : false
664                 }
665             ).then(function(key) {
666                 if (key) {
667                     var url = egCore.env.basePath + 'cat/volcopy/' + key;
668                     $timeout(function() { $window.open(url, '_blank') });
669                 } else {
670                     alert('Could not create anonymous cache key!');
671                 }
672             });
673         });
674     }
675
676     service.spawnHoldingsEdit = function (items,hide_vols,hide_copies){
677         var item_ids = [];
678         angular.forEach(items, function(i){
679             item_ids.push(i.id);
680         });
681
682         // provide record_id iff one record is selected.
683         // 0 disables record summary
684         var record_ids = service.gatherSelectedRecordIds(items);
685         var record_id  = record_ids.length === 1 ? record_ids[0] : 0;
686         egCore.net.request(
687             'open-ils.actor',
688             'open-ils.actor.anon_cache.set_value',
689             null,
690             'edit-these-copies',
691             {
692                 record_id: record_id,
693                 copies: item_ids,
694                 raw: {},
695                 hide_vols : hide_vols,
696                 hide_copies : hide_copies
697             }).then(function(key) {
698                 if (key) {
699                     var url = egCore.env.basePath + 'cat/volcopy/' + key;
700                     $timeout(function() { $window.open(url, '_blank') });
701                 } else {
702                     alert('Could not create anonymous cache key!');
703                 }
704             });
705     }
706
707     service.replaceBarcodes = function(items) {
708         angular.forEach(items, function (cp) {
709             $uibModal.open({
710                 templateUrl: './cat/share/t_replace_barcode',
711                 backdrop: 'static',
712                 animation: true,
713                 controller:
714                            ['$scope','$uibModalInstance',
715                     function($scope , $uibModalInstance) {
716                         $scope.isModal = true;
717                         $scope.focusBarcode = false;
718                         $scope.focusBarcode2 = true;
719                         $scope.barcode1 = cp.barcode;
720
721                         $scope.updateBarcode = function() {
722                             $scope.copyNotFound = false;
723                             $scope.updateOK = false;
724
725                             egCore.pcrud.search('acp',
726                                 {deleted : 'f', barcode : $scope.barcode1})
727                             .then(function(copy) {
728
729                                 if (!copy) {
730                                     $scope.focusBarcode = true;
731                                     $scope.copyNotFound = true;
732                                     return;
733                                 }
734
735                                 $scope.copyId = copy.id();
736                                 copy.barcode($scope.barcode2);
737
738                                 egCore.pcrud.update(copy).then(function(stat) {
739                                     $scope.updateOK = stat;
740                                     $scope.focusBarcode = true;
741                                     if (stat) service.add_barcode_to_list(copy.barcode());
742                                 });
743
744                             });
745                             $uibModalInstance.close();
746                         }
747
748                         $scope.cancel = function($event) {
749                             $uibModalInstance.dismiss();
750                             $event.preventDefault();
751                         }
752                     }
753                 ]
754             });
755         });
756     }
757
758     // this "transfers" selected copies to a new owning library,
759     // auto-creating volumes and deleting unused volumes as required.
760     service.changeItemOwningLib = function(items) {
761         var xfer_target = egCore.hatch.getLocalItem('eg.cat.transfer_target_lib');
762         if (!xfer_target || !items.length) {
763             return;
764         }
765         var vols_to_move   = {};
766         var copies_to_move = {};
767         angular.forEach(items, function(item) {
768             if (item['call_number.owning_lib'] != xfer_target) {
769                 if (item['call_number.id'] in vols_to_move) {
770                     copies_to_move[item['call_number.id']].push(item.id);
771                 } else {
772                     vols_to_move[item['call_number.id']] = {
773                         label       : item['call_number.label'],
774                         label_class : item['call_number.label_class'],
775                         record      : item['call_number.record.id'],
776                         prefix      : item['call_number.prefix.id'],
777                         suffix      : item['call_number.suffix.id']
778                     };
779                     copies_to_move[item['call_number.id']] = new Array;
780                     copies_to_move[item['call_number.id']].push(item.id);
781                 }
782             }
783         });
784
785         var promises = [];
786         angular.forEach(vols_to_move, function(vol, vol_id) {
787             promises.push(egCore.net.request(
788                 'open-ils.cat',
789                 'open-ils.cat.call_number.find_or_create',
790                 egCore.auth.token(),
791                 vol.label,
792                 vol.record,
793                 xfer_target,
794                 vol.prefix,
795                 vol.suffix,
796                 vol.label_class
797             ).then(function(resp) {
798                 var evt = egCore.evt.parse(resp);
799                 if (evt) return;
800                 return egCore.net.request(
801                     'open-ils.cat',
802                     'open-ils.cat.transfer_copies_to_volume',
803                     egCore.auth.token(),
804                     resp.acn_id,
805                     copies_to_move[vol_id]
806                 );
807             }));
808         });
809
810         $q.all(promises)
811         .then(
812             function() {
813                 angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
814             }
815         );
816     }
817
818     service.transferItems = function (items){
819         var xfer_target = egCore.hatch.getLocalItem('eg.cat.transfer_target_vol');
820         var copy_ids = service.gatherSelectedHoldingsIds(items);
821         if (xfer_target && copy_ids.length > 0) {
822             egCore.net.request(
823                 'open-ils.cat',
824                 'open-ils.cat.transfer_copies_to_volume',
825                 egCore.auth.token(),
826                 xfer_target,
827                 copy_ids
828             ).then(
829                 function(resp) { // oncomplete
830                     var evt = egCore.evt.parse(resp);
831                     if (evt) {
832                         egConfirmDialog.open(
833                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_TITLE,
834                             egCore.strings.OVERRIDE_TRANSFER_COPIES_TO_MARKED_VOLUME_BODY,
835                             {'evt_desc': evt}
836                         ).result.then(function() {
837                             egCore.net.request(
838                                 'open-ils.cat',
839                                 'open-ils.cat.transfer_copies_to_volume.override',
840                                 egCore.auth.token(),
841                                 xfer_target,
842                                 copy_ids,
843                                 { events: ['TITLE_LAST_COPY', 'COPY_DELETE_WARNING'] }
844                             );
845                         }).then(function() {
846                             angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
847                         });
848                     } else {
849                         angular.forEach(items, function(cp){service.add_barcode_to_list(cp.barcode)});
850                     }
851
852                 },
853                 null, // onerror
854                 null // onprogress
855             );
856         }
857     }
858
859     service.mark_missing_pieces = function(copy,outer_scope) {
860         var b = copy.barcode();
861         var t = egCore.idl.toHash(copy.call_number()).record.title;
862         egConfirmDialog.open(
863             egCore.strings.CONFIRM_MARK_MISSING_TITLE,
864             egCore.strings.CONFIRM_MARK_MISSING_BODY,
865             { barcode : b, title : t }
866         ).result.then(function() {
867
868             // kick off mark missing
869             return egCore.net.request(
870                 'open-ils.circ',
871                 'open-ils.circ.mark_item_missing_pieces',
872                 egCore.auth.token(), copy.id()
873             )
874
875         }).then(function(resp) {
876             var evt = egCore.evt.parse(resp); // should always produce event
877
878             if (evt.textcode == 'ACTION_CIRCULATION_NOT_FOUND') {
879                 return egAlertDialog.open(
880                     egCore.strings.CIRC_NOT_FOUND, {barcode : copy.barcode()});
881             }
882
883             var payload = evt.payload;
884
885             // TODO: open copy editor inline?  new tab?
886
887             // print the missing pieces slip
888             var promise = $q.when();
889             if (payload.slip) {
890                 // wait for completion, since it may spawn a confirm dialog
891                 promise = egCore.print.print({
892                     context : 'default',
893                     content_type : 'text/html',
894                     content : payload.slip.template_output().data()
895                 });
896             }
897
898             if (payload.letter) {
899                 outer_scope.letter = payload.letter.template_output().data();
900             }
901
902             // apply patron penalty
903             if (payload.circ) {
904                 promise.then(function() {
905                     egCirc.create_penalty(payload.circ.usr())
906                 });
907             }
908
909         });
910     }
911
912     service.print_spine_labels = function(copy_ids){
913         egCore.net.request(
914             'open-ils.actor',
915             'open-ils.actor.anon_cache.set_value',
916             null, 'print-labels-these-copies', {
917                 copies : copy_ids
918             }
919         ).then(function(key) {
920             if (key) {
921                 var url = egCore.env.basePath + 'cat/printlabels/' + key;
922                 $timeout(function() { $window.open(url, '_blank') });
923             } else {
924                 alert('Could not create anonymous cache key!');
925             }
926         });
927     }
928
929     service.show_in_catalog = function(copy_list){
930         angular.forEach(copy_list, function(copy){
931             window.open('/eg/staff/cat/catalog/record/'+copy['call_number.record.id']+'/catalog', '_blank')
932         });
933     }
934
935     return service;
936 }])
937 .filter('string_pick', function() { return function(i){ return arguments[i] || ''; }; })