]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_editor.js
prevent a flesh user request (for creator and editor) when there is none
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_editor.js
1 var g = {};
2
3 function my_init() {
4         try {
5                 /******************************************************************************************************/
6                 /* setup JSAN and some initial libraries */
7
8                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
9                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
10                 JSAN.errorLevel = "die"; // none, warn, or die
11                 JSAN.addRepository('/xul/server/');
12                 JSAN.use('util.error'); g.error = new util.error();
13                 g.error.sdump('D_TRACE','my_init() for cat/copy_editor.xul');
14
15                 JSAN.use('util.functional');
16                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
17                 JSAN.use('util.network'); g.network = new util.network();
18
19                 g.cgi = new CGI();
20
21                 g.session = g.cgi.param('session') || g.cgi.param('ses');
22                 g.docid = g.cgi.param('docid');
23                 g.handle_update = g.cgi.param('handle_update');
24
25                 /******************************************************************************************************/
26                 /* Get the copy ids from various sources and flesh them */
27
28                 var copy_ids = [];
29                 if (g.cgi.param('copy_ids')) copy_ids = JSON2js( g.cgi.param('copy_ids') );
30                 if (!copy_ids) copy_ids = [];
31                 if (window.xulG && window.xulG.copy_ids) copy_ids = copy_ids.concat( window.xulG.copy_ids );
32
33                 if (copy_ids.length > 0) g.copies = g.network.request(
34                         api.FM_ACP_FLESHED_BATCH_RETRIEVE.app,
35                         api.FM_ACP_FLESHED_BATCH_RETRIEVE.method,
36                         [ copy_ids ]
37                 );
38
39                 /******************************************************************************************************/
40                 /* And other fleshed copies if any */
41
42                 if (!g.copies) g.copies = [];
43                 if (window.xulG && window.xulG.copies) g.copies = g.copies.concat( window.xulG.copies );
44                 if (g.cgi.param('copies')) g.copies = g.copies.concat( JSON2js( g.cgi.param('copies') ) );
45
46                 /******************************************************************************************************/
47                 /* We try to retrieve callnumbers for existing copies, but for new copies, we rely on this */
48
49                 if (window.xulG && window.xulG.callnumbers) g.callnumbers = window.xulG.callnumbers;
50                 if (g.cgi.param('callnumbers')) g.callnumbers =  JSON2js( g.cgi.param('callnumbers') );
51
52                 /******************************************************************************************************/
53                 /* Is the interface an editor or a viewer? */
54
55                 if (g.cgi.param('edit') == '1') { 
56                         g.edit = true;
57                         document.getElementById('caption').setAttribute('label','Copy Editor'); 
58                         document.getElementById('nav').setAttribute('hidden','false'); 
59                 }
60
61                 if (g.cgi.param('single_edit') == '1') {
62                         g.single_edit = true;
63                         document.getElementById('caption').setAttribute('label','Copy Editor'); 
64                         document.getElementById('nav').setAttribute('hidden','false'); 
65                 }
66
67                 /******************************************************************************************************/
68                 /* Show the Record Details? */
69
70                 if (g.docid) {
71                         document.getElementById('brief_display').setAttribute(
72                                 'src',
73                                 urls.XUL_BIB_BRIEF + '?docid=' + g.docid
74                         );
75                 } else {
76                         document.getElementById('brief_display').setAttribute('hidden','true');
77                 }
78
79                 /******************************************************************************************************/
80                 /* Add stat cats to the right_pane_field_names */
81
82                 var stat_cat_seen = {};
83
84                 function add_stat_cat(sc) {
85
86                         if (typeof g.data.hash.asc == 'undefined') { g.data.hash.asc = {}; g.data.stash('hash'); }
87
88                         var sc_id = sc;
89
90                         if (typeof sc == 'object') {
91
92                                 sc_id = sc.id();
93                         }
94
95                         if (typeof stat_cat_seen[sc_id] != 'undefined') { return; }
96
97                         stat_cat_seen[ sc_id ] = 1;
98
99                         if (typeof sc != 'object') {
100
101                                 sc = g.network.simple_request(
102                                         'FM_ASC_BATCH_RETRIEVE',
103                                         [ g.session, [ sc_id ] ]
104                                 )[0];
105
106                         }
107
108                         g.data.hash.asc[ sc.id() ] = sc; g.data.stash('hash');
109
110                         var label_name = g.data.hash.aou[ sc.owner() ].shortname() + " : " + sc.name();
111
112                         var temp_array = [
113                                 label_name,
114                                 {
115                                         render: 'var l = util.functional.find_list( fm.stat_cat_entries(), function(e){ return e.stat_cat() == ' 
116                                                 + sc.id() + '; } ); l ? l.value() : null;',
117                                         input: 'x = util.widgets.make_menulist( util.functional.map_list( g.data.hash.asc[' + sc.id() 
118                                                 + '].entries(), function(obj){ return [ obj.value(), obj.id() ]; } ).sort() ); '
119                                                 + 'x.addEventListener("command",function(ev) { g.apply_stat_cat(' + sc.id()
120                                                 + ', ev.target.value); } ,false);',
121                                 }
122                         ];
123
124                         dump('temp_array = ' + js2JSON(temp_array) + '\n');
125
126                         g.right_pane_field_names.push( temp_array );
127                 }
128
129                 /* The stat cats for the pertinent library */
130                 for (var i = 0; i < g.data.list.my_asc.length; i++) {
131                         add_stat_cat( g.data.list.my_asc[i] );  
132                 }
133
134                 /* Other stat cats present on these copies */
135                 for (var i = 0; i < g.copies.length; i++) {
136                         var entries = g.copies[i].stat_cat_entries();
137                         if (!entries) entries = [];
138                         for (var j = 0; j < entries.length; j++) {
139                                 var sc_id = entries[j].stat_cat();
140                                 add_stat_cat( sc_id );
141                         }
142                 }
143
144                 /******************************************************************************************************/
145                 /* Do it */
146
147                 g.summarize( g.copies );
148                 g.render();
149
150         } catch(E) {
151                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
152                         "system administrator or software developer the following:\ncat/copy_editor.xul\n" + E + '\n';
153                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); dump(js2JSON(E)); }
154                 alert(err_msg);
155         }
156 }
157
158 /******************************************************************************************************/
159 /* Apply a value to a specific field on all the copies being edited */
160
161 g.apply = function(field,value) {
162         g.error.sdump('D_TRACE','field = ' + field + '  value = ' + value + '\n');
163         for (var i = 0; i < g.copies.length; i++) {
164                 var copy = g.copies[i];
165                 try {
166                         copy[field]( value ); copy.ischanged('1');
167                 } catch(E) {
168                         alert(E);
169                 }
170         }
171 }
172
173 /******************************************************************************************************/
174 /* Apply a stat cat entry to all the copies being edited */
175
176 g.apply_stat_cat = function(sc_id,entry_id) {
177         g.error.sdump('D_TRACE','sc_id = ' + sc_id + '  entry_id = ' + entry_id + '\n');
178         for (var i = 0; i < g.copies.length; i++) {
179                 var copy = g.copies[i];
180                 try {
181                         copy.ischanged('1');
182                         var temp = copy.stat_cat_entries();
183                         if (!temp) temp = [];
184                         temp = util.functional.filter_list(
185                                 temp,
186                                 function (obj) {
187                                         return (obj.stat_cat() != sc_id);
188                                 }
189                         );
190                         temp.push( 
191                                 util.functional.find_id_object_in_list( 
192                                         g.data.hash.asc[sc_id].entries(), 
193                                         entry_id
194                                 )
195                         );
196                         copy.stat_cat_entries( temp );
197
198                 } catch(E) {
199                         alert(E);
200                 }
201         }
202 }
203
204
205 /******************************************************************************************************/
206 /* These need data from the middle layer to render */
207
208 g.special_exception = {
209         'Call Number' : function(label,value) {
210                 if (value>0) { /* an existing call number */
211                         g.network.request(
212                                 api.FM_ACN_RETRIEVE.app,
213                                 api.FM_ACN_RETRIEVE.method,
214                                 [ value ],
215                                 function(req) {
216                                         var cn = '??? id = ' + value;
217                                         try {
218                                                 cn = req.getResultObject().label();
219                                         } catch(E) {
220                                                 g.error.sdump('D_ERROR','callnumber retrieve: ' + E);
221                                         }
222                                         label.setAttribute('value',cn);
223                                 }
224                         );
225                 } else { /* a yet to be created call number */
226                         if (g.callnumbers) {
227                                 label.setAttribute('value',g.callnumbers[value]);
228                         }
229                 }
230         },
231         'Creator' : function(label,value) {
232                 if (value == null || value == '' || value == 'null') return;
233                 g.network.request(
234                         api.FM_AU_RETRIEVE_VIA_ID.app,
235                         api.FM_AU_RETRIEVE_VIA_ID.method,
236                         [ g.session, value ],
237                         function(req) {
238                                 var p = '??? id = ' + value;
239                                 try {
240                                         p = req.getResultObject();
241                                         p = p.card().barcode() + ' : ' + p.family_name();
242
243                                 } catch(E) {
244                                         g.error.sdump('D_ERROR','patron retrieve: ' + E);
245                                 }
246                                 label.setAttribute('value',p);
247                         }
248                 );
249         },
250         'Last Editor' : function(label,value) {
251                 if (value == null || value == '' || value == 'null') return;
252                 g.network.request(
253                         api.FM_AU_RETRIEVE_VIA_ID.app,
254                         api.FM_AU_RETRIEVE_VIA_ID.method,
255                         [ g.session, value ],
256                         function(req) {
257                                 var p = '??? id = ' + value;
258                                 try {
259                                         p = req.getResultObject();
260                                         p = p.card().barcode() + ' : ' + p.family_name();
261
262                                 } catch(E) {
263                                         g.error.sdump('D_ERROR','patron retrieve: ' + E);
264                                 }
265                                 label.setAttribute('value',p);
266                         }
267                 );
268         }
269
270 }
271
272 /******************************************************************************************************/
273 g.readonly_stat_cat_names = [];
274 g.editable_stat_cat_names = [];
275
276 /******************************************************************************************************/
277 /* These get show in the left panel */
278
279 g.left_pane_field_names = [
280         [
281                 "Barcode",               
282                 {
283                         render: 'fm.barcode();',
284                 }
285         ], 
286         [
287                 "Call Number",  
288                 {
289                         render: 'fm.call_number();',
290                 }
291         ],
292         [
293                 "Creation Date",
294                 { 
295                         render: 'util.date.formatted_date( fm.create_date(), "%F");',
296                 }
297         ],
298         [
299                 "Last Edit Date",
300                 { 
301                         render: 'util.date.formatted_date( fm.edit_date(), "%F");',
302                 }
303         ],
304
305 ];
306
307 /******************************************************************************************************/
308 /* These get shown in the right panel */
309
310 g.right_pane_field_names = [
311         [
312                 "Creator",
313                 { 
314                         render: 'fm.creator();',
315                 }
316         ],
317         [
318                 "Last Editor",
319                 {
320                         render: 'fm.editor();',
321                 }
322         ],
323          [
324                 "Circulate as Type",    
325                 {       
326                         render: 'fm.circ_as_type();',
327                         input: 'x = document.createElement("textbox"); x.addEventListener("change",function(ev) { g.apply("circ_as_type",ev.target.value); }, false);',
328                 } 
329         ],
330         [
331                 "Circulation Library",          
332                 {       
333                         render: 'fm.circ_lib().shortname();',
334                         input: 'x = util.widgets.make_menulist( util.functional.map_list( util.functional.filter_list(g.data.list.my_aou, function(obj) { return g.data.hash.aout[ obj.ou_type() ].can_have_vols(); }), function(obj) { return [ obj.shortname(), obj.id() ]; }).sort() ); x.addEventListener("command",function(ev) { g.apply("circ_lib",ev.target.value); }, false);',
335                 } 
336         ],
337         [
338                 "Circulation Modifier",
339                 {       
340                         render: 'fm.circ_modifier();',
341                         input: 'x = document.createElement("textbox"); x.addEventListener("change",function(ev) { g.apply("circ_modifier",ev.target.value); }, false);',
342                 }
343         ],
344         [
345                 "Circulate?",
346                 {       
347                         render: 'fm.circulate() ? "Yes" : "No";',
348                         input: 'x = util.widgets.make_menulist( [ [ "Yes", "1" ], [ "No", "0" ] ] ); x.addEventListener("command",function(ev) { g.apply("circulate",ev.target.value); }, false);',
349                 }
350         ],
351         [
352                 "Copy Number",
353                 { 
354                         render: 'fm.copy_number();',
355                         input: 'x = document.createElement("textbox"); x.addEventListener("change",function(ev) { g.apply("copy_number",ev.target.value); }, false);',
356                 }
357         ],
358         [
359                 "Deposit?",
360                 { 
361                         render: 'fm.deposit() ? "Yes" : "No";',
362                         input: 'x = util.widgets.make_menulist( [ [ "Yes", "1" ], [ "No", "0" ] ] ); x.addEventListener("command",function(ev) { g.apply("deposit",ev.target.value); }, false);',
363                 }
364         ],
365         [
366                 "Deposit Amount",
367                 { 
368                         render: 'util.money.sanitize( fm.deposit_amount() );',
369                         input: 'x = document.createElement("textbox"); x.addEventListener("change",function(ev) { g.apply("deposit_amount",ev.target.value); }, false);',
370                 }
371         ],
372         [
373                 "Fine Level",
374                 {
375                         render: 'switch(fm.fine_level()){ case 1: "Low"; break; case 2: "Normal"; break; case 3: "High"; break; }',
376                         input: 'x = util.widgets.make_menulist( [ [ "Low", "1" ], [ "Normal", "2" ], [ "High", "3" ] ] ); x.addEventListener("command",function(ev) { g.apply("fine_level",ev.target.value); }, false);',
377                 }
378         ],
379         [
380                 "Holdable?",
381                 { 
382                         render: 'fm.holdable() ? "Yes" : "No";', 
383                         input: 'x = util.widgets.make_menulist( [ [ "Yes", "1" ], [ "No", "0" ] ] ); x.addEventListener("command",function(ev) { g.apply("holdable",ev.target.value); }, false);',
384                 }
385         ],
386         [
387                 "Loan Duration",
388                 { 
389                         render: 'switch(fm.loan_duration()){ case 1: "Short"; break; case 2: "Normal"; break; case 3: "Long"; break; }',
390                         input: 'x = util.widgets.make_menulist( [ [ "Short", "1" ], [ "Normal", "2" ], [ "Long", "3" ] ] ); x.addEventListener("command",function(ev) { g.apply("loan_duration",ev.target.value); }, false);',
391
392                 }
393         ],
394         [
395                 "Shelving Location",
396                 { 
397                         render: 'fm.location().name();', 
398                         input: 'x = util.widgets.make_menulist( util.functional.map_list( g.data.list.acpl, function(obj) { return [ obj.name(), obj.id() ]; }).sort()); x.addEventListener("command",function(ev) { g.apply("location",ev.target.value); }, false);',
399
400                 }
401         ],
402         [
403                 "OPAC Visible?",
404                 { 
405                         render: 'fm.opac_visible() ? "Yes" : "No";', 
406                         input: 'x = util.widgets.make_menulist( [ [ "Yes", "1" ], [ "No", "0" ] ] ); x.addEventListener("command",function(ev) { g.apply("opac_visible",ev.target.value); }, false);',
407                 }
408         ],
409         [
410                 "Price",
411                 { 
412                         render: 'util.money.sanitize( fm.price() );', 
413                         input: 'x = document.createElement("textbox"); x.addEventListener("change",function(ev) { g.apply("deposit_amount",ev.target.value); }, false);',
414                 }
415         ],
416         [
417                 "Reference?",
418                 { 
419                         render: 'fm.ref() ? "Yes" : "No";', 
420                         input: 'x = util.widgets.make_menulist( [ [ "Yes", "1" ], [ "No", "0" ] ] ); x.addEventListener("command",function(ev) { g.apply("ref",ev.target.value); }, false);',
421                 }
422         ],
423         [
424                 "Status",
425                 { 
426                         render: 'fm.status().name();', 
427                         input: 'x = util.widgets.make_menulist( util.functional.map_list( g.data.list.ccs, function(obj) { return [ obj.name(), obj.id() ]; } ).sort() ); x.addEventListener("command",function(ev) { g.apply("status",ev.target.value); }, false);',
428
429
430                 }
431         ],
432 ];
433
434 /******************************************************************************************************/
435 /* This loops through all our fieldnames and all the copies, tallying up counts for the different values */
436
437 g.summarize = function( copies ) {
438         /******************************************************************************************************/
439         /* Setup */
440
441         JSAN.use('util.date'); JSAN.use('util.money');
442         g.summary = {};
443         g.field_names = g.left_pane_field_names;
444         g.field_names = g.field_names.concat( g.right_pane_field_names );
445         g.field_names = g.field_names.concat( g.editable_stat_cat_names );
446         g.field_names = g.field_names.concat( g.readonly_stat_cat_names );
447
448         /******************************************************************************************************/
449         /* Loop through the field names */
450
451         for (var i = 0; i < g.field_names.length; i++) {
452
453                 var field_name = g.field_names[i][0];
454                 var render = g.field_names[i][1].render;
455                 g.summary[ field_name ] = {};
456
457                 /******************************************************************************************************/
458                 /* Loop through the copies */
459
460                 for (var j = 0; j < copies.length; j++) {
461
462                         var fm = copies[j];
463                         var cmd = render || ('fm.' + field_name + '();');
464                         var value = '???';
465
466                         /**********************************************************************************************/
467                         /* Try to retrieve the value for this field for this copy */
468
469                         try { 
470                                 value = eval( cmd ); 
471                         } catch(E) { 
472                                 g.error.sdump('D_ERROR','Attempted ' + cmd + '\n' +  E + '\n'); 
473                         }
474                         if (typeof value == 'object' && value != null) {
475                                 alert('FIXME: field_name = ' + field_name + '  value = ' + js2JSON(value) + '\n');
476                         }
477
478                         /**********************************************************************************************/
479                         /* Tally the count */
480
481                         if (g.summary[ field_name ][ value ]) {
482                                 g.summary[ field_name ][ value ]++;
483                         } else {
484                                 g.summary[ field_name ][ value ] = 1;
485                         }
486                 }
487         }
488         g.error.sdump('D_TRACE','summary = ' + js2JSON(g.summary) + '\n');
489 }
490
491 /******************************************************************************************************/
492 /* Display the summarized data and inputs for editing */
493
494 g.render = function() {
495
496         /******************************************************************************************************/
497         /* Library setup and clear any existing interface */
498
499         JSAN.use('util.widgets'); JSAN.use('util.date'); JSAN.use('util.money'); JSAN.use('util.functional');
500
501         var cns = document.getElementById('call_number_summary');
502         util.widgets.remove_children( cns );
503         var bcs = document.getElementById('barcode_summary');
504         util.widgets.remove_children( bcs );
505         var rp = document.getElementById('right_pane');
506         util.widgets.remove_children( rp );
507
508         /******************************************************************************************************/
509         /* Make the call number summary */
510
511         var grid = util.widgets.make_grid( [ { 'flex' : '1' } ] );
512         cns.appendChild(grid);
513         for (var i in g.summary['Call Number']) {
514                 var cn_id = i; var count = g.summary['Call Number'][i];
515                 var row = document.createElement('row'); grid.lastChild.appendChild(row);
516                 var cn_label = document.createElement('label'); row.appendChild(cn_label);
517                 g.special_exception['Call Number']( cn_label, cn_id );
518                 var count_label = document.createElement('label'); row.appendChild(count_label);
519                 var unit = count == 1 ? 'copy' : 'copies';
520                 count_label.setAttribute('value',count + ' ' + unit);
521         }
522
523         /******************************************************************************************************/
524         /* List the copy barcodes */
525
526         for (var i in g.summary['Barcode']) {
527                 var bc = i;
528                 var hbox = document.createElement('hbox'); bcs.appendChild(hbox);
529                 var bc_label = document.createElement('label'); hbox.appendChild(bc_label);
530                 bc_label.setAttribute('value',bc);
531         }
532
533         /******************************************************************************************************/
534         /* List the other non-editable fields in this pane */
535
536         var groupbox; var caption; var vbox; var grid; var rows;
537         for (var i = 0; i < g.left_pane_field_names.length; i++) {
538                 try {
539                         var f = g.left_pane_field_names[i]; var fn = f[0];
540                         if (fn == 'Call Number' || fn == 'Barcode') continue;
541                         groupbox = document.createElement('groupbox'); bcs.parentNode.parentNode.appendChild(groupbox);
542                         caption = document.createElement('caption'); groupbox.appendChild(caption);
543                         caption.setAttribute('label',fn);
544                         vbox = document.createElement('vbox'); groupbox.appendChild(vbox);
545                         grid = util.widgets.make_grid( [ { 'flex' : 1 }, {}, {} ] ); vbox.appendChild(grid);
546                         grid.setAttribute('flex','1');
547                         rows = grid.lastChild;
548                         var row;
549                         
550                         /**************************************************************************************/
551                         /* Loop through each value for the field */
552
553                         for (var j in g.summary[fn]) {
554                                 var value = j; var count = g.summary[fn][j];
555                                 row = document.createElement('row'); rows.appendChild(row);
556                                 var label1 = document.createElement('label'); row.appendChild(label1);
557                                 if (g.special_exception[ fn ]) {
558                                         g.special_exception[ fn ]( label1, value );
559                                 } else {
560                                         label1.setAttribute('value',value);
561                                 }
562                                 var label2 = document.createElement('label'); row.appendChild(label2);
563                                 var unit = count == 1 ? 'copy' : 'copies';
564                                 label2.setAttribute('value',count + ' ' + unit);
565                         }
566                         var hbox = document.createElement('hbox'); 
567                         vbox.appendChild(hbox);
568                 } catch(E) {
569                         g.error.sdump('D_ERROR','copy editor: ' + E + '\n');
570                 }
571         }
572
573         /******************************************************************************************************/
574         /* Prepare the right panel, which is different for 1-copy view and multi-copy view */
575
576         if (g.single_edit) {
577                 
578                 /******************************************************************************************************/
579                 /* For a less dangerous batch edit, choose one field here */
580
581                 var gb = document.createElement('groupbox'); rp.appendChild(gb);
582                 var c = document.createElement('caption'); gb.appendChild(c);
583                 c.setAttribute('label','Choose a field to edit');
584                 JSAN.use('util.widgets'); JSAN.use('util.functional');
585                 var ml = util.widgets.make_menulist(
586                         util.functional.map_list(
587                                 g.right_pane_field_names,
588                                 function(o,i) { return [ o[0], i ]; }
589                         )
590                 );
591                 gb.appendChild(ml);
592                 ml.addEventListener(
593                         'command',
594                         function(ev) {
595                                 g.render_input(gb, g.right_pane_field_names[ ev.target.value ][1].input);
596                                 ml.disabled = true;
597                         }, 
598                         false
599                 );
600
601         }
602
603         if (g.copies.length == 1) {
604
605                 /******************************************************************************************************/
606                 /* 1-copy mode has a single groupbox and each field is a row on a grid */
607
608                 var groupbox; var caption; var vbox; var grid; var rows;
609                 groupbox = document.createElement('groupbox'); rp.appendChild(groupbox);
610                 caption = document.createElement('caption'); groupbox.appendChild(caption);
611                 caption.setAttribute('label','Fields');
612                 vbox = document.createElement('vbox'); groupbox.appendChild(vbox);
613                 grid = util.widgets.make_grid( [ {}, { 'flex' : 1 } ] ); vbox.appendChild(grid);
614                 grid.setAttribute('flex','1');
615                 rows = grid.lastChild;
616
617                 /******************************************************************************************************/
618                 /* Loop through the field names */
619
620                 for (var i = 0; i < g.right_pane_field_names.length; i++) {
621                         try {
622                                 var f = g.right_pane_field_names[i]; var fn = f[0];
623                                 var row;
624
625                                 /**************************************************************************************/
626                                 /* Loop through each value for the field */
627
628                                 for (var j in g.summary[fn]) {
629                                         var value = j; var count = g.summary[fn][j];
630                                         row = document.createElement('row'); rows.appendChild(row);
631                                         var label0 = document.createElement('label'); row.appendChild(label0);
632                                         label0.setAttribute('value',fn);
633                                         label0.setAttribute('style','font-weight: bold');
634                                         var label1 = document.createElement('label'); row.appendChild(label1);
635                                         if (g.special_exception[ fn ]) {
636                                                 g.special_exception[ fn ]( label1, value );
637                                         } else {
638                                                 label1.setAttribute('value',value);
639                                         }
640
641                                 }
642
643                                 /**************************************************************************************/
644                                 /* Render the input widget */
645
646                                 var hbox = document.createElement('hbox'); 
647                                 hbox.setAttribute('id',fn);
648                                 row.setAttribute('style','border-bottom: dotted black thin');
649                                 row.appendChild(hbox);
650                                 if (f[1].input && g.edit) {
651                                         g.render_input(hbox,f[1].input);
652                                 }
653
654                         } catch(E) {
655                                 g.error.sdump('D_ERROR','copy editor: ' + E + '\n');
656                         }
657                 }
658
659         } else {
660
661                 /******************************************************************************************************/
662                 /* multi-copy mode has a groupbox for each field */
663
664                 var groupbox; var caption; var vbox; var grid; var rows;
665                 
666                 /******************************************************************************************************/
667                 /* Loop through the field names */
668
669                 for (var i = 0; i < g.right_pane_field_names.length; i++) {
670                         try {
671                                 var f = g.right_pane_field_names[i]; var fn = f[0];
672                                 groupbox = document.createElement('groupbox'); rp.appendChild(groupbox);
673                                 caption = document.createElement('caption'); groupbox.appendChild(caption);
674                                 caption.setAttribute('label',fn);
675                                 vbox = document.createElement('vbox'); groupbox.appendChild(vbox);
676                                 grid = util.widgets.make_grid( [ { 'flex' : 1 }, {}, {} ] ); vbox.appendChild(grid);
677                                 grid.setAttribute('flex','1');
678                                 rows = grid.lastChild;
679                                 var row;
680                                 
681                                 /**************************************************************************************/
682                                 /* Loop through each value for the field */
683
684                                 for (var j in g.summary[fn]) {
685                                         var value = j; var count = g.summary[fn][j];
686                                         row = document.createElement('row'); rows.appendChild(row);
687                                         var label1 = document.createElement('label'); row.appendChild(label1);
688                                         if (g.special_exception[ fn ]) {
689                                                 g.special_exception[ fn ]( label1, value );
690                                         } else {
691                                                 label1.setAttribute('value',value);
692                                         }
693                                         var label2 = document.createElement('label'); row.appendChild(label2);
694                                         var unit = count == 1 ? 'copy' : 'copies';
695                                         label2.setAttribute('value',count + ' ' + unit);
696
697                                 }
698                                 var hbox = document.createElement('hbox'); 
699                                 hbox.setAttribute('id',fn);
700                                 vbox.appendChild(hbox);
701
702                                 /**************************************************************************************/
703                                 /* Render the input widget */
704
705                                 if (f[1].input && g.edit) {
706                                         g.render_input(hbox,f[1].input);
707                                 }
708                         } catch(E) {
709                                 g.error.sdump('D_ERROR','copy editor: ' + E + '\n');
710                         }
711                 }
712         }
713 }
714
715 /******************************************************************************************************/
716 /* This actually draws the change button and input widget for a given field */
717 g.render_input = function(node,input_cmd) {
718         try {
719                 var spacer = document.createElement('spacer'); node.appendChild(spacer);
720                 spacer.setAttribute('flex','1');
721                 var deck = document.createElement('deck'); node.appendChild(deck);
722                 var btn = document.createElement('button'); deck.appendChild(btn);
723                 deck.setAttribute('style','width: 200px; min-width: 200px;');
724                 btn.setAttribute('label','Change');
725                 btn.setAttribute('oncommand','this.parentNode.selectedIndex = 1;');
726                 var x; eval( input_cmd );
727                 if (x) deck.appendChild(x);
728
729         } catch(E) {
730                 g.error.sdump('D_ERROR',E + '\n');
731         }
732 }
733
734 /******************************************************************************************************/
735 /* store the copies in the global xpcom stash */
736
737 g.stash_and_close = function() {
738         if (g.handle_update) {
739                 try {
740                         var r = g.network.request(
741                                 api.FM_ACP_FLESHED_BATCH_UPDATE.app,
742                                 api.FM_ACP_FLESHED_BATCH_UPDATE.method,
743                                 [ g.session, g.copies ]
744                         );
745                         /* FIXME -- revisit the return value here */
746                 } catch(E) {
747                         alert('copy update error: ' + js2JSON(E));
748                 }
749         }
750         g.data.temp = js2JSON( g.copies );
751         g.error.sdump('D_CAT','in modal window, g.data.temp = \n' + g.data.temp + '\n');
752         g.data.stash('temp');
753         window.close();
754 }
755