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