]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_browser.js
use smaller URI for fancy prompt
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_browser.js
1 dump('entering cat.copy_browser.js\n');
2
3 if (typeof cat == 'undefined') cat = {};
4 cat.copy_browser = function (params) {
5         try {
6                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
7                 JSAN.use('util.error'); this.error = new util.error();
8         } catch(E) {
9                 dump('cat.copy_browser: ' + E + '\n');
10         }
11 }
12
13 cat.copy_browser.prototype = {
14
15         'map_tree' : {},
16         'map_acn' : {},
17         'map_acp' : {},
18         'sel_list' : [],
19
20         'init' : function( params ) {
21
22                 try {
23                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
24                         var obj = this;
25
26                         obj.docid = params.docid;
27
28                         JSAN.use('util.network'); obj.network = new util.network();
29                         JSAN.use('OpenILS.data'); obj.data = new OpenILS.data(); obj.data.init({'via':'stash'});
30                         JSAN.use('util.controller'); obj.controller = new util.controller();
31                         obj.controller.init(
32                                 {
33                                         control_map : {
34                                                 'save_columns' : [ [ 'command' ], function() { obj.list.save_columns(); } ],
35                                                 'sel_clip' : [
36                                                         ['command'],
37                                                         function() { obj.list.clipboard(); }
38                                                 ],
39                                                 'cmd_broken' : [
40                                                         ['command'],
41                                                         function() { alert('Not Yet Implemented'); }
42                                                 ],
43                                                 'cmd_show_my_libs' : [
44                                                         ['command'],
45                                                         function() { 
46                                                                 obj.show_my_libs(); 
47                                                         }
48                                                 ],
49                                                 'cmd_show_all_libs' : [
50                                                         ['command'],
51                                                         function() {
52                                                                 obj.show_all_libs();
53                                                         }
54                                                 ],
55                                                 'cmd_show_libs_with_copies' : [
56                                                         ['command'],
57                                                         function() {
58                                                                 obj.show_libs_with_copies();
59                                                         }
60                                                 ],
61                                                 'cmd_clear' : [
62                                                         ['command'],
63                                                         function() {
64                                                                 obj.map_tree = {};
65                                                                 obj.list.clear();
66                                                         }
67                                                 ],
68                                                 'sel_mark_items_damaged' : [
69                                                         ['command'],
70                                                         function() {
71                                                                 JSAN.use('cat.util'); JSAN.use('util.functional');
72
73                                                                 var list = util.functional.filter_list( obj.sel_list, function (o) { return o.split(/_/)[0] == 'acp'; });
74
75                                                                 list = util.functional.map_list( list, function (o) { return o.split(/_/)[1]; });
76
77                                                                 cat.util.mark_item_damaged( list );
78
79                                                                 obj.refresh_list();
80                                                         }
81                                                 ],
82                                                 'sel_mark_items_missing' : [
83                                                         ['command'],
84                                                         function() {
85                                                                 JSAN.use('cat.util'); JSAN.use('util.functional');
86
87                                                                 var list = util.functional.filter_list( obj.sel_list, function (o) { return o.split(/_/)[0] == 'acp'; });
88
89                                                                 list = util.functional.map_list( list, function (o) { return o.split(/_/)[1]; });
90
91                                                                 cat.util.mark_item_missing( list );
92
93                                                                 obj.refresh_list();
94                                                         }
95                                                 ],
96                                                 'sel_patron' : [
97                                                         ['command'],
98                                                         function() {
99                                                                 JSAN.use('util.functional');
100
101                                                                 var list = util.functional.filter_list(
102                                                                         obj.sel_list,
103                                                                         function (o) {
104                                                                                 return o.split(/_/)[0] == 'acp';
105                                                                         }
106                                                                 );
107
108                                                                 list = util.functional.map_list(
109                                                                         list,
110                                                                         function (o) {
111                                                                                 return { 'copy_id' : o.split(/_/)[1] };
112                                                                         }
113                                                                 );
114                                                                 
115                                                                 JSAN.use('circ.util');
116                                                                 circ.util.show_last_few_circs(list);
117                                                         }
118                                                 ],
119                                                 'sel_copy_details' : [
120                                                         ['command'],
121                                                         function() {
122                                                                 JSAN.use('util.functional');
123
124                                                                 var list = util.functional.filter_list(
125                                                                         obj.sel_list,
126                                                                         function (o) {
127                                                                                 return o.split(/_/)[0] == 'acp';
128                                                                         }
129                                                                 );
130
131                                                                 list = util.functional.map_list(
132                                                                         list,
133                                                                         function (o) {
134                                                                                 return o.split(/_/)[1];
135                                                                         }
136                                                                 );
137         
138                                                                 JSAN.use('circ.util');
139                                                                 for (var i = 0; i < list.length; i++) {
140                                                                         circ.util.show_copy_details( list[i] );
141                                                                 }
142                                                         }
143                                                 ],
144                                                 'cmd_add_items' : [
145                                                         ['command'],
146                                                         function() {
147                                                                 try {
148                                                                         JSAN.use('util.functional');
149                                                                         var list = util.functional.map_list(
150                                                                                 util.functional.filter_list(
151                                                                                         obj.sel_list,
152                                                                                         function (o) {
153                                                                                                 return o.split(/_/)[0] == 'acn';
154                                                                                         }
155                                                                                 ),
156                                                                                 function (o) {
157                                                                                         return o.split(/_/)[1];
158                                                                                 }
159                                                                         );
160                                                                         if (list.length == 0) return;
161
162                                                                         var copy_shortcut = {};
163                                                                         list = util.functional.map_list(
164                                                                                 list,
165                                                                                 function (o) {
166                                                                                         var ou_id = obj.map_acn['acn_' + o].owning_lib();
167                                                                                         var volume_id = o;
168                                                                                         var label = obj.map_acn['acn_' + o].label();
169                                                                                         if (!copy_shortcut[ou_id]) copy_shortcut[ou_id] = {};
170                                                                                         copy_shortcut[ou_id][ label ] = volume_id;
171
172                                                                                         return ou_id;
173                                                                                 }
174                                                                         );
175                                                                         /* quick fix */  /* what was this fixing? */
176                                                                         list = []; for (var i in copy_shortcut) { list.push( i ); }
177
178                                                                         var edit = 0;
179                                                                         try {
180                                                                                 edit = obj.network.request(
181                                                                                         api.PERM_MULTI_ORG_CHECK.app,
182                                                                                         api.PERM_MULTI_ORG_CHECK.method,
183                                                                                         [ 
184                                                                                                 ses(), 
185                                                                                                 obj.data.list.au[0].id(), 
186                                                                                                 list,
187                                                                                                 [ 'CREATE_COPY' ]
188                                                                                         ]
189                                                                                 ).length == 0 ? 1 : 0;
190                                                                         } catch(E) {
191                                                                                 obj.error.sdump('D_ERROR','batch permission check: ' + E);
192                                                                         }
193
194                                                                         if (edit==0) return; // no read-only view for this interface
195
196                                                                         var title = 'Add Item';
197
198                                                                         JSAN.use('util.window'); var win = new util.window();
199                                                                         var w = win.open(
200                                                                                 window.xulG.url_prefix(urls.XUL_VOLUME_COPY_CREATOR)
201                                                                                         +'?doc_id=' + window.escape(obj.docid)
202                                                                                         +'&ou_ids=' + window.escape( js2JSON(list) )
203                                                                                         +'&copy_shortcut=' + window.escape( js2JSON(copy_shortcut) ),
204                                                                                 title,
205                                                                                 'chrome,resizable'
206                                                                         );
207                                                                         w.refresh = function() { obj.refresh_list(); }
208                                                                 } catch(E) {
209                                                                         obj.error.standard_unexpected_error_alert('copy browser -> add copies',E);
210                                                                 }
211                                                         }
212                                                 ],
213                                                 'cmd_add_items_to_buckets' : [
214                                                         ['command'],
215                                                         function() {
216                                                                 try {
217                                                                         JSAN.use('util.functional');
218
219                                                                         var list = util.functional.filter_list(
220                                                                                 obj.sel_list,
221                                                                                 function (o) {
222                                                                                         return o.split(/_/)[0] == 'acp';
223                                                                                 }
224                                                                         );
225
226                                                                         list = util.functional.map_list(
227                                                                                 list,
228                                                                                 function (o) {
229                                                                                         return o.split(/_/)[1];
230                                                                                 }
231                                                                         );
232                                                                 
233                                                                         JSAN.use('cat.util');
234                                                                         cat.util.add_copies_to_bucket( list );
235
236                                                                 } catch(E) {
237                                                                         obj.error.standard_unexpected_error_alert('copy browser -> add copies to bucket',E);
238                                                                 }
239                                                         }
240                                                 ],
241                                                 'cmd_replace_barcode' : [
242                                                         ['command'],
243                                                         function() {
244                                                                 try {
245                                                                         JSAN.use('util.functional');
246
247                                                                         var list = util.functional.filter_list(
248                                                                                 obj.sel_list,
249                                                                                 function (o) {
250                                                                                         return o.split(/_/)[0] == 'acp';
251                                                                                 }
252                                                                         );
253
254                                                                         list = util.functional.map_list(
255                                                                                 list,
256                                                                                 function (o) {
257                                                                                         return obj.map_acp[ o ].barcode();
258                                                                                 }
259                                                                         );
260
261                                                                         JSAN.use('cat.util');
262                                                                         for (var i = 0; i < list.length; i++) {
263                                                                                 try {
264                                                                                         cat.util.replace_barcode(list[i]);
265                                                                                 } catch(E) {
266                                                                                         obj.error.standard_unexpected_error_alert('Barcode ' +list[i] + ' not likely replaced.',E);
267                                                                                 }
268                                                                         }
269                                                                         obj.refresh_list();
270
271                                                                 } catch(E) {
272                                                                         obj.error.standard_unexpected_error_alert('copy browser -> replace barcode',E);
273                                                                         obj.refresh_list();
274                                                                 }
275                                                         }
276                                                 ],
277                                                 'cmd_edit_items' : [
278                                                         ['command'],
279                                                         function() {
280                                                                 try {
281                                                                         JSAN.use('util.functional');
282
283                                                                         var list = util.functional.filter_list(
284                                                                                 obj.sel_list,
285                                                                                 function (o) {
286                                                                                         return o.split(/_/)[0] == 'acp';
287                                                                                 }
288                                                                         );
289
290                                                                         list = util.functional.map_list(
291                                                                                 list,
292                                                                                 function (o) {
293                                                                                         return o.split(/_/)[1];
294                                                                                 }
295                                                                         );
296
297                                                                         var edit = 0;
298                                                                         try {
299                                                                                 edit = obj.network.request(
300                                                                                         api.PERM_MULTI_ORG_CHECK.app,
301                                                                                         api.PERM_MULTI_ORG_CHECK.method,
302                                                                                         [ 
303                                                                                                 ses(), 
304                                                                                                 obj.data.list.au[0].id(), 
305                                                                                                 util.functional.map_list(
306                                                                                                         list,
307                                                                                                         function (o) {
308                                                                                                                 var o_acp = obj.map_acp[ 'acp_' + o ];
309                                                                                                                 if (o_acp.call_number() == -1) {
310                                                                                                                         return o_acp.circ_lib();
311                                                                                                                 } else {
312                                                                                                                         return obj.map_acn[ 'acn_' + o_acp.call_number() ].owning_lib();
313                                                                                                                 }
314                                                                                                         }
315                                                                                                 ),
316                                                                                                 list.length == 1 ? [ 'UPDATE_COPY' ] : [ 'UPDATE_COPY', 'UPDATE_BATCH_COPY' ]
317                                                                                         ]
318                                                                                 ).length == 0 ? 1 : 0;
319                                                                         } catch(E) {
320                                                                                 obj.error.sdump('D_ERROR','batch permission check: ' + E);
321                                                                         }
322
323                                                                         JSAN.use('cat.util'); cat.util.spawn_copy_editor(list,edit);
324                                                                         obj.refresh_list();
325
326                                                                 } catch(E) {
327                                                                         obj.error.standard_unexpected_error_alert('Copy Browser -> Edit Items',E);
328                                                                 }
329                                                         }
330                                                 ],
331                                                 'cmd_delete_items' : [
332                                                         ['command'],
333                                                         function() {
334                                                                 try {
335                                                                         JSAN.use('util.functional');
336
337                                                                         var list = util.functional.filter_list(
338                                                                                 obj.sel_list,
339                                                                                 function (o) {
340                                                                                         return o.split(/_/)[0] == 'acp';
341                                                                                 }
342                                                                         );
343
344                                                                         list = util.functional.map_list(
345                                                                                 list,
346                                                                                 function (o) {
347                                                                                         return JSON2js( js2JSON( obj.map_acp[ 'acp_' + o.split(/_/)[1] ] ) );
348                                                                                 }
349                                                                         );
350
351                                                                         var r = obj.error.yns_alert('Are you sure you would like to delete ' + (list.length != 1 ? 'these ' + list.length + ' items' : 'this one item') + '?', 'Delete Items?', 'Delete', 'Cancel', null, 'Check here to confirm this action');
352
353                                                                         if (r == 0) {
354                                                                                 var acn_hash = {}; var acn_list = [];
355                                                                                 for (var i = 0; i < list.length; i++) {
356                                                                                         list[i].isdeleted('1');
357                                                                                         var acn_id = list[i].call_number();
358                                                                                         if ( ! acn_hash[ acn_id ] ) {
359                                                                                                 acn_hash[ acn_id ] = obj.map_acn[ 'acn_' + acn_id ];
360                                                                                                 acn_hash[ acn_id ].copies( [] );
361                                                                                         }
362                                                                                         var temp = acn_hash[ acn_id ].copies();
363                                                                                         temp.push( list[i] );
364                                                                                         acn_hash[ acn_id ].copies( temp );
365                                                                                 }
366                                                                                 for (var i in acn_hash) acn_list.push( acn_hash[i] );
367                                                                                 var robj = obj.network.simple_request(
368                                                                                         'FM_ACN_TREE_UPDATE', 
369                                                                                         [ ses(), acn_list, true ],
370                                                                                         null,
371                                                                                         {
372                                                                                                 'title' : 'Override Delete Failure?',
373                                                                                                 'overridable_events' : [
374                                                                                                         1208 /* TITLE_LAST_COPY */
375                                                                                                 ]
376                                                                                         }
377                                                                                 );
378                                                                                 if (robj == null) throw(robj);
379                                                                                 if (typeof robj.ilsevent != 'undefined') {
380                                                                                         if ( (robj.ilsevent != 0) && (robj.ilsevent != 1208 /* TITLE_LAST_COPY */) ) throw(robj);
381                                                                                 }
382                                                                                 alert('Action complete.');
383                                                                                 obj.refresh_list();
384                                                                         }
385
386                                                                         
387                                                                 } catch(E) {
388                                                                         obj.error.standard_unexpected_error_alert('copy browser -> delete items',E);
389                                                                         obj.refresh_list();
390                                                                 }
391                                                         }
392                                                 ],
393                                                 'cmd_print_spine_labels' : [
394                                                         ['command'],
395                                                         function() {
396                                                                 try {
397                                                                         JSAN.use('util.functional');
398                                                                         
399                                                                         var list = util.functional.filter_list(
400                                                                                 obj.sel_list,
401                                                                                 function (o) {
402                                                                                         return o.split(/_/)[0] == 'acp';
403                                                                                 }
404                                                                         );
405
406                                                                         list = util.functional.map_list(
407                                                                                 list,
408                                                                                 function (o) {
409                                                                                         return obj.map_acp[ o ];
410                                                                                 }
411                                                                         );
412
413                                                                         obj.data.temp_barcodes_for_labels = util.functional.map_list( list, function(o){return o.barcode();}) ; 
414                                                                         obj.data.stash('temp_barcodes_for_labels');
415                                                                         xulG.new_tab(
416                                                                                 xulG.url_prefix( urls.XUL_SPINE_LABEL ),
417                                                                                 { 'tab_name' : 'Spine Labels' },
418                                                                                 {}
419                                                                         );
420                                                                 } catch(E) {
421                                                                         obj.error.standard_unexpected_error_alert('copy browser -> Spine Labels',E);
422                                                                 }
423                                                         }
424                                                 ],
425                                                 'cmd_add_volumes' : [
426                                                         ['command'],
427                                                         function() {
428                                                                 try {
429                                                                         JSAN.use('util.functional');
430                                                                         var list = util.functional.filter_list(
431                                                                                 obj.sel_list,
432                                                                                 function (o) {
433                                                                                         return o.split(/_/)[0] == 'aou';
434                                                                                 }
435                                                                         );
436                                                                         list = util.functional.map_list(
437                                                                                 list,
438                                                                                 function (o) {
439                                                                                         return o.split(/_/)[1];
440                                                                                 }
441                                                                         );              
442                                                                         var edit = 0;
443                                                                         try {
444                                                                                 edit = obj.network.request(
445                                                                                         api.PERM_MULTI_ORG_CHECK.app,
446                                                                                         api.PERM_MULTI_ORG_CHECK.method,
447                                                                                         [ 
448                                                                                                 ses(), 
449                                                                                                 obj.data.list.au[0].id(), 
450                                                                                                 list,
451                                                                                                 [ 'CREATE_VOLUME', 'CREATE_COPY' ]
452                                                                                         ]
453                                                                                 ).length == 0 ? 1 : 0;
454                                                                         } catch(E) {
455                                                                                 obj.error.sdump('D_ERROR','batch permission check: ' + E);
456                                                                         }
457
458                                                                         if (edit==0) {
459                                                                                 alert("You don't have permission to add volumes to that library.");
460                                                                                 return; // no read-only view for this interface
461                                                                         }
462
463                                                                         var title = 'Add Volume/Item';
464
465                                                                         JSAN.use('util.window'); var win = new util.window();
466                                                                         var w = win.open(
467                                                                                 window.xulG.url_prefix(urls.XUL_VOLUME_COPY_CREATOR)
468                                                                                         +'?doc_id=' + window.escape(obj.docid)
469                                                                                         +'&ou_ids=' + window.escape( js2JSON(list) ),
470                                                                                 title,
471                                                                                 'chrome,resizable'
472                                                                         );
473
474                                                                         w.refresh = function() { obj.refresh_list() };
475                                                                 } catch(E) {
476                                                                         obj.error.standard_unexpected_error_alert('copy browser -> add volumes',E);
477                                                                 }
478                                                         }
479                                                 ],
480                                                 'cmd_edit_volumes' : [
481                                                         ['command'],
482                                                         function() {
483                                                                 try {
484                                                                         JSAN.use('util.functional');
485                                                                         var list = util.functional.map_list(
486                                                                                 util.functional.filter_list(
487                                                                                         obj.sel_list,
488                                                                                         function (o) {
489                                                                                                 return o.split(/_/)[0] == 'acn';
490                                                                                         }
491                                                                                 ),
492                                                                                 function (o) {
493                                                                                         return o.split(/_/)[1];
494                                                                                 }
495                                                                         );
496                                                                         if (list.length == 0) return;
497
498                                                                         var edit = 0;
499                                                                         try {
500                                                                                 edit = obj.network.request(
501                                                                                         api.PERM_MULTI_ORG_CHECK.app,
502                                                                                         api.PERM_MULTI_ORG_CHECK.method,
503                                                                                         [ 
504                                                                                                 ses(), 
505                                                                                                 obj.data.list.au[0].id(), 
506                                                                                                 util.functional.map_list(
507                                                                                                         list,
508                                                                                                         function (o) {
509                                                                                                                 return obj.map_acn[ 'acn_' + o ].owning_lib();
510                                                                                                         }
511                                                                                                 ),
512                                                                                                 [ 'UPDATE_VOLUME' ]
513                                                                                         ]
514                                                                                 ).length == 0 ? 1 : 0;
515                                                                         } catch(E) {
516                                                                                 obj.error.sdump('D_ERROR','batch permission check: ' + E);
517                                                                         }
518
519                                                                         if (edit==0) {
520                                                                                 alert("You don't have permission to edit this volume.");
521                                                                                 return; // no read-only view for this interface
522                                                                         }
523
524                                                                         list = util.functional.map_list(
525                                                                                 list,
526                                                                                 function (o) {
527                                                                                         var my_acn = obj.map_acn['acn_' + o];
528                                                                                         return function(r){return r;}(my_acn);
529                                                                                 }
530                                                                         );
531
532                                                                         var title = list.length == 1 ? 'Volume' : 'Volumes';
533
534                                                                         JSAN.use('util.window'); var win = new util.window();
535                                                                         obj.data.volumes_temp = js2JSON( list );
536                                                                         obj.data.stash('volumes_temp');
537                                                                         var w = win.open(
538                                                                                 window.xulG.url_prefix(urls.XUL_VOLUME_EDITOR),
539                                                                                 title,
540                                                                                 'chrome,modal,resizable'
541                                                                         );
542
543                                                                         /* FIXME -- need to unique the temp space, and not rely on modalness of window */
544                                                                         obj.data.stash_retrieve();
545                                                                         var volumes = JSON2js( obj.data.volumes_temp );
546                                                                         obj.error.sdump('D_CAT','in browse, obj.data.temp =\n' + obj.data.temp);
547                                                                         if (volumes=='') return;
548                                                                 
549                                                                         volumes = util.functional.filter_list(
550                                                                                 volumes,
551                                                                                 function (o) {
552                                                                                         return o.ischanged() == '1';
553                                                                                 }
554                                                                         );
555
556                                                                         volumes = util.functional.map_list(
557                                                                                 volumes,
558                                                                                 function (o) {
559                                                                                         o.record( obj.docid ); // staff client 2 did not do this.  Does it matter?
560                                                                                         return o;
561                                                                                 }
562                                                                         );
563
564                                                                         if (volumes.length == 0) return;
565
566                                                                         try {
567                                                                                 var r = obj.network.request(
568                                                                                         api.FM_ACN_TREE_UPDATE.app,
569                                                                                         api.FM_ACN_TREE_UPDATE.method,
570                                                                                         [ ses(), volumes, true ]
571                                                                                 );
572                                                                                 if (typeof r.ilsevent != 'undefined') throw(r);
573                                                                                 alert('Volumes modified.');
574                                                                         } catch(E) {
575                                                                                 obj.error.standard_unexpected_error_alert('volume update error: ',E);
576                                                                         }
577                                                                         obj.refresh_list();
578
579                                                                 } catch(E) {
580                                                                         obj.error.standard_unexpected_error_alert('Copy Browser -> Volume Edit',E);
581                                                                 }
582                                                         }
583                                                 ],
584                                                 'cmd_delete_volumes' : [
585                                                         ['command'],
586                                                         function() {
587                                                                 try {
588                                                                         JSAN.use('util.functional');
589
590                                                                         var list = util.functional.filter_list(
591                                                                                 obj.sel_list,
592                                                                                 function (o) {
593                                                                                         return o.split(/_/)[0] == 'acn';
594                                                                                 }
595                                                                         );
596
597                                                                         list = util.functional.map_list(
598                                                                                 list,
599                                                                                 function (o) {
600                                                                                         return JSON2js( js2JSON( obj.map_acn[ 'acn_' + o.split(/_/)[1] ] ) );
601                                                                                 }
602                                                                         );
603
604                                                                         var r = obj.error.yns_alert('Are you sure you would like to delete ' + (list.length != 1 ? 'these ' + list.length + ' volumes' : 'this one volume') + '?', 'Delete Volumes?', 'Delete', 'Cancel', null, 'Check here to confirm this action');
605
606                                                                         if (r == 0) {
607                                                                                 for (var i = 0; i < list.length; i++) {
608                                                                                         list[i].isdeleted('1');
609                                                                                 }
610                                                                                 var robj = obj.network.simple_request(
611                                                                                         'FM_ACN_TREE_UPDATE', 
612                                                                                         [ ses(), list, true ],
613                                                                                         null,
614                                                                                         {
615                                                                                                 'title' : 'Override Delete Failure?',
616                                                                                                 'overridable_events' : [
617                                                                                                 ]
618                                                                                         }
619                                                                                 );
620                                                                                 if (robj == null) throw(robj);
621                                                                                 if (typeof robj.ilsevent != 'undefined') {
622                                                                                         if (robj.ilsevent == 1206 /* VOLUME_NOT_EMPTY */) {
623                                                                                                 alert('You must delete all the copies on the volume before you may delete the volume itself.');
624                                                                                                 return;
625                                                                                         }
626                                                                                         if (robj.ilsevent != 0) throw(robj);
627                                                                                 }
628                                                                                 alert('Volumes deleted.');
629                                                                                 obj.refresh_list();
630                                                                         }
631                                                                 } catch(E) {
632                                                                         obj.error.standard_unexpected_error_alert('copy browser -> delete volumes',E);
633                                                                         obj.refresh_list();
634                                                                 }
635
636                                                         }
637                                                 ],
638                                                 'cmd_mark_library' : [
639                                                         ['command'],
640                                                         function() {
641                                                                 try {
642                                                                         var list = util.functional.filter_list(
643                                                                                 obj.sel_list,
644                                                                                 function (o) {
645                                                                                         return o.split(/_/)[0] == 'aou';
646                                                                                 }
647                                                                         );
648
649                                                                         list = util.functional.map_list(
650                                                                                 list,
651                                                                                 function (o) {
652                                                                                         return o.split(/_/)[1];
653                                                                                 }
654                                                                         );
655
656                                                                         if (list.length == 1) {
657                                                                                 obj.data.marked_library = { 'lib' : list[0], 'docid' : obj.docid };
658                                                                                 obj.data.stash('marked_library');
659                                                                                 alert('Library + Record marked as Volume Transfer Destination');
660                                                                         } else {
661                                                                                 obj.error.yns_alert('Choose just one Library to mark as Volume Transfer Destination','Limit Selection','OK',null,null,'Check here to confirm this dialog');
662                                                                         }
663                                                                 } catch(E) {
664                                                                         obj.error.standard_unexpected_error_alert('copy browser -> mark library',E);
665                                                                 }
666                                                         }
667                                                 ],
668
669                                                 'cmd_mark_volume' : [
670                                                         ['command'],
671                                                         function() {
672                                                                 try {
673                                                                         var list = util.functional.filter_list(
674                                                                                 obj.sel_list,
675                                                                                 function (o) {
676                                                                                         return o.split(/_/)[0] == 'acn';
677                                                                                 }
678                                                                         );
679
680                                                                         list = util.functional.map_list(
681                                                                                 list,
682                                                                                 function (o) {
683                                                                                         return o.split(/_/)[1];
684                                                                                 }
685                                                                         );
686
687                                                                         if (list.length == 1) {
688                                                                                 obj.data.marked_volume = list[0];
689                                                                                 obj.data.stash('marked_volume');
690                                                                                 alert('Volume marked as Item Transfer Destination');
691                                                                         } else {
692                                                                                 obj.error.yns_alert('Choose just one Volume to mark as Item Transfer Destination','Limit Selection','OK',null,null,'Check here to confirm this dialog');
693                                                                         }
694                                                                 } catch(E) {
695                                                                         obj.error.standard_unexpected_error_alert('copy browser -> mark volume',E);
696                                                                 }
697                                                         }
698                                                 ],
699                                                 'cmd_refresh_list' : [
700                                                         ['command'],
701                                                         function() {
702                                                                 obj.refresh_list();
703                                                         }
704                                                 ],
705                                                 'cmd_transfer_volume' : [
706                                                         ['command'],
707                                                         function() {
708                                                                 try {
709                                                                         obj.data.stash_retrieve();
710                                                                         if (!obj.data.marked_library) {
711                                                                                 alert('Please mark a library as the destination from within holdings maintenance and then try this again.');
712                                                                                 return;
713                                                                         }
714                                                                         
715                                                                         JSAN.use('util.functional');
716
717                                                                         var list = util.functional.filter_list(
718                                                                                 obj.sel_list,
719                                                                                 function (o) {
720                                                                                         return o.split(/_/)[0] == 'acn';
721                                                                                 }
722                                                                         );
723
724                                                                         list = util.functional.map_list(
725                                                                                 list,
726                                                                                 function (o) {
727                                                                                         return o.split(/_/)[1];
728                                                                                 }
729                                                                         );
730
731                                                                         netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect UniversalBrowserWrite');
732                                                                         var xml = '<vbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" flex="1" style="overflow: auto">';
733                                                                         xml += '<description>Transfer volumes ';
734
735                                                                         xml += util.functional.map_list(
736                                                                                 list,
737                                                                                 function (o) {
738                                                                                         return obj.map_acn[ 'acn_' + o ].label();
739                                                                                 }
740                                                                         ).join(", ");
741
742                                                                         xml += ' to library ' + obj.data.hash.aou[ obj.data.marked_library.lib ].shortname();
743                                                                         xml += ' on the following record?</description>';
744                                                                         xml += '<hbox><button label="Transfer" name="fancy_submit"/>';
745                                                                         xml += '<button label="Cancel" accesskey="C" name="fancy_cancel"/></hbox>';
746                                                                         xml += '<iframe style="overflow: scroll" flex="1" src="' + urls.XUL_BIB_BRIEF + '?docid=' + obj.data.marked_library.docid + '"/>';
747                                                                         xml += '</vbox>';
748                                                                         JSAN.use('OpenILS.data');
749                                                                         var data = new OpenILS.data(); data.init({'via':'stash'});
750                                                                         data.temp_transfer = xml; data.stash('temp_transfer');
751                                                                         window.open(
752                                                                                 urls.XUL_FANCY_PROMPT
753                                                                                 + '?xml_in_stash=temp_transfer'
754                                                                                 + '&title=' + window.escape('Volume Transfer'),
755                                                                                 'fancy_prompt', 'chrome,resizable,modal,width=500,height=300'
756                                                                         );
757                                                                         data.init({'via':'stash'});
758
759                                                                         if (data.fancy_prompt_data == '') { alert('Transfer Aborted'); return; }
760
761                                                                         var robj = obj.network.simple_request(
762                                                                                 'FM_ACN_TRANSFER', 
763                                                                                 [ ses(), { 'docid' : obj.data.marked_library.docid, 'lib' : obj.data.marked_library.lib, 'volumes' : list } ],
764                                                                                 null,
765                                                                                 {
766                                                                                         'title' : 'Override Volume Transfer Failure?',
767                                                                                         'overridable_events' : [
768                                                                                                 1208 /* TITLE_LAST_COPY */,
769                                                                                                 1219 /* COPY_REMOTE_CIRC_LIB */,
770                                                                                         ],
771                                                                                 }
772                                                                         );
773
774                                                                         if (typeof robj.ilsevent != 'undefined') {
775                                                                                 if (robj.ilsevent == 1221 /* ORG_CANNOT_HAVE_VOLS */) {
776                                                                                         alert('That destination cannot have volumes.');
777                                                                                 } else {
778                                                                                         throw(robj);
779                                                                                 }
780                                                                         } else {
781                                                                                 alert('Volumes transferred.');
782                                                                         }
783
784                                                                 } catch(E) {
785                                                                         obj.error.standard_unexpected_error_alert('All volumes not likely transferred.',E);
786                                                                 }
787                                                                 obj.refresh_list();
788                                                         }
789                                                 ],
790
791                                                 'cmd_transfer_items' : [
792                                                         ['command'],
793                                                         function() {
794                                                                 try {
795                                                                         obj.data.stash_retrieve();
796                                                                         if (!obj.data.marked_volume) {
797                                                                                 alert('Please mark a volume as the destination from within holdings maintenance and then try this again.');
798                                                                                 return;
799                                                                         }
800                                                                         
801                                                                         JSAN.use('util.functional');
802
803                                                                         var list = util.functional.filter_list(
804                                                                                 obj.sel_list,
805                                                                                 function (o) {
806                                                                                         return o.split(/_/)[0] == 'acp';
807                                                                                 }
808                                                                         );
809
810                                                                         list = util.functional.map_list(
811                                                                                 list,
812                                                                                 function (o) {
813                                                                                         return o.split(/_/)[1];
814                                                                                 }
815                                                                         );
816
817                                                                         var volume = obj.network.simple_request('FM_ACN_RETRIEVE',[ obj.data.marked_volume ]);
818
819                                                                         JSAN.use('cat.util'); cat.util.transfer_copies( { 
820                                                                                 'copy_ids' : list, 
821                                                                                 'docid' : volume.record(),
822                                                                                 'volume_label' : volume.label(),
823                                                                                 'owning_lib' : volume.owning_lib(),
824                                                                         } );
825
826                                                                 } catch(E) {
827                                                                         obj.error.standard_unexpected_error_alert('All copies not likely transferred.',E);
828                                                                 }
829                                                                 obj.refresh_list();
830                                                         }
831                                                 ],
832                                         }
833                                 }
834                         );
835
836                         obj.list_init(params);
837
838                         obj.org_ids = obj.network.simple_request('FM_AOU_IDS_RETRIEVE_VIA_RECORD_ID',[ obj.docid ]);
839                         if (typeof obj.org_ids.ilsevent != 'undefined') throw(obj.org_ids);
840
841                         var org = obj.data.hash.aou[ obj.data.list.au[0].ws_ou() ];
842                         //obj.show_libs( org );
843
844                         //obj.show_my_libs();
845
846                         JSAN.use('util.file'); JSAN.use('util.widgets');
847
848                         var file; var list_data; var ml; 
849
850                         file = new util.file('offline_ou_list'); 
851                         if (file._file.exists()) {
852                                 list_data = file.get_object(); file.close();
853                                 ml = util.widgets.make_menulist( list_data[0], list_data[1] );
854                                 ml.setAttribute('id','lib_menu'); document.getElementById('x_lib_menu').appendChild(ml);
855                                 for (var i = 0; i < obj.org_ids.length; i++) {
856                                         ml.getElementsByAttribute('value',obj.org_ids[i])[0].setAttribute('class','has_copies');
857                                 }
858                                 ml.firstChild.addEventListener(
859                                         'popupshown',
860                                         function(ev) {
861                                                 document.getElementById('legend').setAttribute('hidden','false');
862                                         },
863                                         false
864                                 );
865                                 ml.firstChild.addEventListener(
866                                         'popuphidden',
867                                         function(ev) {
868                                                 document.getElementById('legend').setAttribute('hidden','true');
869                                         },
870                                         false
871                                 );
872                                 ml.addEventListener(
873                                         'command',
874                                         function(ev) {
875                                                 //obj.show_my_libs(ev.target.value);
876                                                 JSAN.use('util.file'); var file = new util.file('copy_browser_prefs');
877                                                 util.widgets.save_attributes(file, { 'lib_menu' : [ 'value' ], 'show_acns' : [ 'checked' ], 'show_acps' : [ 'checked' ] });
878                                                 obj.refresh_list();
879                                         },
880                                         false
881                                 );
882                         } else {
883                                 throw('Missing library list.\n');
884                         }
885
886                         JSAN.use('util.widgets'); 
887                 
888                         file = new util.file('copy_browser_prefs');
889                         util.widgets.load_attributes(file);
890                         ml.value = ml.getAttribute('value');
891
892                         document.getElementById('show_acns').addEventListener(
893                                 'command',
894                                 function(ev) {
895                                         JSAN.use('util.file'); var file = new util.file('copy_browser_prefs');
896                                         util.widgets.save_attributes(file, { 'lib_menu' : [ 'value' ], 'show_acns' : [ 'checked' ], 'show_acps' : [ 'checked' ] });
897                                 },
898                                 false
899                         );
900
901                         document.getElementById('show_acps').addEventListener(
902                                 'command',
903                                 function(ev) {
904                                         JSAN.use('util.file'); var file = new util.file('copy_browser_prefs');
905                                         util.widgets.save_attributes(file, { 'lib_menu' : [ 'value' ], 'show_acns' : [ 'checked' ], 'show_acps' : [ 'checked' ] });
906                                 },
907                                 false
908                         );
909
910                         obj.show_my_libs( ml.value );
911
912                 } catch(E) {
913                         this.error.standard_unexpected_error_alert('cat.copy_browser.init: ',E);
914                 }
915         },
916
917         'show_my_libs' : function(org) {
918                 var obj = this;
919                 try {
920                         if (!org) {
921                                 org = obj.data.hash.aou[ obj.data.list.au[0].ws_ou() ];
922                         } else {
923                                 if (typeof org != 'object') org = obj.data.hash.aou[ org ];
924                         }
925                         obj.show_libs( org, true );
926                 
927                         var p_org = obj.data.hash.aou[ org.parent_ou() ];
928                         if (p_org) {
929                                 JSAN.use('util.exec'); var exec = new util.exec();
930                                 var funcs = [];
931                                 funcs.push( function() { 
932                                         document.getElementById('cmd_refresh_list').setAttribute('disabled','true'); 
933                                         document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','true'); 
934                                         document.getElementById('lib_menu').setAttribute('disabled','true'); 
935                                 } );
936                                 for (var i = 0; i < p_org.children().length; i++) {
937                                         funcs.push(
938                                                 function(o) {
939                                                         return function() {
940                                                                 obj.show_libs( o, true );
941                                                         }
942                                                 }( p_org.children()[i] )
943                                         );
944                                 }
945                                 funcs.push( function() { 
946                                         document.getElementById('cmd_refresh_list').setAttribute('disabled','false'); 
947                                         document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','false'); 
948                                         document.getElementById('lib_menu').setAttribute('disabled','false'); 
949                                 } );
950                                 exec.chain( funcs );
951                         }
952                 } catch(E) {
953                         alert(E);
954                 }
955         },
956
957         'show_all_libs' : function() {
958                 var obj = this;
959                 try {
960                         obj.show_my_libs();
961
962                         obj.show_libs( obj.data.tree.aou );
963
964                         JSAN.use('util.exec'); var exec = new util.exec();
965                         var funcs = [];
966                         funcs.push( function() { 
967                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','true'); 
968                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','true'); 
969                                 document.getElementById('lib_menu').setAttribute('disabled','true'); 
970                         } );
971
972                         for (var i = 0; i < obj.data.tree.aou.children().length; i++) {
973                                 funcs.push(
974                                         function(o) {
975                                                 return function() {
976                                                         obj.show_libs( o );
977                                                 }
978                                         }( obj.data.tree.aou.children()[i] )
979                                 );
980                         }
981                         funcs.push( function() { 
982                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','false'); 
983                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','false'); 
984                                 document.getElementById('lib_menu').setAttribute('disabled','false'); 
985                         } );
986
987                         exec.chain( funcs );
988                 } catch(E) {
989                         alert(E);
990                 }
991         },
992
993         'show_libs_with_copies' : function() {
994                 var obj = this;
995                 try {
996                         JSAN.use('util.exec'); var exec = new util.exec();
997                         JSAN.use('util.functional');
998
999                         var orgs = util.functional.map_list(
1000                                 obj.org_ids,
1001                                 function(id) { return obj.data.hash.aou[id]; }
1002                         ).sort(
1003                                 function( a, b ) {
1004                                         if (a.shortname() < b.shortname()) return -1;
1005                                         if (a.shortname() > b.shortname()) return 1;
1006                                         return 0;
1007                                 }
1008                         );
1009                         var funcs = [];
1010                         funcs.push( function() { 
1011                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','true'); 
1012                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','true'); 
1013                                 document.getElementById('lib_menu').setAttribute('disabled','true'); 
1014                         } );
1015
1016                         for (var i = 0; i < orgs.length; i++) {
1017                                 funcs.push(
1018                                         function(o) {
1019                                                 return function() {
1020                                                         obj.show_libs(o,true);
1021                                                 }
1022                                         }( orgs[i] )
1023                                 );
1024                         }
1025                         funcs.push( function() { 
1026                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','false'); 
1027                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','false'); 
1028                                 document.getElementById('lib_menu').setAttribute('disabled','false'); 
1029                         } );
1030
1031                         exec.chain( funcs );
1032                 } catch(E) {
1033                         alert(E);
1034                 }
1035         },
1036
1037         'show_libs' : function(start_aou,show_open) {
1038                 var obj = this;
1039                 try {
1040                         if (!start_aou) throw('show_libs: Need a start_aou');
1041                         JSAN.use('OpenILS.data'); obj.data = new OpenILS.data(); obj.data.init({'via':'stash'});
1042                         JSAN.use('util.functional'); JSAN.use('util.exec'); var exec = new util.exec();
1043
1044                         var funcs = [];
1045
1046                         var parents = [];
1047                         var temp_aou = start_aou;
1048                         while ( temp_aou.parent_ou() ) {
1049                                 temp_aou = obj.data.hash.aou[ temp_aou.parent_ou() ];
1050                                 parents.push( temp_aou );
1051                         }
1052                         parents.reverse();
1053
1054                         for (var i = 0; i < parents.length; i++) {
1055                                 funcs.push(
1056                                         function(o,p) {
1057                                                 return function() { 
1058                                                         if (show_open) {
1059                                                                 obj.append_org(o,p,{'container':'true','open':'true'}); 
1060                                                         } else {
1061                                                                 obj.append_org(o,p,{'container':'true'}); 
1062                                                         }
1063                                                 };
1064                                         }(parents[i], obj.data.hash.aou[ parents[i].parent_ou() ])
1065                                 );
1066                         }
1067
1068                         funcs.push(
1069                                 function(o,p) {
1070                                         return function() { obj.append_org(o,p); };
1071                                 }(start_aou,obj.data.hash.aou[ start_aou.parent_ou() ])
1072                         );
1073
1074                         funcs.push(
1075                                 function() {
1076                                         if (start_aou.children()) {
1077                                                 var x = obj.map_tree[ 'aou_' + start_aou.id() ];
1078                                                 x.setAttribute('container','true');
1079                                                 if (show_open) x.setAttribute('open','true');
1080                                                 for (var i = 0; i < start_aou.children().length; i++) {
1081                                                         funcs.push(
1082                                                                 function(o,p) {
1083                                                                         return function() { obj.append_org(o,p); };
1084                                                                 }( start_aou.children()[i], start_aou )
1085                                                         );
1086                                                 }
1087                                         }
1088                                 }
1089                         );
1090
1091                         exec.chain( funcs );
1092
1093                 } catch(E) {
1094                         alert(E);
1095                 }
1096         },
1097
1098         'on_select' : function(list,twisty) {
1099                 var obj = this;
1100                 for (var i = 0; i < list.length; i++) {
1101                         var node = obj.map_tree[ list[i] ];
1102                         //if (node.lastChild.nodeName == 'treechildren') { continue; } else { alert(node.lastChild.nodeName); }
1103                         var row_type = list[i].split('_')[0];
1104                         var id = list[i].split('_')[1];
1105                         switch(row_type) {
1106                                 case 'aou' : obj.on_select_org(id,twisty); break;
1107                                 case 'acn' : obj.on_select_acn(id,twisty); break;
1108                                 default: break;
1109                         }
1110                 }
1111         },
1112
1113         'on_select_acn' : function(acn_id,twisty) {
1114                 var obj = this;
1115                 try {
1116                         var acn_tree = obj.map_acp[ 'acn_' + acn_id ];
1117                         var funcs = [];
1118                         funcs.push( function() { 
1119                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','true'); 
1120                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','true'); 
1121                                 document.getElementById('lib_menu').setAttribute('disabled','true'); 
1122                         } );
1123                         if (acn_tree.copies()) {
1124                                 for (var i = 0; i < acn_tree.copies().length; i++) {
1125                                         funcs.push(
1126                                                 function(c,a) {
1127                                                         return function() {
1128                                                                 obj.append_acp(c,a);
1129                                                         }
1130                                                 }( acn_tree.copies()[i], acn_tree )
1131                                         )
1132                                 }
1133                         }
1134                         funcs.push( function() { 
1135                                 document.getElementById('cmd_refresh_list').setAttribute('disabled','false'); 
1136                                 document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','false'); 
1137                                 document.getElementById('lib_menu').setAttribute('disabled','false'); 
1138                         } );
1139                         JSAN.use('util.exec'); var exec = new util.exec();
1140                         exec.chain( funcs );
1141                 } catch(E) {
1142                         alert(E);
1143                 }
1144         },
1145
1146         'on_select_org' : function(org_id,twisty) {
1147                 var obj = this;
1148                 var org = obj.data.hash.aou[ org_id ];
1149                 if (obj.data.hash.aout[ org.ou_type() ].depth() == 0) return; 
1150                 /* otherwise, we'd show every system in the consortia */
1151                 var funcs = [];
1152                 funcs.push( function() { 
1153                         document.getElementById('cmd_refresh_list').setAttribute('disabled','true'); 
1154                         document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','true'); 
1155                         document.getElementById('lib_menu').setAttribute('disabled','true'); 
1156                 } );
1157                 if (org.children()) {
1158                         for (var i = 0; i < org.children().length; i++) {
1159                                 funcs.push(
1160                                         function(o,p) {
1161                                                 return function() {
1162                                                         obj.append_org(o,p)
1163                                                 }
1164                                         }(org.children()[i],org)
1165                                 );
1166                         }
1167                 } 
1168                 if (obj.map_acn[ 'aou_' + org_id ]) {
1169                         for (var i = 0; i < obj.map_acn[ 'aou_' + org_id ].length; i++) {
1170                                 funcs.push(
1171                                         function(o,a) {
1172                                                 return function() {
1173                                                         obj.append_acn(o,a);
1174                                                 }
1175                                         }( org, obj.map_acn[ 'aou_' + org_id ][i] )
1176                                 );
1177                         }
1178                 }
1179                 funcs.push( function() { 
1180                         document.getElementById('cmd_refresh_list').setAttribute('disabled','false'); 
1181                         document.getElementById('cmd_show_libs_with_copies').setAttribute('disabled','false'); 
1182                         document.getElementById('lib_menu').setAttribute('disabled','false'); 
1183                 } );
1184                 JSAN.use('util.exec'); var exec = new util.exec();
1185                 exec.chain( funcs );
1186         },
1187
1188         'append_org' : function (org,parent_org,params) {
1189                 var obj = this;
1190                 try {
1191                         if (obj.map_tree[ 'aou_' + org.id() ]) {
1192                                 var x = obj.map_tree[ 'aou_' + org.id() ];
1193                                 if (params) {
1194                                         for (var i in params) {
1195                                                 x.setAttribute(i,params[i]);
1196                                         }
1197                                 }
1198                                 return x;
1199                         }
1200
1201                         var data = {
1202                                 'row' : {
1203                                         'my' : {
1204                                                 'aou' : org,
1205                                         }
1206                                 },
1207                                 'skip_all_columns_except' : [0,1,2],
1208                                 'retrieve_id' : 'aou_' + org.id(),
1209                         };
1210                 
1211                         var acn_tree_list;
1212                         if ( obj.org_ids.indexOf( org.id() ) == -1 ) {
1213                                 if ( get_bool( obj.data.hash.aout[ org.ou_type() ].can_have_vols() ) ) {
1214                                         data.row.my.volume_count = '0';
1215                                         data.row.my.copy_count = '<0>';
1216                                 } else {
1217                                         data.row.my.volume_count = '';
1218                                         data.row.my.copy_count = '';
1219                                 }
1220                         } else {
1221                                 var v_count = 0; var c_count = 0;
1222                                 acn_tree_list = obj.network.simple_request(
1223                                         'FM_ACN_TREE_LIST_RETRIEVE_VIA_RECORD_ID_AND_ORG_IDS',
1224                                         [ ses(), obj.docid, [ org.id() ] ]
1225                                 );
1226                                 for (var i = 0; i < acn_tree_list.length; i++) {
1227                                         v_count++;
1228                                         obj.map_acn[ 'acn_' + acn_tree_list[i].id() ] = function(r){return r;}(acn_tree_list[i]);
1229                                         var copies = acn_tree_list[i].copies(); if (copies) c_count += copies.length;
1230                                         for (var j = 0; j < copies.length; j++) {
1231                                                 obj.map_acp[ 'acp_' + copies[j].id() ] = function(r){return r;}(copies[j]);
1232                                         }
1233                                 }
1234                                 data.row.my.volume_count = v_count;
1235                                 data.row.my.copy_count = '<' + c_count + '>';
1236                         }
1237                         if (parent_org) {
1238                                 data.node = obj.map_tree[ 'aou_' + parent_org.id() ];
1239                         }
1240                         var node = obj.list.append(data);
1241                         if (params) {
1242                                 for (var i in params) {
1243                                         node.setAttribute(i,params[i]);
1244                                 }
1245                         }
1246                         obj.map_tree[ 'aou_' + org.id() ] = node;
1247
1248                         if (org.children()) {
1249                                 node.setAttribute('container','true');
1250                         }
1251
1252                         if (parent_org) {
1253                                 if ( obj.data.hash.aou[ obj.data.list.au[0].ws_ou() ].parent_ou() == parent_org.id() ) {
1254                                         data.node.setAttribute('open','true');
1255                                 }
1256                         } else {
1257                                 obj.map_tree[ 'aou_' + org.id() ].setAttribute('open','true');
1258                         }
1259
1260                         if (acn_tree_list) {
1261                                 obj.map_acn[ 'aou_' + org.id() ] = acn_tree_list;
1262                                 node.setAttribute('container','true');
1263                         }
1264
1265                         if (document.getElementById('show_acns').checked) {
1266                                 if ( obj.data.hash.aout[ org.ou_type() ].depth() != 0 ) {
1267                                         node.setAttribute('open','true');
1268                                         setTimeout( function() { obj.on_select_org( org.id() ); }, 0 );
1269                                 }
1270                         }
1271
1272                 } catch(E) {
1273                         dump(E+'\n');
1274                         alert(E);
1275                 }
1276         },
1277
1278         'append_acn' : function( org, acn_tree, params ) {
1279                 var obj = this;
1280                 try {
1281                         if (obj.map_tree[ 'acn_' + acn_tree.id() ]) {
1282                                 var x = obj.map_tree[ 'acn_' + acn_tree.id() ];
1283                                 if (params) {
1284                                         for (var i in params) {
1285                                                 x.setAttribute(i,params[i]);
1286                                         }
1287                                 }
1288                                 return x;
1289                         }
1290
1291                         var parent_node = obj.map_tree[ 'aou_' + org.id() ];
1292                         var data = {
1293                                 'row' : {
1294                                         'my' : {
1295                                                 'aou' : org,
1296                                                 'acn' : acn_tree,
1297                                                 'volume_count' : '',
1298                                                 'copy_count' : acn_tree.copies() ? acn_tree.copies().length : '0',
1299                                         }
1300                                 },
1301                                 'skip_all_columns_except' : [0,1,2],
1302                                 'retrieve_id' : 'acn_' + acn_tree.id(),
1303                                 'node' : parent_node,
1304                         };
1305                         var node = obj.list.append(data);
1306                         obj.map_tree[ 'acn_' + acn_tree.id() ] =  node;
1307                         if (params) {
1308                                 for (var i in params) {
1309                                         node.setAttribute(i,params[i]);
1310                                 }
1311                         }
1312                         if (acn_tree.copies()) {
1313                                 obj.map_acp[ 'acn_' + acn_tree.id() ] = acn_tree;
1314                                 node.setAttribute('container','true');
1315                         }
1316                         if (document.getElementById('show_acps').checked) {
1317                                 node.setAttribute('open','true');
1318                                 setTimeout( function() { obj.on_select_acn( acn_tree.id() ); }, 0 );
1319                         }
1320
1321                 } catch(E) {
1322                         dump(E+'\n');
1323                         alert(E);
1324                 }
1325         },
1326
1327         'append_acp' : function( acp_item, acn_tree, params ) {
1328                 var obj = this;
1329                 try {
1330                         if (obj.map_tree[ 'acp_' + acp_item.id() ]) {
1331                                 var x = obj.map_tree[ 'acp_' + acp_item.id() ];
1332                                 if (params) {
1333                                         for (var i in params) {
1334                                                 x.setAttribute(i,params[i]);
1335                                         }
1336                                 }
1337                                 return x;
1338                         }
1339
1340                         var parent_node = obj.map_tree[ 'acn_' + acn_tree.id() ];
1341                         var data = {
1342                                 'row' : {
1343                                         'my' : {
1344                                                 'aou' : obj.data.hash.aou[ acn_tree.owning_lib() ],
1345                                                 'acn' : acn_tree,
1346                                                 'acp' : acp_item,
1347                                                 'volume_count' : '',
1348                                                 'copy_count' : '',
1349                                         }
1350                                 },
1351                                 'retrieve_id' : 'acp_' + acp_item.id(),
1352                                 'node' : parent_node,
1353                         };
1354                         var node = obj.list.append(data);
1355                         obj.map_tree[ 'acp_' + acp_item.id() ] =  node;
1356                         if (params) {
1357                                 for (var i in params) {
1358                                         node.setAttribute(i,params[i]);
1359                                 }
1360                         }
1361
1362                 } catch(E) {
1363                         dump(E+'\n');
1364                         alert(E);
1365                 }
1366         },
1367
1368         'list_init' : function( params ) {
1369
1370                 try {
1371                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
1372                         var obj = this;
1373                         
1374                         JSAN.use('circ.util');
1375                         var columns = [
1376                                 {
1377                                         'id' : 'tree_location', 'label' : 'Location/Barcode', 'flex' : 1,
1378                                         'primary' : true, 'hidden' : false, 
1379                                         'render' : function(my) { return my.acp ? my.acp.barcode() : my.acn ? my.acn.label() : my.aou ? my.aou.shortname() + " : " + my.aou.name() : "???"; },
1380                                 },
1381                                 {
1382                                         'id' : 'volume_count', 'label' : 'Volumes', 'flex' : 0,
1383                                         'primary' : false, 'hidden' : false, 
1384                                         'render' : function(my) { return my.volume_count; },
1385                                 },
1386                                 {
1387                                         'id' : 'copy_count', 'label' : 'Copies', 'flex' : 0,
1388                                         'primary' : false, 'hidden' : false, 
1389                                         'render' : function(my) { return my.copy_count; },
1390                                 },
1391                         ].concat(
1392                                 circ.util.columns( 
1393                                         { 
1394                                                 'location' : { 'hidden' : false },
1395                                                 'circ_lib' : { 'hidden' : false },
1396                                                 'owning_lib' : { 'hidden' : false },
1397                                                 'call_number' : { 'hidden' : false },
1398                                                 'due_date' : { 'hidden' : false },
1399                                                 'status' : { 'hidden' : false },
1400                                         },
1401                                         {
1402                                                 'just_these' : [
1403                                                         'due_date',
1404                                                         'owning_lib',
1405                                                         'circ_lib',
1406                                                         'call_number',
1407                                                         'copy_number',
1408                                                         'location',
1409                                                         'barcode',
1410                                                         'loan_duration',
1411                                                         'fine_level',
1412                                                         'circulate',
1413                                                         'holdable',
1414                                                         'opac_visible',
1415                                                         'ref',
1416                                                         'deposit',
1417                                                         'deposit_amount',
1418                                                         'price',
1419                                                         'circ_as_type',
1420                                                         'circ_modifier',
1421                                                         'status',
1422                                                         'alert_message',
1423                                                         'acp_id',
1424                                                 ]
1425                                         }
1426                                 )
1427                         );
1428                         JSAN.use('util.list'); obj.list = new util.list('copy_tree');
1429                         obj.list.init(
1430                                 {
1431                                         'columns' : columns,
1432                                         'map_row_to_columns' : circ.util.std_map_row_to_columns(' '),
1433                                         'retrieve_row' : function(params) {
1434
1435                                                 var row = params.row;
1436
1437                                                 var funcs = [];
1438                                         /*      
1439                                                 if (!row.my.mvr) funcs.push(
1440                                                         function() {
1441
1442                                                                 row.my.mvr = obj.network.request(
1443                                                                         api.MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.app,
1444                                                                         api.MODS_SLIM_RECORD_RETRIEVE_VIA_COPY.method,
1445                                                                         [ row.my.circ.target_copy() ]
1446                                                                 );
1447
1448                                                         }
1449                                                 );
1450                                                 if (!row.my.acp) {
1451                                                         funcs.push(     
1452                                                                 function() {
1453
1454                                                                         row.my.acp = obj.network.request(
1455                                                                                 api.FM_ACP_RETRIEVE.app,
1456                                                                                 api.FM_ACP_RETRIEVE.method,
1457                                                                                 [ row.my.circ.target_copy() ]
1458                                                                         );
1459
1460                                                                         params.row_node.setAttribute( 'retrieve_id',row.my.acp.barcode() );
1461
1462                                                                 }
1463                                                         );
1464                                                 } else {
1465                                                         params.row_node.setAttribute( 'retrieve_id',row.my.acp.barcode() );
1466                                                 }
1467                                         */
1468                                                 funcs.push(
1469                                                         function() {
1470
1471                                                                 if (typeof params.on_retrieve == 'function') {
1472                                                                         params.on_retrieve(row);
1473                                                                 }
1474
1475                                                         }
1476                                                 );
1477
1478                                                 JSAN.use('util.exec'); var exec = new util.exec();
1479                                                 exec.on_error = function(E) {
1480                                                         var err = 'items chain: ' + js2JSON(E);
1481                                                         obj.error.sdump('D_ERROR',err);
1482                                                         return true; /* keep going */
1483                                                 }
1484                                                 exec.chain( funcs );
1485
1486                                                 return row;
1487                                         },
1488                                         'on_click' : function(ev) {
1489                                                 netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect UniversalBrowserRead');
1490                                                 var row = {}; var col = {}; var nobj = {};
1491                                                 obj.list.node.treeBoxObject.getCellAt(ev.clientX,ev.clientY,row,col,nobj);
1492                                                 if ((row.value == -1)||(nobj.value != 'twisty')) { return; }
1493                                                 var node = obj.list.node.contentView.getItemAtIndex(row.value);
1494                                                 var list = [ node.getAttribute('retrieve_id') ];
1495                                                 if (typeof obj.on_select == 'function') {
1496                                                         obj.on_select(list,true);
1497                                                 }
1498                                                 if (typeof window.xulG == 'object' && typeof window.xulG.on_select == 'function') {
1499                                                         window.xulG.on_select(list);
1500                                                 }
1501                                         },
1502                                         'on_select' : function(ev) {
1503                                                 JSAN.use('util.functional');
1504                                                 var sel = obj.list.retrieve_selection();
1505                                                 obj.controller.view.sel_clip.disabled = sel.length < 1;
1506                                                 obj.sel_list = util.functional.map_list(
1507                                                         sel,
1508                                                         function(o) { return o.getAttribute('retrieve_id'); }
1509                                                 );
1510                                                 obj.toggle_actions();
1511                                                 if (typeof obj.on_select == 'function') {
1512                                                         obj.on_select(obj.sel_list);
1513                                                 }
1514                                                 if (typeof window.xulG == 'object' && typeof window.xulG.on_select == 'function') {
1515                                                         window.xulG.on_select(obj.sel_list);
1516                                                 }
1517                                         },
1518                                 }
1519                         );
1520
1521                         obj.controller.render();
1522
1523                 } catch(E) {
1524                         this.error.sdump('D_ERROR','cat.copy_browser.list_init: ' + E + '\n');
1525                         alert(E);
1526                 }
1527         },
1528
1529         'toggle_actions' : function() {
1530                 var obj = this;
1531                 try {
1532                         var found_aou = false; var found_acn = false; var found_acp = false;
1533                         var found_aou_with_can_have_vols = false;
1534                         for (var i = 0; i < obj.sel_list.length; i++) {
1535                                 var type = obj.sel_list[i].split(/_/)[0];
1536                                 switch(type) {
1537                                         case 'aou' : 
1538                                                 found_aou = true; 
1539                                                 var org = obj.data.hash.aou[ obj.sel_list[i].split(/_/)[1] ];
1540                                                 if ( get_bool( obj.data.hash.aout[ org.ou_type() ].can_have_vols() ) ) found_aou_with_can_have_vols = true;
1541                                         break;
1542                                         case 'acn' : found_acn = true; break;
1543                                         case 'acp' : found_acp = true; break;
1544                                 }
1545                         }
1546                         obj.controller.view.cmd_add_items.setAttribute('disabled','true');
1547                         obj.controller.view.cmd_add_items_to_buckets.setAttribute('disabled','true');
1548                         obj.controller.view.cmd_edit_items.setAttribute('disabled','true');
1549                         obj.controller.view.cmd_replace_barcode.setAttribute('disabled','true');
1550                         obj.controller.view.cmd_delete_items.setAttribute('disabled','true');
1551                         obj.controller.view.cmd_print_spine_labels.setAttribute('disabled','true');
1552                         obj.controller.view.cmd_add_volumes.setAttribute('disabled','true');
1553                         obj.controller.view.cmd_mark_library.setAttribute('disabled','true');
1554                         obj.controller.view.cmd_edit_volumes.setAttribute('disabled','true');
1555                         obj.controller.view.cmd_delete_volumes.setAttribute('disabled','true');
1556                         obj.controller.view.cmd_mark_volume.setAttribute('disabled','true');
1557                         obj.controller.view.cmd_transfer_volume.setAttribute('disabled','true');
1558                         obj.controller.view.cmd_transfer_items.setAttribute('disabled','true');
1559                         obj.controller.view.sel_copy_details.setAttribute('disabled','true');
1560                         obj.controller.view.sel_patron.setAttribute('disabled','true');
1561                         obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','true');
1562                         obj.controller.view.sel_mark_items_missing.setAttribute('disabled','true');
1563                         if (found_aou && found_aou_with_can_have_vols) {
1564                                 obj.controller.view.cmd_add_volumes.setAttribute('disabled','false');
1565                                 obj.controller.view.cmd_mark_library.setAttribute('disabled','false');
1566                         }
1567                         if (found_acn) {
1568                                 obj.controller.view.cmd_edit_volumes.setAttribute('disabled','false');
1569                                 obj.controller.view.cmd_delete_volumes.setAttribute('disabled','false');
1570                                 obj.controller.view.cmd_mark_volume.setAttribute('disabled','false');
1571                                 obj.controller.view.cmd_add_items.setAttribute('disabled','false');
1572                                 obj.controller.view.cmd_transfer_volume.setAttribute('disabled','false');
1573                         }
1574                         if (found_acp) {
1575                                 obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','false');
1576                                 obj.controller.view.sel_mark_items_missing.setAttribute('disabled','false');
1577                                 obj.controller.view.cmd_add_items_to_buckets.setAttribute('disabled','false');
1578                                 obj.controller.view.cmd_edit_items.setAttribute('disabled','false');
1579                                 obj.controller.view.cmd_replace_barcode.setAttribute('disabled','false');
1580                                 obj.controller.view.cmd_delete_items.setAttribute('disabled','false');
1581                                 obj.controller.view.cmd_print_spine_labels.setAttribute('disabled','false');
1582                                 obj.controller.view.cmd_transfer_items.setAttribute('disabled','false');
1583                                 obj.controller.view.sel_copy_details.setAttribute('disabled','false');
1584                                 obj.controller.view.sel_patron.setAttribute('disabled','false');
1585                         }
1586                 } catch(E) {
1587                         obj.error.standard_unexpected_error_alert('Copy Browser Actions',E);
1588                 }
1589         },
1590
1591         'refresh_list' : function() { 
1592                 try {
1593                         var obj = this;
1594                         obj.list.clear();
1595                         obj.map_tree = {};
1596                         obj.map_acn = {};
1597                         obj.map_acp = {};
1598                         obj.org_ids = obj.network.simple_request('FM_AOU_IDS_RETRIEVE_VIA_RECORD_ID',[ obj.docid ]);
1599                         /*
1600                         var org = obj.data.hash.aou[ obj.data.list.au[0].ws_ou() ];
1601                         obj.show_libs( org );
1602                         */
1603                         obj.show_my_libs( document.getElementById('lib_menu').value );
1604                 } catch(E) {
1605                         this.error.standard_unexpected_error_alert('Problem refreshing the volume/copy tree.',E);
1606                 }
1607         },
1608 }
1609
1610 dump('exiting cat.copy_browser.js\n');