]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_editor.js
show owning_lib with callnumber in copy editor
[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.docid = g.cgi.param('docid');
22                 g.handle_update = g.cgi.param('handle_update');
23
24                 /******************************************************************************************************/
25                 /* Get the copy ids from various sources and flesh them */
26
27                 var copy_ids = [];
28                 if (g.cgi.param('copy_ids')) copy_ids = JSON2js( g.cgi.param('copy_ids') );
29                 if (window.xulG && window.xulG.copy_ids) copy_ids = copy_ids.concat( window.xulG.copy_ids );
30                 if (typeof g.data.temp_copy_ids != 'undefined' && g.data.temp_copy_ids != null) copy_ids = copy_ids.concat( JSON2js( g.data.temp_copy_ids ) );
31                 if (!copy_ids) 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                 if (g.data.temp_copies != 'undefined' && g.data.temp_copies) g.copies = g.copies.concat( JSON2js( g.data.temp_copies ) );
46
47                 /******************************************************************************************************/
48                 /* We try to retrieve callnumbers for existing copies, but for new copies, we rely on this */
49
50                 if (window.xulG && window.xulG.callnumbers) g.callnumbers = window.xulG.callnumbers;
51                 if (g.cgi.param('callnumbers')) g.callnumbers =  JSON2js( g.cgi.param('callnumbers') );
52                 if (g.data.temp_callnumbers != 'undefined') g.callnumbers = JSON2js( g.data.temp_callnumbers );
53
54                 /******************************************************************************************************/
55                 /* Is the interface an editor or a viewer, single or multi copy, existing copies or new copies? */
56
57                 if (g.cgi.param('edit') == '1') { 
58                         g.edit = true;
59                         document.getElementById('caption').setAttribute('label','Copy Editor'); 
60                         document.getElementById('save').setAttribute('hidden','false'); 
61                         g.retrieve_templates();
62                 } else {
63                         $('top_nav').setAttribute('hidden','true');
64                 }
65
66                 if (g.copies.length > 0 && g.copies[0].id() < 0) {
67                         document.getElementById('copy_notes').setAttribute('hidden','true');
68                         g.apply("status",5 /* In Process */);
69                         $('save').setAttribute('label','Create Copies');
70                 } else {
71                         g.panes_and_field_names.left_pane = 
72                                 [
73                                         [
74                                                 "Status",
75                                                 { 
76                                                         render: 'typeof fm.status() == "object" ? fm.status().name() : g.data.hash.ccs[ fm.status() ].name()', 
77                                                         input: 'c = function(v){ g.apply("status",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( g.data.list.ccs, function(obj) { return [ obj.name(), obj.id() ]; } ).sort() ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
78                                                 }
79                                         ]
80                                 ].concat(g.panes_and_field_names.left_pane);
81                 }
82
83                 if (g.copies.length != 1) {
84                         document.getElementById('copy_notes').setAttribute('hidden','true');
85                 }
86
87                 /******************************************************************************************************/
88                 /* Show the Record Details? */
89
90                 if (g.docid) {
91                         document.getElementById('brief_display').setAttribute(
92                                 'src',
93                                 urls.XUL_BIB_BRIEF + '?docid=' + g.docid
94                         );
95                 } else {
96                         document.getElementById('brief_display').setAttribute('hidden','true');
97                 }
98
99                 /******************************************************************************************************/
100                 /* Add stat cats to the panes_and_field_names.right_pane4 */
101
102                 var stat_cat_seen = {};
103
104                 function add_stat_cat(sc) {
105
106                         if (typeof g.data.hash.asc == 'undefined') { g.data.hash.asc = {}; g.data.stash('hash'); }
107
108                         var sc_id = sc;
109
110                         if (typeof sc == 'object') {
111
112                                 sc_id = sc.id();
113                         }
114
115                         if (typeof stat_cat_seen[sc_id] != 'undefined') { return; }
116
117                         stat_cat_seen[ sc_id ] = 1;
118
119                         if (typeof sc != 'object') {
120
121                                 sc = g.network.simple_request(
122                                         'FM_ASC_BATCH_RETRIEVE',
123                                         [ ses(), [ sc_id ] ]
124                                 )[0];
125
126                         }
127
128                         g.data.hash.asc[ sc.id() ] = sc; g.data.stash('hash');
129
130                         var label_name = g.data.hash.aou[ sc.owner() ].shortname() + " : " + sc.name();
131
132                         var temp_array = [
133                                 label_name,
134                                 {
135                                         render: 'var l = util.functional.find_list( fm.stat_cat_entries(), function(e){ return e.stat_cat() == ' 
136                                                 + sc.id() + '; } ); l ? l.value() : "<Unset>";',
137                                         input: 'c = function(v){ g.apply_stat_cat(' + sc.id() + ',v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "<Remove Stat Cat>", -1 ] ].concat( util.functional.map_list( g.data.hash.asc[' + sc.id() 
138                                                 + '].entries(), function(obj){ return [ obj.value(), obj.id() ]; } ) ).sort() ); '
139                                         //input: 'c = function(v){ g.apply_stat_cat(' + sc.id() + ',v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "<Remove Stat Cat>", null ] ].concat( util.functional.map_list( g.data.hash.asc[' + sc.id() 
140                                         //      + '].entries(), function(obj){ return [ obj.value(), obj.id() ]; } ).sort() ) ); '
141                                                 + 'x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c),false);',
142                                 }
143                         ];
144
145                         dump('temp_array = ' + js2JSON(temp_array) + '\n');
146
147                         g.panes_and_field_names.right_pane4.push( temp_array );
148                 }
149
150                 /* The stat cats for the pertinent library */
151                 for (var i = 0; i < g.data.list.my_asc.length; i++) {
152                         add_stat_cat( g.data.list.my_asc[i] );  
153                 }
154
155                 /* Other stat cats present on these copies */
156                 for (var i = 0; i < g.copies.length; i++) {
157                         var entries = g.copies[i].stat_cat_entries();
158                         if (!entries) entries = [];
159                         for (var j = 0; j < entries.length; j++) {
160                                 var sc_id = entries[j].stat_cat();
161                                 add_stat_cat( sc_id );
162                         }
163                 }
164
165                 /******************************************************************************************************/
166                 /* Backup copies :) */
167
168                 g.original_copies = js2JSON( g.copies );
169
170                 /******************************************************************************************************/
171                 /* Do it */
172
173                 g.summarize( g.copies );
174                 g.render();
175
176         } catch(E) {
177                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
178                         "system administrator or software developer the following:\ncat/copy_editor.xul\n" + E + '\n';
179                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); dump(js2JSON(E)); }
180                 alert(err_msg);
181         }
182 }
183
184 /******************************************************************************************************/
185 /* Retrieve Templates */
186
187 g.retrieve_templates = function() {
188         try {
189                 JSAN.use('util.widgets'); JSAN.use('util.functional');
190                 g.templates = {};
191                 var robj = g.network.simple_request('FM_AUS_RETRIEVE',[ses(),g.data.list.au[0].id()]);
192                 if (typeof robj['staff_client.copy_editor.templates'] != 'undefined') {
193                         g.templates = robj['staff_client.copy_editor.templates'];
194                 }
195                 util.widgets.remove_children('template_placeholder');
196                 var list = util.functional.map_object_to_list( g.templates, function(obj,i) { return [i, i]; } );
197
198                 g.template_menu = util.widgets.make_menulist( list );
199                 $('template_placeholder').appendChild(g.template_menu);
200         } catch(E) {
201                 g.error.standard_unexpected_error_alert('Error retrieving templates',E);
202         }
203 }
204
205 /******************************************************************************************************/
206 /* Apply Template */
207
208 g.apply_template = function() {
209         try {
210                 var name = g.template_menu.value;
211                 if (g.templates[ name ] != 'undefined') {
212                         var template = g.templates[ name ];
213                         for (var i in template) {
214                                 g.changed[ i ] = template[ i ];
215                                 switch( template[i].type ) {
216                                         case 'attribute' :
217                                                 g.apply(template[i].field,template[i].value);
218                                         break;
219                                         case 'stat_cat' :
220                                                 g.apply_stat_cat(template[i].field,template[i].value);
221                                         break;
222                                 }
223                         }
224                         g.summarize( g.copies );
225                         g.render();
226                 }
227         } catch(E) {
228                 g.error.standard_unexpected_error_alert('Error applying template',E);
229         }
230 }
231
232 /******************************************************************************************************/
233 /* Save as Template */
234
235 g.save_template = function() {
236         try {
237                 var name = window.prompt('Enter template name:','','Save As Template');
238                 if (!name) return;
239                 g.templates[name] = g.changed;
240                 var robj = g.network.simple_request(
241                         'FM_AUS_UPDATE',[ses(),g.data.list.au[0].id(), { 'staff_client.copy_editor.templates' : g.templates }]
242                 );
243                 if (typeof robj.ilsevent != 'undefined') {
244                         throw(robj);
245                 } else {
246                         alert('Template "' + name + '" saved.');
247                         setTimeout(
248                                 function() {
249                                         try {
250                                                 g.retrieve_templates();
251                                         } catch(E) {
252                                                 g.error.standard_unexpected_error_alert('Error saving template',E);
253                                         }
254                                 },0
255                         );
256                 }
257         } catch(E) {
258                 g.error.standard_unexpected_error_alert('Error saving template',E);
259         }
260 }
261
262 /******************************************************************************************************/
263 /* Delete Template */
264
265 g.delete_template = function() {
266         try {
267                 var name = g.template_menu.value;
268                 if (!name) return;
269                 if (! window.confirm('Delete template "' + name + '"?') ) return;
270                 delete(g.templates[name]);
271                 var robj = g.network.simple_request(
272                         'FM_AUS_UPDATE',[ses(),g.data.list.au[0].id(), { 'staff_client.copy_editor.templates' : g.templates }]
273                 );
274                 if (typeof robj.ilsevent != 'undefined') {
275                         throw(robj);
276                 } else {
277                         alert('Template "' + name + '" deleted.');
278                         setTimeout(
279                                 function() {
280                                         try {
281                                                 g.retrieve_templates();
282                                         } catch(E) {
283                                                 g.error.standard_unexpected_error_alert('Error deleting template',E);
284                                         }
285                                 },0
286                         );
287                 }
288         } catch(E) {
289                 g.error.standard_unexpected_error_alert('Error deleting template',E);
290         }
291 }
292
293 /******************************************************************************************************/
294 /* Restore backup copies */
295
296 g.reset = function() {
297         g.changed = {};
298         g.copies = JSON2js( g.original_copies );
299         g.summarize( g.copies );
300         g.render();
301 }
302
303 /******************************************************************************************************/
304 /* Apply a value to a specific field on all the copies being edited */
305
306 g.apply = function(field,value) {
307         g.error.sdump('D_TRACE','applying field = <' + field + '>  value = <' + value + '>\n');
308         if (value == '<HACK:KLUDGE:NULL>') value = null;
309         for (var i = 0; i < g.copies.length; i++) {
310                 var copy = g.copies[i];
311                 try {
312                         copy[field]( value ); copy.ischanged('1');
313                 } catch(E) {
314                         alert(E);
315                 }
316         }
317 }
318
319 /******************************************************************************************************/
320 /* Apply a stat cat entry to all the copies being edited.  An entry_id of < 0 signifies the stat cat is being removed. */
321
322 g.apply_stat_cat = function(sc_id,entry_id) {
323         g.error.sdump('D_TRACE','sc_id = ' + sc_id + '  entry_id = ' + entry_id + '\n');
324         for (var i = 0; i < g.copies.length; i++) {
325                 var copy = g.copies[i];
326                 try {
327                         copy.ischanged('1');
328                         var temp = copy.stat_cat_entries();
329                         if (!temp) temp = [];
330                         temp = util.functional.filter_list(
331                                 temp,
332                                 function (obj) {
333                                         return (obj.stat_cat() != sc_id);
334                                 }
335                         );
336                         if (entry_id > -1) temp.push( 
337                                 util.functional.find_id_object_in_list( 
338                                         g.data.hash.asc[sc_id].entries(), 
339                                         entry_id
340                                 )
341                         );
342                         copy.stat_cat_entries( temp );
343
344                 } catch(E) {
345                         g.error.standard_unexpected_error_alert('apply_stat_cat',E);
346                 }
347         }
348 }
349
350 /******************************************************************************************************/
351 /* This concats and uniques all the alert messages for use as the default value for a new alert message */
352
353 g.populate_alert_message_input = function(tb) {
354         try {
355                 var seen = {}; var s = '';
356                 for (var i = 0; i < g.copies.length; i++) {
357                         var msg = g.copies[i].alert_message(); 
358                         if (msg) {
359                                 if (typeof seen[msg] == 'undefined') {
360                                         s += msg + '\n';
361                                         seen[msg] = true;
362                                 }
363                         }
364                 }
365                 tb.setAttribute('value',s);
366         } catch(E) {
367                 g.error.standard_unexpected_error_alert('populate_alert_message_input',E);
368         }
369 }
370
371 /******************************************************************************************************/
372 /* This returns a list of acpl's appropriate for the copies being edited */
373
374 g.get_acpl_list = function() {
375         try {
376
377                 function get(lib_id) {
378                         g.data.stash_retrieve();
379                         var label = 'acpl_list_for_lib_'+lib_id;
380                         if (typeof g.data[label] == 'undefined') {
381                                 var robj = g.network.simple_request('FM_ACPL_RETRIEVE', [ lib_id ]);
382                                 if (typeof robj.ilsevent != 'undefined') throw(robj);
383                                 var temp_list = [];
384                                 for (var j = 0; j < robj.length; j++) {
385                                         var my_acpl = robj[j];
386                                         if (typeof g.data.hash.acpl[ my_acpl.id() ] == 'undefined') {
387                                                 g.data.hash.acpl[ my_acpl.id() ] = my_acpl;
388                                                 g.data.list.acpl.push( my_acpl );
389                                         }
390                                         temp_list.push( my_acpl );
391                                 }
392                                 g.data[label] = temp_list; g.data.stash(label,'hash','list');
393                         }
394                         return g.data[label];
395                 }
396
397                 var seen = {}; seen[ g.data.list.au[0].ws_ou() ] = true;
398                 var list = get( g.data.list.au[0].ws_ou() ); //g.data.list.acpl;
399                 for (var i = 0; i < g.copies.length; i++) {
400                         var cn_id = g.copies[i].call_number();
401                         if (cn_id > 0) {
402                                 var my_acn = g.network.simple_request('FM_ACN_RETRIEVE',[ cn_id ]);
403                                 var lib = my_acn.owning_lib();
404                                 if ( typeof seen[lib] == 'undefined' ) {
405                                         seen[lib] = true;
406                                         var r = get(my_acn.owning_lib());
407                                         list = list.concat( r );
408                                 }
409                         } 
410                 }
411                 return list;
412         } catch(E) {
413                 g.error.standard_unexpected_error_alert('get_acpl_list',E);
414                 return list;
415         }
416 }
417
418
419 /******************************************************************************************************/
420 /* This keeps track of what fields have been edited for styling purposes */
421
422 g.changed = {};
423
424 /******************************************************************************************************/
425 /* These need data from the middle layer to render */
426
427 g.special_exception = {
428         'Owning Lib : Call Number' : function(label,value) {
429                 JSAN.use('util.widgets');
430                 if (value>0) { /* an existing call number */
431                         g.network.request(
432                                 api.FM_ACN_RETRIEVE.app,
433                                 api.FM_ACN_RETRIEVE.method,
434                                 [ value ],
435                                 function(req) {
436                                         var cn = '??? id = ' + value;
437                                         try {
438                                                 cn = req.getResultObject();
439                                         } catch(E) {
440                                                 g.error.sdump('D_ERROR','callnumber retrieve: ' + E);
441                                         }
442                                         util.widgets.set_text(label,g.data.hash.aou[ cn.owning_lib() ].shortname() + ' : ' + cn.label());
443                                 }
444                         );
445                 } else { /* a yet to be created call number */
446                         if (g.callnumbers) {
447                                 util.widgets.set_text(label,g.data.hash.aou[ g.callnumbers[value].owning_lib ].shortname() + ' : ' + g.callnumbers[value].label);
448                         }
449                 }
450         },
451         'Creator' : function(label,value) {
452                 if (value == null || value == '' || value == 'null') return;
453                 g.network.simple_request(
454                         'FM_AU_RETRIEVE_VIA_ID',
455                         [ ses(), value ],
456                         function(req) {
457                                 var p = '??? id = ' + value;
458                                 try {
459                                         p = req.getResultObject();
460                                         p = p.usrname();
461
462                                 } catch(E) {
463                                         g.error.sdump('D_ERROR','patron retrieve: ' + E);
464                                 }
465                                 JSAN.use('util.widgets');
466                                 util.widgets.set_text(label,p);
467                         }
468                 );
469         },
470         'Last Editor' : function(label,value) {
471                 if (value == null || value == '' || value == 'null') return;
472                 g.network.simple_request(
473                         'FM_AU_RETRIEVE_VIA_ID',
474                         [ ses(), value ],
475                         function(req) {
476                                 var p = '??? id = ' + value;
477                                 try {
478                                         p = req.getResultObject();
479                                         p = p.usrname();
480
481                                 } catch(E) {
482                                         g.error.sdump('D_ERROR','patron retrieve: ' + E);
483                                 }
484                                 util.widgets.set_text(label,p);
485                         }
486                 );
487         }
488
489 }
490
491 /******************************************************************************************************/
492 g.readonly_stat_cat_names = [];
493 g.editable_stat_cat_names = [];
494
495 /******************************************************************************************************/
496 /* These get show in the left panel */
497
498 g.panes_and_field_names = {
499
500         'left_pane' :
501 [
502         [
503                 "Barcode",               
504                 {
505                         render: 'fm.barcode();',
506                 }
507         ], 
508         [
509                 "Creation Date",
510                 { 
511                         render: 'util.date.formatted_date( fm.create_date(), "%F");',
512                 }
513         ],
514         [
515                 "Creator",
516                 { 
517                         render: 'fm.creator();',
518                 }
519         ],
520         [
521                 "Last Edit Date",
522                 { 
523                         render: 'util.date.formatted_date( fm.edit_date(), "%F");',
524                 }
525         ],
526         [
527                 "Last Editor",
528                 {
529                         render: 'fm.editor();',
530                 }
531         ],
532
533 ],
534
535 'right_pane' :
536 [
537         [
538                 "Shelving Location",
539                 { 
540                         render: 'typeof fm.location() == "object" ? fm.location().name() : g.data.lookup("acpl",fm.location()).name()', 
541                         input: 'c = function(v){ g.apply("location",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( g.get_acpl_list(), function(obj) { return [ g.data.hash.aou[ obj.owning_lib() ].shortname() + " : " + obj.name(), obj.id() ]; }).sort()); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
542
543                 }
544         ],
545         [
546                 "Circulation Library",          
547                 {       
548                         render: 'typeof fm.circ_lib() == "object" ? fm.circ_lib().shortname() : g.data.hash.aou[ fm.circ_lib() ].shortname()',
549                         input: 'c = function(v){ g.apply("circ_lib",v); if (typeof post_c == "function") post_c(v); }; 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("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
550                 } 
551         ],
552         [
553                 "Owning Lib : Call Number",     
554                 {
555                         render: 'fm.call_number();',
556                 }
557         ],
558         [
559                 "Copy Number",
560                 { 
561                         render: 'fm.copy_number() == null ? "<Unset>" : fm.copy_number()',
562                         input: 'c = function(v){ g.apply("copy_number",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
563                 }
564         ],
565
566
567 ],
568
569 'right_pane2' :
570 [
571         [
572                 "Circulate?",
573                 {       
574                         render: 'fm.circulate() == null ? "<Unset>" : ( get_bool( fm.circulate() ) ? "Yes" : "No" )',
575                         input: 'c = function(v){ g.apply("circulate",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Yes", get_db_true() ], [ "No", get_db_false() ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
576                 }
577         ],
578         [
579                 "Holdable?",
580                 { 
581                         render: 'fm.holdable() == null ? "<Unset>" : ( get_bool( fm.holdable() ) ? "Yes" : "No" )', 
582                         input: 'c = function(v){ g.apply("holdable",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Yes", get_db_true() ], [ "No", get_db_false() ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
583                 }
584         ],
585         [
586                 "Age Protection",
587                 {
588                         render: 'fm.age_protect() == null ? "<Unset>" : ( typeof fm.age_protect() == "object" ? fm.age_protect().name() : g.data.hash.crahp[ fm.age_protect() ].name() )', 
589                         input: 'c = function(v){ g.apply("age_protect",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "<Remove Protection>", "<HACK:KLUDGE:NULL>" ] ].concat( util.functional.map_list( g.data.list.crahp, function(obj) { return [ obj.name(), obj.id() ]; }).sort() ) ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
590                 }
591
592         ],
593         [
594                 "Loan Duration",
595                 { 
596                         render: 'switch(fm.loan_duration()){ case 1: case "1": "Short"; break; case 2: case "2": "Normal"; break; case 3:case "3": "Long"; break; }',
597                         input: 'c = function(v){ g.apply("loan_duration",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Short", "1" ], [ "Normal", "2" ], [ "Long", "3" ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
598
599                 }
600         ],
601         [
602                 "Fine Level",
603                 {
604                         render: 'switch(fm.fine_level()){ case 1: case "1": "Low"; break; case 2: case "2": "Normal"; break; case 3: case "3": "High"; break; }',
605                         input: 'c = function(v){ g.apply("fine_level",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Low", "1" ], [ "Normal", "2" ], [ "High", "3" ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
606                 }
607         ],
608
609          [
610                 "Circulate as Type",    
611                 {       
612                         render: 'fm.circ_as_type() == null ? "<Unset>" : g.data.hash.citm[ fm.circ_as_type() ].value()',
613                         input: 'c = function(v){ g.apply("circ_as_type",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( util.functional.map_list( g.data.list.citm, function(n){return [ n.code() + " - " + n.value(), n.code()];} ).sort() ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
614                 } 
615         ],
616         [
617                 "Circulation Modifier",
618                 {       
619                         render: 'fm.circ_modifier() == null ? "<Unset>" : fm.circ_modifier()',
620                         input: 'c = function(v){ g.apply("circ_modifier",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
621                 }
622         ],
623 ],
624
625 'right_pane3' :
626 [       [
627                 "Alert Message",
628                 {
629                         render: 'fm.alert_message() == null ? "<Unset>" : fm.alert_message()',
630                         input: 'c = function(v){ g.apply("alert_message",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.setAttribute("multiline",true); g.populate_alert_message_input(x); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
631                 }
632         ],
633
634         [
635                 "Deposit?",
636                 { 
637                         render: 'fm.deposit() == null ? "<Unset>" : ( get_bool( fm.deposit() ) ? "Yes" : "No" )',
638                         input: 'c = function(v){ g.apply("deposit",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Yes", get_db_true() ], [ "No", get_db_false() ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
639                 }
640         ],
641         [
642                 "Deposit Amount",
643                 { 
644                         render: 'util.money.sanitize( fm.deposit_amount() );',
645                         input: 'c = function(v){ g.apply("deposit_amount",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
646                 }
647         ],
648         [
649                 "Price",
650                 { 
651                         render: 'util.money.sanitize( fm.price() );', 
652                         input: 'c = function(v){ g.apply("price",v); if (typeof post_c == "function") post_c(v); }; x = document.createElement("textbox"); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
653                 }
654         ],
655
656         [
657                 "OPAC Visible?",
658                 { 
659                         render: 'fm.opac_visible() == null ? "<Unset>" : ( get_bool( fm.opac_visible() ) ? "Yes" : "No" )', 
660                         input: 'c = function(v){ g.apply("opac_visible",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Yes", get_db_true() ], [ "No", get_db_false() ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
661                 }
662         ],
663         [
664                 "Reference?",
665                 { 
666                         render: 'fm.ref() == null ? "<Unset>" : ( get_bool( fm.ref() ) ? "Yes" : "No" )', 
667                         input: 'c = function(v){ g.apply("ref",v); if (typeof post_c == "function") post_c(v); }; x = util.widgets.make_menulist( [ [ "Yes", get_db_true() ], [ "No", get_db_false() ] ] ); x.addEventListener("apply",function(f){ return function(ev) { f(ev.target.value); } }(c), false);',
668                 }
669         ],
670 ],
671
672 'right_pane4' : 
673 [
674 ]
675
676 };
677
678 /******************************************************************************************************/
679 /* This loops through all our fieldnames and all the copies, tallying up counts for the different values */
680
681 g.summarize = function( copies ) {
682         /******************************************************************************************************/
683         /* Setup */
684
685         JSAN.use('util.date'); JSAN.use('util.money');
686         g.summary = {};
687         g.field_names = [];
688         for (var i in g.panes_and_field_names) {
689                 g.field_names = g.field_names.concat( g.panes_and_field_names[i] );
690         }
691         g.field_names = g.field_names.concat( g.editable_stat_cat_names );
692         g.field_names = g.field_names.concat( g.readonly_stat_cat_names );
693
694         /******************************************************************************************************/
695         /* Loop through the field names */
696
697         for (var i = 0; i < g.field_names.length; i++) {
698
699                 var field_name = g.field_names[i][0];
700                 var render = g.field_names[i][1].render;
701                 g.summary[ field_name ] = {};
702
703                 /******************************************************************************************************/
704                 /* Loop through the copies */
705
706                 for (var j = 0; j < copies.length; j++) {
707
708                         var fm = copies[j];
709                         var cmd = render || ('fm.' + field_name + '();');
710                         var value = '???';
711
712                         /**********************************************************************************************/
713                         /* Try to retrieve the value for this field for this copy */
714
715                         try { 
716                                 value = eval( cmd ); 
717                         } catch(E) { 
718                                 g.error.sdump('D_ERROR','Attempted ' + cmd + '\n' +  E + '\n'); 
719                         }
720                         if (typeof value == 'object' && value != null) {
721                                 alert('FIXME: field_name = <' + field_name + '>  value = <' + js2JSON(value) + '>\n');
722                         }
723
724                         /**********************************************************************************************/
725                         /* Tally the count */
726
727                         if (g.summary[ field_name ][ value ]) {
728                                 g.summary[ field_name ][ value ]++;
729                         } else {
730                                 g.summary[ field_name ][ value ] = 1;
731                         }
732                 }
733         }
734         g.error.sdump('D_TRACE','summary = ' + js2JSON(g.summary) + '\n');
735 }
736
737 /******************************************************************************************************/
738 /* Display the summarized data and inputs for editing */
739
740 g.render = function() {
741
742         /******************************************************************************************************/
743         /* Library setup and clear any existing interface */
744
745         JSAN.use('util.widgets'); JSAN.use('util.date'); JSAN.use('util.money'); JSAN.use('util.functional');
746
747         for (var i in g.panes_and_field_names) {
748                 var p = document.getElementById(i);
749                 if (p) util.widgets.remove_children(p);
750         }
751
752         /******************************************************************************************************/
753         /* Prepare the panes */
754
755         var groupbox; var caption; var vbox; var grid; var rows;
756         
757         /******************************************************************************************************/
758         /* Loop through the field names */
759
760         for (h in g.panes_and_field_names) {
761                 if (!document.getElementById(h)) continue;
762                 for (var i = 0; i < g.panes_and_field_names[h].length; i++) {
763                         try {
764                                 var f = g.panes_and_field_names[h][i]; var fn = f[0];
765                                 groupbox = document.createElement('groupbox'); document.getElementById(h).appendChild(groupbox);
766                                 if (typeof g.changed[fn] != 'undefined') groupbox.setAttribute('class','copy_editor_field_changed');
767                                 caption = document.createElement('caption'); groupbox.appendChild(caption);
768                                 caption.setAttribute('label',fn); 
769                                 vbox = document.createElement('vbox'); groupbox.appendChild(vbox);
770                                 grid = util.widgets.make_grid( [ { 'flex' : 1 }, {}, {} ] ); vbox.appendChild(grid);
771                                 grid.setAttribute('flex','1');
772                                 rows = grid.lastChild;
773                                 var row;
774                                 
775                                 /**************************************************************************************/
776                                 /* Loop through each value for the field */
777
778                                 for (var j in g.summary[fn]) {
779                                         var value = j; var count = g.summary[fn][j];
780                                         row = document.createElement('row'); rows.appendChild(row);
781                                         var label1 = document.createElement('description'); row.appendChild(label1);
782                                         if (g.special_exception[ fn ]) {
783                                                 g.special_exception[ fn ]( label1, value );
784                                         } else {
785                                                 label1.appendChild( document.createTextNode(value) );
786                                         }
787                                         var label2 = document.createElement('description'); row.appendChild(label2);
788                                         var unit = count == 1 ? 'copy' : 'copies';
789                                         label2.appendChild( document.createTextNode(count + ' ' + unit) );
790                                 }
791                                 var hbox = document.createElement('hbox'); 
792                                 hbox.setAttribute('id',fn);
793                                 groupbox.appendChild(hbox);
794                                 var hbox2 = document.createElement('hbox');
795                                 groupbox.appendChild(hbox2);
796
797                                 /**************************************************************************************/
798                                 /* Render the input widget */
799
800                                 if (f[1].input && g.edit) {
801                                         g.render_input(hbox,f[1]);
802                                 }
803
804                         } catch(E) {
805                                 g.error.sdump('D_ERROR','copy editor: ' + E + '\n');
806                         }
807                 }
808         }
809 }
810
811 /******************************************************************************************************/
812 /* This actually draws the change button and input widget for a given field */
813 g.render_input = function(node,blob) {
814         try {
815                 // node = hbox ;    groupbox ->  hbox, hbox
816
817                 var groupbox = node.parentNode;
818                 var caption = groupbox.firstChild;
819                 var vbox = node.previousSibling;
820                 var hbox = node;
821                 var hbox2 = node.nextSibling;
822
823                 var input_cmd = blob.input;
824                 var render_cmd = blob.render;
825
826                 var block = false; var first = true;
827
828                 function on_mouseover(ev) {
829                         groupbox.setAttribute('style','background: white');
830                 }
831
832                 function on_mouseout(ev) {
833                         groupbox.setAttribute('style','');
834                 }
835
836                 vbox.addEventListener('mouseover',on_mouseover,false);
837                 vbox.addEventListener('mouseout',on_mouseout,false);
838                 groupbox.addEventListener('mouseover',on_mouseover,false);
839                 groupbox.addEventListener('mouseout',on_mouseout,false);
840                 groupbox.firstChild.addEventListener('mouseover',on_mouseover,false);
841                 groupbox.firstChild.addEventListener('mouseout',on_mouseout,false);
842
843                 function on_click(ev){
844                         try {
845                                 if (block) return; block = true;
846
847                                 function post_c(v) {
848                                         try {
849                                                 /* FIXME - kludgy */
850                                                 var t = input_cmd.match('apply_stat_cat') ? 'stat_cat' : 'attribute';
851                                                 var f;
852                                                 switch(t) {
853                                                         case 'attribute' :
854                                                                 f = input_cmd.match(/apply\("(.+?)",/)[1];
855                                                         break;
856                                                         case 'stat_cat' :
857                                                                 f = input_cmd.match(/apply_stat_cat\((.+?),/)[1];
858                                                         break;
859                                                 }
860                                                 g.changed[ hbox.id ] = { 'type' : t, 'field' : f, 'value' : v };
861                                                 block = false;
862                                                 setTimeout(
863                                                         function() {
864                                                                 g.summarize( g.copies );
865                                                                 g.render();
866                                                         }, 0
867                                                 );
868                                         } catch(E) {
869                                                 g.error.standard_unexpected_error_alert('post_c',E);
870                                         }
871                                 }
872                                 var x; var c; eval( input_cmd );
873                                 if (x) {
874                                         util.widgets.remove_children(vbox);
875                                         util.widgets.remove_children(hbox);
876                                         util.widgets.remove_children(hbox2);
877                                         hbox.appendChild(x);
878                                         var apply = document.createElement('button');
879                                         apply.setAttribute('label','Apply');
880                                         apply.setAttribute('accesskey','A');
881                                         hbox2.appendChild(apply);
882                                         apply.addEventListener('command',function() { c(x.value); },false);
883                                         var cancel = document.createElement('button');
884                                         cancel.setAttribute('label','Cancel');
885                                         cancel.addEventListener('command',function() { setTimeout( function() { g.summarize( g.copies ); g.render(); }, 0); }, false);
886                                         hbox2.appendChild(cancel);
887                                         setTimeout( function() { x.focus(); }, 0 );
888                                 }
889                         } catch(E) {
890                                 g.error.standard_unexpected_error_alert('render_input',E);
891                         }
892                 }
893                 vbox.addEventListener('click',on_click, false);
894                 hbox.addEventListener('click',on_click, false);
895                 caption.addEventListener('click',on_click, false);
896                 caption.addEventListener('keypress',function(ev) {
897                         if (ev.keyCode == 13 /* enter */ || ev.keyCode == 77 /* mac enter */) on_click();
898                 }, false);
899                 caption.setAttribute('style','-moz-user-focus: normal');
900                 caption.setAttribute('onfocus','this.setAttribute("class","outline_me")');
901                 caption.setAttribute('onblur','this.setAttribute("class","")');
902
903         } catch(E) {
904                 g.error.sdump('D_ERROR',E + '\n');
905         }
906 }
907
908 /******************************************************************************************************/
909 /* store the copies in the global xpcom stash */
910
911 g.stash_and_close = function() {
912         if (g.handle_update) {
913                 try {
914                         var r = g.network.request(
915                                 api.FM_ACP_FLESHED_BATCH_UPDATE.app,
916                                 api.FM_ACP_FLESHED_BATCH_UPDATE.method,
917                                 [ ses(), g.copies, true ]
918                         );
919                         alert('pause');
920                         if (typeof r.ilsevent != 'undefined') {
921                                 g.error.standard_unexpected_error_alert('copy update',r);
922                         }
923                         /* FIXME -- revisit the return value here */
924                 } catch(E) {
925                         alert('copy update error: ' + js2JSON(E));
926                 }
927         }
928         g.data.temp_copies = js2JSON( g.copies );
929         g.data.stash('temp_copies');
930         g.error.sdump('D_CAT','in modal window, g.data.temp_copies = \n' + g.data.temp_copies + '\n');
931         window.close();
932 }
933
934 /******************************************************************************************************/
935 /* spawn copy notes interface */
936
937 g.copy_notes = function() {
938         JSAN.use('util.window'); var win = new util.window();
939         win.open(urls.XUL_COPY_NOTES + '?copy_id=' + window.escape(g.copies[0].id()),'Copy Notes','chrome,resizable,modal');
940 }
941