]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_buckets.js
refactoring.. moved some list print/clipboard functions into list.js
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_buckets.js
1 dump('entering cat.copy_buckets.js\n');
2
3 if (typeof cat == 'undefined') cat = {};
4 cat.copy_buckets = function (params) {
5
6         JSAN.use('util.error'); this.error = new util.error();
7         JSAN.use('util.network'); this.network = new util.network();
8         JSAN.use('util.date');
9         JSAN.use('OpenILS.data'); this.data = new OpenILS.data(); this.data.init({'via':'stash'});
10         this.first_pause = true;
11 }
12
13 cat.copy_buckets.prototype = {
14         'selection_list1' : [],
15         'selection_list2' : [],
16         'bucket_id_name_map' : {},
17
18         'render_pending_copies' : function() {
19                 if (this.first_pause) {
20                         this.first_pause = false;
21                 } else {
22                         alert("Action completed.");
23                 }
24                 var obj = this;
25                 obj.list1.clear();
26                 for (var i = 0; i < obj.copy_ids.length; i++) {
27                         var item = obj.flesh_item_for_list( obj.copy_ids[i] );
28                         if (item) obj.list1.append( item );
29                 }
30         },
31
32         'init' : function( params ) {
33
34                 var obj = this;
35
36                 obj.copy_ids = params['copy_ids'] || [];
37
38                 JSAN.use('circ.util');
39                 var columns = circ.util.columns( 
40                         { 
41                                 'barcode' : { 'hidden' : false },
42                                 'title' : { 'hidden' : false },
43                                 'location' : { 'hidden' : false },
44                                 'call_number' : { 'hidden' : false },
45                                 'status' : { 'hidden' : false },
46                                 'deleted' : { 'hidden' : false },
47                         } 
48                 );
49
50                 JSAN.use('util.list'); 
51
52                 obj.list1 = new util.list('pending_copies_list');
53                 obj.list1.init(
54                         {
55                                 'columns' : columns,
56                                 'map_row_to_columns' : circ.util.std_map_row_to_columns(),
57                                 'on_select' : function(ev) {
58                                         try {
59                                                 JSAN.use('util.functional');
60                                                 var sel = obj.list1.retrieve_selection();
61                                                 document.getElementById('clip_button1').disabled = sel.length < 1;
62                                                 obj.selection_list1 = util.functional.map_list(
63                                                         sel,
64                                                         function(o) { return JSON2js(o.getAttribute('retrieve_id')); }
65                                                 );
66                                                 obj.error.sdump('D_TRACE','circ/copy_buckets: selection list 1 = ' + js2JSON(obj.selection_list1) );
67                                                 if (obj.selection_list1.length == 0) {
68                                                         obj.controller.view.copy_buckets_sel_add.disabled = true;
69                                                 } else {
70                                                         obj.controller.view.copy_buckets_sel_add.disabled = false;
71                                                 }
72                                         } catch(E) {
73                                                 alert('FIXME: ' + E);
74                                         }
75                                 },
76
77                         }
78                 );
79
80                 obj.render_pending_copies();
81         
82                 obj.list2 = new util.list('copies_in_bucket_list');
83                 obj.list2.init(
84                         {
85                                 'columns' : columns,
86                                 'map_row_to_columns' : circ.util.std_map_row_to_columns(),
87                                 'on_select' : function(ev) {
88                                         try {
89                                                 JSAN.use('util.functional');
90                                                 var sel = obj.list2.retrieve_selection();
91                                                 document.getElementById('clip_button2').disabled = sel.length < 1;
92                                                 obj.selection_list2 = util.functional.map_list(
93                                                         sel,
94                                                         function(o) { return JSON2js(o.getAttribute('retrieve_id')); }
95                                                 );
96                                                 obj.error.sdump('D_TRACE','circ/copy_buckets: selection list 2 = ' + js2JSON(obj.selection_list2) );
97                                                 if (obj.selection_list2.length == 0) {
98                                                         obj.controller.view.copy_buckets_delete_item.disabled = true;
99                                                         obj.controller.view.copy_buckets_delete_item.setAttribute('disabled','true');
100                                                         obj.controller.view.copy_buckets_export.disabled = true;
101                                                         obj.controller.view.copy_buckets_export.setAttribute('disabled','true');
102                                                 } else {
103                                                         obj.controller.view.copy_buckets_delete_item.disabled = false;
104                                                         obj.controller.view.copy_buckets_delete_item.setAttribute('disabled','false');
105                                                         obj.controller.view.copy_buckets_export.disabled = false;
106                                                         obj.controller.view.copy_buckets_export.setAttribute('disabled','false');
107                                                 }
108                                         } catch(E) {
109                                                 alert('FIXME: ' + E);
110                                         }
111                                 },
112                         }
113                 );
114                 
115                 JSAN.use('util.controller'); obj.controller = new util.controller();
116                 obj.controller.init(
117                         {
118                                 'control_map' : {
119                                         'save_columns2' : [
120                                                 ['command'],
121                                                 function() { obj.list2.save_columns(); }
122                                         ],
123                                         'save_columns1' : [
124                                                 ['command'],
125                                                 function() { obj.list1.save_columns(); }
126                                         ],
127                                         'sel_clip2' : [
128                                                 ['command'],
129                                                 function() { obj.list2.clipboard(); }
130                                         ],
131                                         'sel_clip1' : [
132                                                 ['command'],
133                                                 function() { obj.list1.clipboard(); }
134                                         ],
135                                         'copy_buckets_menulist_placeholder' : [
136                                                 ['render'],
137                                                 function(e) {
138                                                         return function() {
139                                                                 JSAN.use('util.widgets'); JSAN.use('util.functional');
140                                                                 var items = [ ['Choose a bucket...',''], ['Retrieve shared bucket...',-1] ].concat(
141                                                                         util.functional.map_list(
142                                                                                 obj.network.simple_request(
143                                                                                         'BUCKET_RETRIEVE_VIA_USER',
144                                                                                         [ ses(), obj.data.list.au[0].id() ]
145                                                                                 ).copy,
146                                                                                 function(o) {
147                                                                                         obj.bucket_id_name_map[ o.id() ] = o.name();
148                                                                                         return [ o.name(), o.id() ];
149                                                                                 }
150                                                                         ).sort( 
151                                                         function( a, b ) {
152                                                             if (a[0] < b[0]) return -1;
153                                                             if (a[0] > b[0]) return 1;
154                                                             return 0;
155                                                         }
156                                                                         )
157                                                                 );
158                                                                 obj.error.sdump('D_TRACE','items = ' + js2JSON(items));
159                                                                 util.widgets.remove_children( e );
160                                                                 var ml = util.widgets.make_menulist(
161                                                                         items
162                                                                 );
163                                                                 e.appendChild( ml );
164                                                                 ml.setAttribute('id','bucket_menulist');
165                                                                 ml.setAttribute('accesskey','');
166
167                                                                 function change_bucket(ev) {
168                                                                         var bucket_id = ev.target.value;
169                                                                         if (bucket_id < 0 ) {
170                                                                                 bucket_id = window.prompt('Enter bucket number:');
171                                                                                 ev.target.value = bucket_id;
172                                                                                 ev.target.setAttribute('value',bucket_id);
173                                                                         }
174                                                                         if (!bucket_id) return;
175                                                                         var bucket = obj.network.simple_request(
176                                                                                 'BUCKET_FLESH',
177                                                                                 [ ses(), 'copy', bucket_id ]
178                                                                         );
179                                                                         if (typeof bucket.ilsevent != 'undefined') {
180                                                                                 if (bucket.ilsevent == 1506 /* CONTAINER_NOT_FOUND */) {
181                                                                                         alert('Could not find a bucket with ID = ' + bucket_id);
182                                                                                 } else {
183                                                                                         obj.error.standard_unexpected_error_alert('Error retrieving bucket.  Did you use a valid bucket id?',bucket);
184                                                                                 }
185                                                                                 return;
186                                                                         }
187                                                                         try {
188                                                                                 var x = document.getElementById('info_box');
189                                                                                 x.setAttribute('hidden','false');
190                                                                                 x = document.getElementById('bucket_number');
191                                                                                 x.setAttribute('value',bucket.id());
192                                                                                 x = document.getElementById('bucket_name');
193                                                                                 x.setAttribute('value',bucket.name());
194                                                                                 x = document.getElementById('bucket_owner');
195                                                                                 var s = bucket.owner(); JSAN.use('patron.util');
196                                                                                 if (s && typeof s != "object") s = patron.util.retrieve_fleshed_au_via_id(ses(),s); 
197                                                                                 x.setAttribute('value',s.card().barcode() + " @ " + obj.data.hash.aou[ s.home_ou() ].shortname());
198
199                                                                         } catch(E) {
200                                                                                 alert(E);
201                                                                         }
202                                                                         var items = bucket.items() || [];
203                                                                         obj.list2.clear();
204                                                                         for (var i = 0; i < items.length; i++) {
205                                                                                 var item = obj.flesh_item_for_list( 
206                                                                                         items[i].target_copy(),
207                                                                                         items[i].id()
208                                                                                 );
209                                                                                 if (item) obj.list2.append( item );
210                                                                         }
211                                                                 }
212
213                                                                 ml.addEventListener( 'change_bucket', change_bucket , false);
214                                                                 ml.addEventListener( 'command', function() {
215                                                                         JSAN.use('util.widgets'); util.widgets.dispatch('change_bucket',ml);
216                                                                 }, false);
217                                                                 obj.controller.view.bucket_menulist = ml;
218                                                                 JSAN.use('util.widgets'); util.widgets.dispatch('change_bucket',ml);
219                                                                 document.getElementById('refresh').addEventListener( 'command', function() {
220                                                                         JSAN.use('util.widgets'); util.widgets.dispatch('change_bucket',ml);
221                                                                 }, false);
222                                                         };
223                                                 },
224                                         ],
225
226                                         'copy_buckets_add' : [
227                                                 ['command'],
228                                                 function() {
229                                                         var bucket_id = obj.controller.view.bucket_menulist.value;
230                                                         if (!bucket_id) return;
231                                                         for (var i = 0; i < obj.copy_ids.length; i++) {
232                                                                 var bucket_item = new ccbi();
233                                                                 bucket_item.isnew('1');
234                                                                 bucket_item.bucket(bucket_id);
235                                                                 bucket_item.target_copy( obj.copy_ids[i] );
236                                                                 try {
237                                                                         var robj = obj.network.simple_request('BUCKET_ITEM_CREATE',
238                                                                                 [ ses(), 'copy', bucket_item ]);
239
240                                                                         if (typeof robj == 'object') throw robj;
241
242                                                                         var item = obj.flesh_item_for_list( obj.copy_ids[i], robj );
243                                                                         if (!item) continue;
244
245                                                                         obj.list2.append( item );
246                                                                 } catch(E) {
247                                                                         obj.error.standard_unexpected_error_alert('Addition likely failed.',E);
248                                                                 }
249                                                         }
250                                                 }
251                                         ],
252                                         'copy_buckets_sel_add' : [
253                                                 ['command'],
254                                                 function() {                                                        
255                                                         var bucket_id = obj.controller.view.bucket_menulist.value;
256                                                         if (!bucket_id) return;
257                                                         for (var i = 0; i < obj.selection_list1.length; i++) {
258                                                                 var acp_id = obj.selection_list1[i][0];
259                                                                 //var barcode = obj.selection_list1[i][1];
260                                                                 var bucket_item = new ccbi();
261                                                                 bucket_item.isnew('1');
262                                                                 bucket_item.bucket(bucket_id);
263                                                                 bucket_item.target_copy( acp_id );
264                                                                 try {
265                                                                         var robj = obj.network.simple_request('BUCKET_ITEM_CREATE',
266                                                                                 [ ses(), 'copy', bucket_item ]);
267
268                                                                         if (typeof robj == 'object') throw robj;
269
270                                                                         var item = obj.flesh_item_for_list( acp_id, robj );
271                                                                         if (!item) continue;
272
273                                                                         obj.list2.append( item );
274                                                                 } catch(E) {
275                                                                         obj.error.standard_unexpected_error_alert('Deletion likely failed.',E);
276                                                                 }
277                                                         }
278
279                                                 }
280                                         ],
281                                         'copy_buckets_export' : [
282                                                 ['command'],
283                                                 function() {                                                        
284                                                         for (var i = 0; i < obj.selection_list2.length; i++) {
285                                                                 var acp_id = obj.selection_list2[i][0];
286                                                                 //var barcode = obj.selection_list1[i][1];
287                                                                 //var bucket_item_id = obj.selection_list1[i][2];
288                                                                 var item = obj.flesh_item_for_list( acp_id );
289                                                                 if (item) {
290                                                                         obj.list1.append( item );
291                                                                         obj.copy_ids.push( acp_id );
292                                                                 }
293                                                         }
294                                                 }
295                                         ],
296
297                                         'copy_buckets_delete_item' : [
298                                                 ['command'],
299                                                 function() {
300                                                         for (var i = 0; i < obj.selection_list2.length; i++) {
301                                                                 try {
302                                                                         //var acp_id = obj.selection_list2[i][0];
303                                                                         //var barcode = obj.selection_list2[i][1];
304                                                                         var bucket_item_id = obj.selection_list2[i][2];
305                                                                         var robj = obj.network.simple_request('BUCKET_ITEM_DELETE',
306                                                                                 [ ses(), 'copy', bucket_item_id ]);
307                                                                         if (typeof robj == 'object') throw robj;
308                                                                 } catch(E) {
309                                                                         obj.error.standard_unexpected_error_alert('Deletion likely failed.',E);
310                                                                 }
311                                                         }
312                                                         alert("Action completed.");
313                                                         setTimeout(
314                                                                 function() {
315                                                                         JSAN.use('util.widgets'); 
316                                                                         util.widgets.dispatch('change_bucket',obj.controller.view.bucket_menulist);
317                                                                 }, 0
318                                                         );
319                                                 }
320                                         ],
321                                         'copy_buckets_delete_bucket' : [
322                                                 ['command'],
323                                                 function() {
324                                                         try {
325                                                                 var bucket = obj.controller.view.bucket_menulist.value;
326                                                                 var name = obj.bucket_id_name_map[ bucket ];
327                                                                 var conf = window.confirm('Delete the bucket named ' + name + '?');
328                                                                 if (!conf) return;
329                                                                 obj.list2.clear();
330                                                                 var robj = obj.network.simple_request('BUCKET_DELETE',[ses(),'copy',bucket]);
331                                                                 if (typeof robj == 'object') throw robj;
332                                                                 alert("Action completed.");
333                                                                 obj.controller.render('copy_buckets_menulist_placeholder');
334                                                         } catch(E) {
335                                                                 obj.error.standard_unexpected_error_alert('Bucket deletion likely failed.',E);
336                                                         }
337                                                 }
338                                         ],
339                                         'copy_buckets_new_bucket' : [
340                                                 ['command'],
341                                                 function() {
342                                                         try {
343                                                                 var name = prompt('What would you like to name the bucket?','','Bucket Creation');
344
345                                                                 if (name) {
346                                                                         var bucket = new ccb();
347                                                                         bucket.btype('staff_client');
348                                                                         bucket.owner( obj.data.list.au[0].id() );
349                                                                         bucket.name( name );
350
351                                                                         var robj = obj.network.simple_request('BUCKET_CREATE',[ses(),'copy',bucket]);
352
353                                                                         if (typeof robj == 'object') {
354                                                                                 if (robj.ilsevent == 1710 /* CONTAINER_EXISTS */) {
355                                                                                         alert('You already have a bucket with that name.');
356                                                                                         return;
357                                                                                 }
358                                                                                 throw robj;
359                                                                         }
360
361                                                                         alert('Bucket "' + name + '" created.');
362
363                                                                         obj.controller.render('copy_buckets_menulist_placeholder');
364                                                                         obj.controller.view.bucket_menulist.value = robj;
365                                                                         setTimeout(
366                                                                                 function() {
367                                                                                         JSAN.use('util.widgets'); 
368                                                                                         util.widgets.dispatch('change_bucket',obj.controller.view.bucket_menulist);
369                                                                                 }, 0
370                                                                         );
371                                                                 }
372                                                         } catch(E) {
373                                                                 obj.error.standard_unexpected_error_alert('Bucket creation failed.',E);
374                                                         }
375                                                 }
376                                         ],
377                                         'copy_buckets_batch_copy_edit' : [
378                                                 ['command'],
379                                                 function() {
380                                                         try {
381
382                                                                 obj.list2.select_all();
383                                                         
384                                                                 JSAN.use('util.widgets'); JSAN.use('util.functional');
385
386                                                                 var list = util.functional.map_list(
387                                                                         obj.list2.dump_retrieve_ids(),
388                                                                         function (o) {
389                                                                                 return JSON2js(o)[0]; // acp_id
390                                                                         }
391                                                                 );
392
393                                                                 var copies = util.functional.map_list(
394                                                                         list,
395                                                                         function (acp_id) {
396                                                                                 return obj.network.simple_request('FM_ACP_RETRIEVE',[acp_id]);
397                                                                         }
398                                                                 );
399
400                                                                 var edit = 0;
401                                                                 try {
402                                                                         edit = obj.network.request(
403                                                                                 api.PERM_MULTI_ORG_CHECK.app,
404                                                                                 api.PERM_MULTI_ORG_CHECK.method,
405                                                                                 [ 
406                                                                                         ses(), 
407                                                                                         obj.data.list.au[0].id(), 
408                                                                                         util.functional.map_list(
409                                                                                                 copies,
410                                                                                                 function (o) {
411                                                                                                         return o.call_number() == -1 ? o.circ_lib() : obj.network.simple_request('FM_ACN_RETRIEVE',[o.call_number()]).owning_lib();
412                                                                                                 }
413                                                                                         ),
414                                                                                         copies.length == 1 ? [ 'UPDATE_COPY' ] : [ 'UPDATE_COPY', 'UPDATE_BATCH_COPY' ]
415                                                                                 ]
416                                                                         ).length == 0 ? 1 : 0;
417                                                                 } catch(E) {
418                                                                         obj.error.sdump('D_ERROR','batch permission check: ' + E);
419                                                                 }
420
421                                                                 JSAN.use('cat.util'); cat.util.spawn_copy_editor(list,edit);
422
423                                                                 obj.render_pending_copies(); // FIXME -- need a generic refresh for lists
424                                                                 setTimeout(
425                                                                         function() {
426                                                                                 JSAN.use('util.widgets'); 
427                                                                                 util.widgets.dispatch('change_bucket',obj.controller.view.bucket_menulist);
428                                                                         }, 0
429                                                                 );
430                                                         } catch(E) {
431                                                                 alert( js2JSON(E) );
432                                                         }
433                                                 }
434                                         ],
435                                         'copy_buckets_batch_copy_delete' : [
436                                                 ['command'],
437                                                 function() {
438                                                         try {
439                                                         
440                                                                 obj.list2.select_all();
441
442                                                                 JSAN.use('util.widgets'); JSAN.use('util.functional');
443
444                                                                 var list = util.functional.map_list(
445                                                                         obj.list2.dump_retrieve_ids(),
446                                                                         function (o) {
447                                                                                 return JSON2js(o)[0]; // acp_id
448                                                                         }
449                                                                 );
450
451                                                                 var copies = util.functional.map_list(
452                                                                         list,
453                                                                         function (acp_id) {
454                                                                                 return obj.network.simple_request('FM_ACP_RETRIEVE',[acp_id]);
455                                                                         }
456                                                                 );
457
458                                                                 for (var i = 0; i < copies.length; i++) {
459                                                                         copies[i].ischanged(1);
460                                                                         copies[i].isdeleted(1);
461                                                                 }
462
463                                                                 var robj = obj.network.simple_request('FM_ACP_FLESHED_BATCH_UPDATE',[ ses(), copies, true]);
464                                                                 if (typeof robj.ilsevent != 'undefined') {
465                                                                         switch(robj.ilsevent) {
466                                                                                 case 1227 /* COPY_DELETE_WARNING */ : 
467                                                                                         var copy;
468                                                                                         for (var i = 0; i < copies.length; i++) { if (copies[i].id()==robj.payload) copy = function(a){return a;}(copies[i]); }
469                                                                                         /* The copy in question is not in an ideal status for deleting */
470                                                                                         var err = '*** ' + robj.desc + ' ***\n';
471                                                                                         /* The barcode for the item is {1} */
472                                                                                         err += $('catStrings').getFormattedString('cat.barcode_for_item',[ copy.barcode() ]) + '\n';
473                                                                                         /* The whole batch operation failed */
474                                                                                         err += $('catStrings').getString('cat.batch_operation_failed') + '\n';
475                                                                                         alert(err);
476                                                                                 break;
477                                                                                 default: obj.error.standard_unexpected_error_alert('Batch Item Deletion',robj);
478                                                                         }
479                                                                 }
480
481                                                                 obj.render_pending_copies(); // FIXME -- need a generic refresh for lists
482                                                                 setTimeout(
483                                                                         function() {
484                                                                                 JSAN.use('util.widgets'); 
485                                                                                 util.widgets.dispatch('change_bucket',obj.controller.view.bucket_menulist);
486                                                                         }, 0
487                                                                 );
488                                                         } catch(E) {
489                                                                 alert( js2JSON(E) );
490                                                         }
491                                                 }
492                                         ],
493
494                                         'copy_buckets_transfer_to_volume' : [
495                                                 ['command'],
496                                                 function() {
497                                                         try {
498                                                                 obj.list2.select_all();
499
500                                                                 obj.data.stash_retrieve();
501                                                                 if (!obj.data.marked_volume) {
502                                                                         alert('Please mark a volume as the destination from within the copy browser and then try this again.');
503                                                                         return;
504                                                                 }
505
506                                                                 var copy_ids = util.functional.map_list(
507                                                                         obj.list2.dump_retrieve_ids(),
508                                                                         function (o) {
509                                                                                 return JSON2js(o)[0]; // acp_id
510                                                                         }
511                                                                 )
512
513                                                                 var volume = obj.network.simple_request('FM_ACN_RETRIEVE',[ obj.data.marked_volume ]);
514
515                                                                 var msg = 'Transfer the items in bucket "';
516                                                                 msg += obj.controller.view.bucket_menulist.getAttribute('label') + '" ';
517                                                                 msg += 'from their original volumes to ';
518                                                                 msg += obj.data.hash.aou[ volume.owning_lib() ].shortname() + "'s volume labelled ";
519                                                                 msg += '"' + volume.label() + '" on the following record?';
520
521                                                                 JSAN.use('cat.util'); cat.util.transfer_copies( { 
522                                                                         'copy_ids' : copy_ids, 
523                                                                         'message' : msg, 
524                                                                         'docid' : volume.record(),
525                                                                         'volume_label' : volume.label(),
526                                                                         'owning_lib' : volume.owning_lib(),
527                                                                 } );
528
529                                                                 obj.render_pending_copies(); // FIXME -- need a generic refresh for lists
530                                                                 setTimeout(
531                                                                         function() {
532                                                                                 JSAN.use('util.widgets'); 
533                                                                                 util.widgets.dispatch('change_bucket',obj.controller.view.bucket_menulist);
534                                                                         }, 0
535                                                                 );
536                                                                 
537                                                         } catch(E) {
538                                                                 obj.error.standard_unexpected_error_alert('Items not likely transferred.',E);
539                                                         }
540                                                 }
541                                         ],
542                                         'cmd_broken' : [
543                                                 ['command'],
544                                                 function() { alert('Not Yet Implemented'); }
545                                         ],
546                                         'cmd_copy_buckets_print' : [
547                                                 ['command'],
548                                                 function() {
549                                                         JSAN.use('OpenILS.data'); var data = new OpenILS.data(); data.init({'via':'stash'});
550                                                         obj.list2.on_all_fleshed = function() {
551                                                                 try {
552                                                                         dump( js2JSON( obj.list2.dump_with_keys() ) + '\n' );
553                                                                         data.stash_retrieve();
554                                                                         var lib = data.hash.aou[ data.list.au[0].ws_ou() ];
555                                                                         lib.children(null);
556                                                                         var p = { 
557                                                                                 'lib' : lib,
558                                                                                 'staff' : data.list.au[0],
559                                                                                 'header' : data.print_list_templates.item_status.header,
560                                                                                 'line_item' : data.print_list_templates.item_status.line_item,
561                                                                                 'footer' : data.print_list_templates.item_status.footer,
562                                                                                 'type' : data.print_list_templates.item_status.type,
563                                                                                 'list' : obj.list2.dump_with_keys(),
564                                                                         };
565                                                                         JSAN.use('util.print'); var print = new util.print();
566                                                                         print.tree_list( p );
567                                                                         setTimeout(function(){obj.list2.on_all_fleshed = null;},0);
568                                                                 } catch(E) {
569                                                                         alert(E); 
570                                                                 }
571                                                         }
572                                                         obj.list2.full_retrieve();
573                                                 }
574                                         ],
575                                         'cmd_copy_buckets_export' : [
576                                                 ['command'],
577                                                 function() {
578                                                         obj.list2.dump_csv_to_clipboard();
579                                                 }
580                                         ],
581                                         'cmd_export1' : [
582                                                 ['command'],
583                                                 function() {
584                                                         obj.list1.dump_csv_to_clipboard();
585                                                 }
586                                         ],
587
588                     'cmd_print_export1' : [
589                         ['command'],
590                         function() {
591                             try {
592                                 obj.list1.on_all_fleshed =
593                                     function() {
594                                         try {
595                                             dump( obj.list1.dump_csv() + '\n' );
596                                             //copy_to_clipboard(obj.list.dump_csv());
597                                             JSAN.use('util.print'); var print = new util.print();
598                                             print.simple(obj.list1.dump_csv(),{'content_type':'text/plain'});
599                                             setTimeout(function(){ obj.list1.on_all_fleshed = null; },0);
600                                         } catch(E) {
601                                             obj.error.standard_unexpected_error_alert('print export',E);
602                                         }
603                                     }
604                                 obj.list1.full_retrieve();
605                             } catch(E) {
606                                 obj.error.standard_unexpected_error_alert('print export',E);
607                             }
608                         }
609                     ],
610
611
612                     'cmd_print_export2' : [
613                         ['command'],
614                         function() {
615                             try {
616                                 obj.list2.on_all_fleshed =
617                                     function() {
618                                         try {
619                                             dump( obj.list2.dump_csv() + '\n' );
620                                             //copy_to_clipboard(obj.list.dump_csv());
621                                             JSAN.use('util.print'); var print = new util.print();
622                                             print.simple(obj.list2.dump_csv(),{'content_type':'text/plain'});
623                                             setTimeout(function(){ obj.list2.on_all_fleshed = null; },0);
624                                         } catch(E) {
625                                             obj.error.standard_unexpected_error_alert('print export',E);
626                                         }
627                                     }
628                                 obj.list2.full_retrieve();
629                             } catch(E) {
630                                 obj.error.standard_unexpected_error_alert('print export',E);
631                             }
632                         }
633                     ],
634
635                                         'cmd_copy_buckets_reprint' : [
636                                                 ['command'],
637                                                 function() {
638                                                 }
639                                         ],
640                                         'cmd_copy_buckets_done' : [
641                                                 ['command'],
642                                                 function() {
643                                                         window.close();
644                                                 }
645                                         ],
646                                         'cmd_export_to_copy_status' : [
647                                                 ['command'],
648                                                 function() {
649                                                         try {
650                                                                 obj.list2.select_all();
651                                                                 JSAN.use('util.functional');
652                                                                 var barcodes = util.functional.map_list(
653                                                                         obj.list2.dump_retrieve_ids(),
654                                                                         function(o) { return JSON2js(o)[1]; }
655                                                                 );
656                                                                 var url = urls.XUL_COPY_STATUS; // + '?barcodes=' + window.escape( js2JSON(barcodes) );
657                                                                 //JSAN.use('OpenILS.data'); var data = new OpenILS.data(); data.stash_retrieve();
658                                                                 //data.temp_barcodes_for_copy_status = barcodes;
659                                                                 //data.stash('temp_barcodes_for_copy_status');
660                                                                 xulG.new_tab( url, {}, { 'barcodes' : barcodes });
661                                                         } catch(E) {
662                                                                 obj.error.standard_unexpected_error_alert('Copy Status from Copy Buckets',E);
663                                                         }
664                                                 }
665                                         ],
666                                 }
667                         }
668                 );
669                 this.controller.render();
670
671                 if (typeof xulG == 'undefined') {
672                         obj.controller.view.cmd_export_to_copy_status.disabled = true;
673                         obj.controller.view.cmd_export_to_copy_status.setAttribute('disabled',true);
674                 } else {
675                         obj.controller.view.cmd_copy_buckets_done.disabled = true;
676                         obj.controller.view.cmd_copy_buckets_done.setAttribute('disabled',true);
677                 }
678         
679         },
680
681         'flesh_item_for_list' : function(acp_id,bucket_item_id) {
682                 var obj = this;
683                 try {
684                         var copy = obj.network.simple_request( 'FM_ACP_RETRIEVE', [ acp_id ]);
685                         if (copy == null || typeof copy.ilsevent != 'undefined') {
686                                 throw(copy);
687                         } else {
688                                 var item = {
689                                         'retrieve_id' : js2JSON( [ copy.id(), copy.barcode(), bucket_item_id ] ),
690                                         'row' : {
691                                                 'my' : {
692                                                         'mvr' : obj.network.simple_request('MODS_SLIM_RECORD_RETRIEVE_VIA_COPY', [ copy.id() ]),
693                                                         'acp' : copy,
694                                                 }
695                                         }
696                                 };
697                                 return item;
698                         }
699                 } catch(E) {
700                         obj.error.standard_unexpected_error_alert('List building failed.',E);
701                         return null;
702                 }
703
704         },
705         
706 }
707
708 dump('exiting cat.copy_buckets.js\n');