]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin.js
631122ac80242b5def99c082b4f50e177595a477
[Evergreen.git] / Open-ILS / xul / staff_client / server / circ / checkin.js
1 dump('entering circ.checkin.js\n');
2
3 if (typeof circ == 'undefined') circ = {};
4 circ.checkin = function (params) {
5
6     JSAN.use('util.error'); this.error = new util.error();
7     JSAN.use('util.network'); this.network = new util.network();
8     JSAN.use('util.barcode');
9     JSAN.use('util.date');
10     this.OpenILS = {}; JSAN.use('OpenILS.data'); this.OpenILS.data = new OpenILS.data(); this.OpenILS.data.init({'via':'stash'});
11     this.data = this.OpenILS.data;
12 }
13
14 circ.checkin.prototype = {
15
16     'selection_list' : [],
17     'row_map' : {},
18
19     'init' : function( params ) {
20
21         var obj = this;
22
23         JSAN.use('circ.util'); JSAN.use('patron.util');
24         var columns = circ.util.columns( 
25             { 
26                 'barcode' : { 'hidden' : false },
27                 'title' : { 'hidden' : false },
28                 'location' : { 'hidden' : false },
29                 'status' : { 'hidden' : false },
30                 'route_to' : { 'hidden' : false },
31                 'alert_message' : { 'hidden' : false },
32                 'checkin_time' : { 'hidden' : false }
33             },
34             {
35                 'except_these' : [ 'uses', 'checkin_time_full' ]
36             }
37         ).concat(
38             patron.util.columns( { 'family_name' : { 'hidden' : 'false' } } )
39
40         ).concat(
41             patron.util.mbts_columns( {}, { 'except_these' : [ 'total_paid', 'total_owed', 'xact_start', 'xact_finish', 'xact_type' ] } )
42
43         ).sort( function(a,b) { if (a.label < b.label) return -1; if (a.label > b.label) return 1; return 0; } );
44
45         JSAN.use('util.list'); obj.list = new util.list('checkin_list');
46         obj.list.init(
47             {
48                 'columns' : columns,
49                 'retrieve_row' : obj.gen_list_retrieve_row_func(),
50                 'on_select' : function(ev) {
51                     try {
52                         JSAN.use('util.functional');
53                         var sel = obj.list.retrieve_selection();
54                         obj.selection_list = util.functional.map_list(
55                             sel,
56                             function(o) { 
57                                 if (o.getAttribute('retrieve_id')) {
58                                     try {
59                                         var p = JSON2js(o.getAttribute('retrieve_id')); 
60                                         p.unique_row_counter = o.getAttribute('unique_row_counter'); 
61                                         o.setAttribute('id','_checkin_list_row_'+p.unique_row_counter);
62                                         return p; 
63                                     } catch(E) {
64                                         return -1;
65                                     }
66                                 } else {
67                                     return -1;
68                                 }
69                             }
70                         );
71                         obj.selection_list = util.functional.filter_list(
72                             obj.selection_list,
73                             function(o) {
74                                 return o != -1;
75                             }
76                         );
77                         obj.error.sdump('D_TRACE', 'circ/copy_status: selection list = ' + js2JSON(obj.selection_list) );
78                         if (obj.selection_list.length == 0) {
79                             obj.controller.view.sel_edit.setAttribute('disabled','true');
80                             obj.controller.view.sel_backdate.setAttribute('disabled','true');
81                             obj.controller.view.sel_opac.setAttribute('disabled','true');
82                             obj.controller.view.sel_opac_holds.setAttribute('disabled','true');
83                             obj.controller.view.sel_patron.setAttribute('disabled','true');
84                             obj.controller.view.sel_last_patron.setAttribute('disabled','true');
85                             obj.controller.view.sel_copy_details.setAttribute('disabled','true');
86                             obj.controller.view.sel_bucket.setAttribute('disabled','true');
87                             obj.controller.view.sel_spine.setAttribute('disabled','true');
88                             obj.controller.view.sel_transit_abort.setAttribute('disabled','true');
89                             obj.controller.view.sel_clip.setAttribute('disabled','true');
90                             obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','true');
91                             obj.controller.view.sel_mark_missing_pieces.setAttribute('disabled','true');
92                         } else {
93                             obj.controller.view.sel_edit.setAttribute('disabled','false');
94                             obj.controller.view.sel_backdate.setAttribute('disabled','false');
95                             obj.controller.view.sel_opac.setAttribute('disabled','false');
96                             obj.controller.view.sel_opac_holds.setAttribute('disabled','false');
97                             obj.controller.view.sel_patron.setAttribute('disabled','false');
98                             obj.controller.view.sel_last_patron.setAttribute('disabled','false');
99                             obj.controller.view.sel_copy_details.setAttribute('disabled','false');
100                             obj.controller.view.sel_bucket.setAttribute('disabled','false');
101                             obj.controller.view.sel_spine.setAttribute('disabled','false');
102                             obj.controller.view.sel_transit_abort.setAttribute('disabled','false');
103                             obj.controller.view.sel_clip.setAttribute('disabled','false');
104                             obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','false');
105                             obj.controller.view.sel_mark_missing_pieces.setAttribute('disabled','false');
106                         }
107
108                         // This is for updating that label in the upper left of the UI that shows Item already checked-in, etc.
109                         // Our purpose here is to show the bill amount associated with a specific transaction whenever that
110                         // transaction is selected in the list
111                         if (obj.selection_list.length == 1) {
112                             var unique_row_counter = obj.selection_list[0].unique_row_counter;
113                             var node = $('_checkin_list_row_'+unique_row_counter);
114                             if (node && node.getAttribute('no_change_label_label')) {
115                                 $('no_change_label').setAttribute('unique_row_counter',unique_row_counter);
116                                 $('no_change_label').setAttribute('value',node.getAttribute('no_change_label_label'));
117                                 $('no_change_label').setAttribute('onclick',node.getAttribute('no_change_label_click'));
118                                 $('no_change_label').setAttribute('hidden','false');
119                                 addCSSClass($('no_change_label'),'click_link'); 
120                             }
121                         }
122                     } catch(E) {
123                         alert('FIXME: ' + E);
124                     }
125                 }
126             }
127         );
128         
129         JSAN.use('util.controller'); obj.controller = new util.controller();
130         obj.controller.init(
131             {
132                 'control_map' : {
133                     'save_columns' : [ [ 'command' ], function() { obj.list.save_columns(); } ],
134                     'sel_clip' : [
135                         ['command'],
136                         function() { 
137                             obj.list.clipboard(); 
138                             obj.controller.view.checkin_barcode_entry_textbox.focus();
139                         }
140                     ],
141                     'sel_edit' : [
142                         ['command'],
143                         function() {
144                             try {
145                                 obj.spawn_copy_editor();
146                             } catch(E) {
147                                 alert(E);
148                             }
149                         }
150                     ],
151                     'sel_spine' : [
152                         ['command'],
153                         function() {
154                             JSAN.use('cat.util');
155                             cat.util.spawn_spine_editor(obj.selection_list);
156                         }
157                     ],
158                     'sel_opac' : [
159                         ['command'],
160                         function() {
161                             JSAN.use('cat.util');
162                             cat.util.show_in_opac(obj.selection_list);
163                         }
164                     ],
165                     'sel_opac_holds' : [
166                         ['command'],
167                         function() {
168                             JSAN.use('cat.util');
169                             cat.util.show_in_opac(obj.selection_list,{default_view:'hold_browser'});
170                         }
171                     ],
172                     'sel_transit_abort' : [
173                         ['command'],
174                         function() {
175                             JSAN.use('circ.util');
176                             circ.util.abort_transits(obj.selection_list);
177                         }
178                     ],
179                     'sel_patron' : [
180                         ['command'],
181                         function() {
182                             JSAN.use('circ.util');
183                             circ.util.show_last_few_circs(obj.selection_list);
184                         }
185                     ],
186                     'sel_last_patron' : [
187                         ['command'],
188                         function() {
189                             var patrons = {};
190                             for (var i = 0; i < obj.selection_list.length; i++) {
191                                 var circs = obj.network.simple_request('FM_CIRC_RETRIEVE_VIA_COPY',[ses(),obj.selection_list[i].copy_id,1]);
192                                 if (circs.length > 0) {
193                                     patrons[circs[0].usr()] = 1;
194                                 } else {
195                                     alert(document.getElementById('circStrings').getFormattedString('staff.circ.item_no_circs', [obj.selection_list[i].barcode]));
196                                 }
197                             }
198                             for (var i in patrons) {
199                                 xulG.new_patron_tab({},{'id' : i});
200                             }
201                         }
202                     ],
203                     'sel_copy_details' : [
204                         ['command'],
205                         function() {
206                             JSAN.use('circ.util');
207                             circ.util.item_details_new(
208                                 util.functional.map_list(
209                                     obj.selection_list,
210                                     function(o) { return o.barcode; }
211                                 )
212                             );
213                         }
214                     ],
215                     'sel_backdate' : [
216                         ['command'],
217                         function() {
218                             try {
219                                 JSAN.use('circ.util');
220                                 var circ_ids = []; var circ_row_map = {};
221                                 for (var i = 0; i < obj.selection_list.length; i++) {
222                                     var circ_id = obj.selection_list[i].circ_id; 
223                                     var copy_id = obj.selection_list[i].copy_id; 
224                                     if (!circ_id) {
225                                         var blob = obj.network.simple_request('FM_ACP_DETAILS',[ses(),copy_id]);
226                                         if (blob.circ) circ_id = blob.circ.id();
227                                     }
228                                     if (!circ_id) continue;
229                                     if (! circ_row_map[ circ_id ]) { circ_row_map[ circ_id ] = []; }
230                                     circ_row_map[ circ_id ].push( obj.selection_list[i].unique_row_counter );
231                                     circ_ids.push( circ_id );
232                                 }
233                                 var robj = circ.util.backdate_post_checkin( circ_ids );
234                                 if (robj.complete) {
235                                     var bad_circs = {};
236                                     for (var i = 0; i < robj.bad_circs.length; i++) {
237                                         bad_circs[ robj.bad_circs[i].circ_id ] = robj.bad_circs[i].result;
238                                     }
239                                     for (var circ_id in circ_row_map) {
240                                         var row_array = circ_row_map[circ_id];
241                                         for (var i = 0; i < row_array.length; i++) {
242                                             var row_data = obj.row_map[ row_array[i] ];
243                                             if (row_data.row.my.circ) {
244                                                 if (bad_circs[ circ_id ]) {
245                                                     row_data.row_properties = 'backdate_failed';
246                                                 } else {
247                                                     row_data.row_properties = 'backdate_succeeded';
248                                                     row_data.row.my.circ.checkin_time( robj.backdate );
249                                                 }
250                                             }
251                                             obj.list.refresh_row( row_data );
252                                         } 
253                                     }
254                                 }
255                             } catch(E) {
256                                 alert('Error in checkin.js, sel_backdate: ' + E);
257                             }
258                         }
259                     ],
260                     'sel_mark_items_damaged' : [
261                         ['command'],
262                         function() {
263                             var funcs = [];
264                             JSAN.use('cat.util'); JSAN.use('util.functional');
265                             cat.util.mark_item_damaged( util.functional.map_list( obj.selection_list, function(o) { return o.copy_id; } ) );
266                         }
267                     ],
268                     'sel_mark_missing_pieces' : [
269                         ['command'],
270                         function() {
271                             var funcs = [];
272                             JSAN.use('cat.util'); JSAN.use('util.functional');
273                             cat.util.mark_item_as_missing_pieces( util.functional.map_list( obj.selection_list, function(o) { return o.copy_id; } ) );
274                         }
275                     ],
276                     'sel_bucket' : [
277                         ['command'],
278                         function() {
279                             JSAN.use('cat.util');
280                             cat.util.add_copies_to_bucket(obj.selection_list);
281                         }
282                     ],
283                     'checkin_barcode_entry_textbox' : [
284                         ['keypress'],
285                         function(ev) {
286                             if (ev.keyCode && ev.keyCode == 13) {
287                                 obj.checkin();
288                             }
289                         }
290                     ],
291                     'checkin_effective_date_label' : [
292                         ['render'],
293                         function(e) {
294                             return function() {
295                                 obj.controller.view.checkin_effective_datepicker.value =
296                                     util.date.formatted_date(new Date(),'%F');
297                             };
298                         }
299                     ],
300                     'checkin_effective_datepicker' : [
301                         ['change'],
302                         function(ev) {
303                             if (ev.target.nodeName == 'datepicker') {
304                                 try {
305                                     if ( ev.target.dateValue > new Date() ) throw(document.getElementById('circStrings').getString('staff.circ.future_date'));
306                                     var x = document.getElementById('background');
307                                     if (x) {
308                                         if ( ev.target.value == util.date.formatted_date(new Date(),'%F') ) {
309                                             //addCSSClass(x,'checkin_screen_normal');
310                                             removeCSSClass(x,'checkin_screen_backdating');
311                                             removeCSSClass(document.getElementById('background'),'checkin_screen_do_not_alert_on_precat');
312                                             removeCSSClass(document.getElementById('background'),'checkin_screen_suppress_holds_and_transits');
313                                             removeCSSClass(document.getElementById('background'),'checkin_screen_amnesty_mode');
314                                             removeCSSClass(document.getElementById('background'),'checkin_screen_checkin_auto_print_slips');
315                                             document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getString('staff.circ.process_item'));
316                                         } else {
317                                             addCSSClass(x,'checkin_screen_backdating');
318                                             //removeCSSClass(x,'checkin_screen_normal');
319                                             document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getFormattedString('staff.circ.backdated_checkin', [ev.target.value]));
320                                         }
321                                     }
322                                 } catch(E) {
323                                     var x = document.getElementById('background');
324                                     if (x) {
325                                         //addCSSClass(x,'checkin_screen_normal');
326                                         removeCSSClass(x,'checkin_screen_backdating');
327                                         removeCSSClass(document.getElementById('background'),'checkin_screen_do_not_alert_on_precat');
328                                         removeCSSClass(document.getElementById('background'),'checkin_screen_suppress_holds_and_transits');
329                                         removeCSSClass(document.getElementById('background'),'checkin_screen_amnesty_mode');
330                                         removeCSSClass(document.getElementById('background'),'checkin_screen_checkin_auto_print_slips');
331                                         document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getString('staff.circ.process_item'));
332                                     }
333                                     dump('checkin:effective_date: ' + E + '\n');
334                                     ev.target.disabled = true;
335                                     //alert(document.getElementById('circStrings').getFormattedString('staff.circ.backdate.exception', [E]));
336                                     ev.target.value = util.date.formatted_date(new Date(),'%F');
337                                     ev.target.disabled = false;
338                                     JSAN.use('util.sound'); var sound = new util.sound(); sound.bad();
339                                     
340                                 }
341                             }
342                         }
343                     ],
344                     'cmd_broken' : [
345                         ['command'],
346                         function() { alert(document.getElementById('circStrings').getString('staff.circ.unimplemented')); }
347                     ],
348                     'cmd_checkin_submit_barcode' : [
349                         ['command'],
350                         function() {
351                             obj.checkin();
352                         }
353                     ],
354                     'cmd_checkin_print' : [
355                         ['command'],
356                         function() {
357                             var p = { 
358                                 'printer_context' : 'receipt',
359                                 'template' : 'checkin'
360                             };
361                             obj.list.print(p);
362                         }
363                     ],
364                     'cmd_csv_to_clipboard' : [ ['command'], function() { 
365                         obj.list.dump_csv_to_clipboard(); 
366                         obj.controller.view.checkin_barcode_entry_textbox.focus();
367                     } ],
368                     'cmd_csv_to_printer' : [ ['command'], function() { 
369                         obj.list.dump_csv_to_printer(); 
370                         obj.controller.view.checkin_barcode_entry_textbox.focus();
371                     } ],
372                     'cmd_csv_to_file' : [ ['command'], function() { 
373                         obj.list.dump_csv_to_file( { 'defaultFileName' : 'checked_in.txt' } ); 
374                         obj.controller.view.checkin_barcode_entry_textbox.focus();
375                     } ],
376                     'cmd_do_not_alert_on_precat' : [ ['command'], function(ev) {
377                         dump('in cmd_do_not_alert_on_precat\n');
378                         var bg = document.getElementById('background');
379                         var cb = document.getElementById('do_not_alert_on_precat');
380                         var ind = document.getElementById('do_not_alert_on_precat_indicator');
381                         var cn = 'checkin_screen_do_not_alert_on_precat';
382                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
383                         ind.hidden = cb.getAttribute('checked') != 'true'; 
384                         document.getElementById('checkin_barcode_entry_textbox').focus();
385                         return true;
386                     } ],
387                     'cmd_suppress_holds_and_transits' : [ ['command'], function(ev) {
388                         dump('in cmd_suppress_holds_and_transits\n');
389                         var bg = document.getElementById('background');
390                         var cb = document.getElementById('suppress_holds_and_transits');
391                         var ind = document.getElementById('suppress_holds_and_transits_indicator');
392                         var cn = 'checkin_screen_suppress_holds_and_transits';
393                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
394                         ind.hidden = cb.getAttribute('checked') != 'true'; 
395                         document.getElementById('checkin_barcode_entry_textbox').focus();
396                         return true;
397                     } ],
398                     'cmd_amnesty_mode' : [ ['command'], function(ev) {
399                         dump('in cmd_amnesty_mode\n');
400                         var bg = document.getElementById('background');
401                         var cb = document.getElementById('amnesty_mode');
402                         var ind = document.getElementById('amnesty_mode_indicator');
403                         var cn = 'checkin_screen_amnesty_mode';
404                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
405                         ind.hidden = cb.getAttribute('checked') != 'true'; 
406                         document.getElementById('checkin_barcode_entry_textbox').focus();
407                         return true;
408                     } ],
409                     'cmd_checkin_auto_print_slips' : [ ['command'], function(ev) {
410                         dump('in cmd_checkin_auto_print_slips\n');
411                         var bg = document.getElementById('background');
412                         var cb = document.getElementById('checkin_auto_print_slips');
413                         var ind = document.getElementById('checkin_auto_print_slips_indicator');
414                         var cn = 'checkin_screen_checkin_auto_print_slips';
415                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
416                         ind.hidden = cb.getAttribute('checked') != 'true'; 
417                         document.getElementById('checkin_barcode_entry_textbox').focus();
418                         return true;
419                     } ],
420                     'cmd_checkin_clear_shelf_expired' : [ ['command'], function(ev) {
421                         dump('in cmd_checkin_clear_shelf_expired\n');
422                         var bg = document.getElementById('background');
423                         var cb = document.getElementById('checkin_clear_shelf_expired');
424                         var ind = document.getElementById('checkin_clear_shelf_expired_indicator');
425                         var cn = 'checkin_screen_checkin_clear_shelf_expired';
426                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
427                         ind.hidden = cb.getAttribute('checked') != 'true'; 
428                         document.getElementById('checkin_barcode_entry_textbox').focus();
429                         return true;
430                     } ],
431                     'cmd_checkin_auto_retarget' : [ ['command'], function(ev) {
432                         dump('in cmd_checkin_auto_retarget\n');
433                         var bg = document.getElementById('background');
434                         var cb = document.getElementById('checkin_auto_retarget');
435                         var cb2 = document.getElementById('checkin_auto_retarget_all');
436                         var ind = document.getElementById('checkin_auto_retarget_indicator');
437                         var ind2 = document.getElementById('checkin_auto_retarget_all_indicator');
438                         var cn = 'checkin_screen_checkin_auto_retarget';
439                         var cn2 = 'checkin_screen_checkin_auto_retarget_all';
440                         if (cb.getAttribute('checked') == 'true') {
441                             if(cb2.getAttribute('checked') == 'true') {
442                                 removeCSSClass(bg,cn);
443                                 addCSSClass(bg,cn2);
444                                 ind.hidden = true;
445                                 ind2.hidden = false;
446                             } else {
447                                 addCSSClass(bg,cn);
448                                 removeCSSClass(bg,cn2);
449                                 ind.hidden = false;
450                                 ind2.hidden = true;
451                             }
452                         } else {
453                             removeCSSClass(bg,cn);
454                             removeCSSClass(bg,cn2);
455                             ind.hidden = true;
456                             ind2.hidden = true;
457                         }
458                         document.getElementById('checkin_barcode_entry_textbox').focus();
459                         return true;
460                     } ],
461                     'cmd_checkin_local_hold_as_transit' : [ ['command'], function(ev) {
462                         dump('in cmd_checkin_local_hold_as_transit\n');
463                         var bg = document.getElementById('background');
464                         var cb = document.getElementById('checkin_local_hold_as_transit');
465                         var ind = document.getElementById('checkin_local_hold_as_transit_indicator');
466                         var cn = 'checkin_screen_checkin_local_hold_as_transit';
467                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
468                         ind.hidden = cb.getAttribute('checked') != 'true'; 
469                         document.getElementById('checkin_barcode_entry_textbox').focus();
470                         return true;
471
472                     } ]
473                 }
474             }
475         );
476         this.controller.render();
477         this.controller.view.checkin_barcode_entry_textbox.focus();
478
479     },
480
481     'update_no_change_label' : function (node,row) {
482         var obj = this;
483         var no_change_label = document.getElementById('no_change_label');
484         var incumbent_row = no_change_label.getAttribute('unique_row_counter');
485         var incoming_row = node.getAttribute('unique_row_counter');
486         if (!incumbent_row) { incumbent_row = incoming_row; }
487         if (row.my.mbts && ( no_change_label || document.getElementById('fine_tally') ) ) {
488             var bill = row.my.mbts;
489             if (Number(bill.balance_owed()) == 0) { return; }
490             if (no_change_label) {
491                 var msg = incumbent_row != incoming_row
492                     ? '' // clear out label if for a different transaction
493                     : no_change_label.getAttribute('value');
494                 var new_msg = document.getElementById('circStrings').getFormattedString(
495                     'staff.circ.utils.billable.amount', [
496                         row.my.acp.barcode(),
497                         util.money.sanitize(bill.balance_owed())
498                     ]
499                 );
500                 no_change_label.setAttribute(
501                     'value', 
502                     msg.indexOf(new_msg) > -1 ? msg : msg + new_msg + '  '
503                 );
504                 no_change_label.setAttribute('hidden','false');
505                 no_change_label.setAttribute('onclick','xulG.new_patron_tab({},{"id" : '+bill.usr()+', "show" : "bills" })');
506                 no_change_label.setAttribute('unique_row_counter',incoming_row);
507                 addCSSClass(no_change_label,'click_link'); 
508                 node.setAttribute('no_change_label_label', no_change_label.getAttribute('value'));
509                 node.setAttribute('no_change_label_click', no_change_label.getAttribute('onclick'));
510             }
511         }
512     },
513
514     'gen_list_retrieve_row_func' : function() {
515         var obj = this;
516         return function(params) {
517             try {
518                 var row = params.row;
519                 if (typeof params.on_retrieve == 'function') params.on_retrieve(row);
520                 obj.update_no_change_label(params.treeitem_node,row);
521                 var bill = row.my.mbts;
522                 if (bill && document.getElementById('fine_tally') && ! row.already_tallied) {
523                     params.row.already_tallied = true;
524                     var amount = util.money.cents_as_dollars(
525                         Number( util.money.dollars_float_to_cents_integer( document.getElementById('fine_tally').getAttribute('amount') ) ) 
526                         + Number( util.money.dollars_float_to_cents_integer( bill.balance_owed() ) )
527                     );
528                     document.getElementById('fine_tally').setAttribute('amount',amount);
529                     document.getElementById('fine_tally').setAttribute(
530                         'value',
531                         document.getElementById('circStrings').getFormattedString('staff.circ.utils.fine_tally_text', [ util.money.sanitize( amount ) ])
532                     );
533                     document.getElementById('fine_tally').setAttribute('hidden','false');
534                 }
535             } catch(E) {
536                 alert('Error in checkin.js, list_retrieve_row(): ' + E);
537             }
538             return row;
539         };
540     },
541
542     'test_barcode' : function(bc) {
543         var obj = this;
544         var x = document.getElementById('strict_barcode');
545         if (x && x.checked != true) return true;
546         var good = util.barcode.check(bc);
547         if (good) {
548             return true;
549         } else {
550             if ( 1 == obj.error.yns_alert(
551                         document.getElementById('circStrings').getFormattedString('staff.circ.check_digit.bad', [bc]),
552                         document.getElementById('circStrings').getString('staff.circ.barcode.bad'),
553                         document.getElementById('circStrings').getString('staff.circ.cancel'),
554                         document.getElementById('circStrings').getString('staff.circ.barcode.accept'),
555                         null,
556                         document.getElementById('circStrings').getString('staff.circ.confirm'),
557                         '/xul/server/skin/media/images/bad_barcode.png'
558             ) ) {
559                 return true;
560             } else {
561                 return false;
562             }
563         }
564     },
565
566     'checkin' : function() {
567         var obj = this;
568         try {
569             var textbox = obj.controller.view.checkin_barcode_entry_textbox;
570             var async = false;
571             var async_checkbox = document.getElementById('async_checkin');
572             if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; }
573             var barcode = textbox.value;
574             if (async) {
575                 textbox.value = ''; textbox.focus();
576             }
577             if (obj.data.list.cbc.length > 0) { // skip barcode completion lookups if none configured
578                 // Auto-complete the barcode, items only
579                 var barcode_object = xulG.get_barcode(window, 'asset', barcode);
580                 // user_false means the user selected "None of the above", abort before other prompts/errors
581                 if(barcode_object == "user_false") return;
582                 // Got a barcode without an error? Use it. Otherwise fall through.
583                 if(barcode_object && typeof barcode_object.ilsevent == 'undefined')
584                     barcode = barcode_object.barcode;
585             }
586             if ( obj.test_barcode(barcode) ) { /* good */ } else { /* bad */ return; }
587             var placeholder_item = new acp();
588             placeholder_item.barcode( barcode );
589             var row_params = obj.list.append( { 
590                     'row' : {
591                         'my' : { 
592                             'acp' : placeholder_item
593                         } 
594                     },
595                     'to_top' : true,
596                     'flesh_immediately' : !async,
597                     'on_append' : function(rparams) { obj.row_map[ rparams.unique_row_counter ] = rparams; },
598                     'on_remove' : function(unique_row_counter) { delete obj.row_map[ unique_row_counter ]; }
599             } );
600             
601             var backdate = obj.controller.view.checkin_effective_datepicker.value;
602             var auto_print = document.getElementById('checkin_auto_print_slips');
603             if (auto_print) auto_print = auto_print.getAttribute('checked') == 'true';
604             JSAN.use('circ.util');
605             var params = { 
606                 'barcode' : barcode,
607                 'disable_textbox' : function() { 
608                     if (!async) {
609                         textbox.blur();
610                         textbox.disabled = true; 
611                         textbox.setAttribute('disabled', 'true'); 
612                     }
613                 },
614                 'enable_textbox' : function() { 
615                     textbox.disabled = false; 
616                     textbox.setAttribute('disabled', 'false'); 
617                     textbox.focus();
618                 },
619                 'checkin_result' : function(checkin) {
620                     textbox.disabled = false;
621                     textbox.focus();
622                     //obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
623                     obj.checkin2(checkin,backdate,row_params);
624                 },
625                 'info_blurb' : function(text) {
626                     try { row_params.row.my.acp.alert_message( text ); } catch(E) {dump('error: ' + E + '\n');}
627                 }
628             }; 
629             var suppress_holds_and_transits = document.getElementById('suppress_holds_and_transits');
630             if (suppress_holds_and_transits) suppress_holds_and_transits = suppress_holds_and_transits.getAttribute('checked') == 'true';
631             if (suppress_holds_and_transits) params.noop = 1;
632             var amnesty_mode = document.getElementById('amnesty_mode');
633             if (amnesty_mode) amnesty_mode = amnesty_mode.getAttribute('checked') == 'true';
634             if (amnesty_mode) params.void_overdues = 1;
635             var clear_shelf_expired_holds = document.getElementById('checkin_clear_shelf_expired');
636             if (clear_shelf_expired_holds) clear_shelf_expired_holds = clear_shelf_expired_holds.getAttribute('checked') == 'true';
637             if (clear_shelf_expired_holds) params.clear_expired = 1;
638             var auto_retarget = document.getElementById('checkin_auto_retarget');
639             if (auto_retarget) auto_retarget = auto_retarget.getAttribute('checked') == 'true';
640             if (auto_retarget) {
641                 var retarget_all = document.getElementById('checkin_auto_retarget_all');
642                 if (retarget_all) retarget_all = retarget_all.getAttribute('checked') == 'true';
643                 if (retarget_all) params.retarget_mode = 'retarget.all';
644                 else params.retarget_mode = 'retarget';
645             }
646             var hold_as_transit = document.getElementById('checkin_local_hold_as_transit');
647             if (hold_as_transit) hold_as_transit = hold_as_transit.getAttribute('checked') == 'true';
648             if (hold_as_transit) params.hold_as_transit = 1;
649             circ.util.checkin_via_barcode(
650                 ses(), 
651                 params,
652                 backdate, 
653                 auto_print,
654                 async
655             );
656         } catch(E) {
657             obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin.exception', [E]), E);
658             if (typeof obj.on_failure == 'function') {
659                 obj.on_failure(E);
660             }
661             if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
662                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.external') + '\n');
663                 window.xulG.on_failure(E);
664             } else {
665                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.no_external') + '\n');
666             }
667         }
668
669     },
670
671     'checkin2' : function(checkin,backdate,row_params) {
672         var obj = this;
673         try {
674             if (!checkin) {/* circ.util.checkin used to be sole handler of errors and returns null currently */
675                 obj.list.refresh_row( row_params ); /* however, let's refresh the row because we're shoving error text into the dummy placeholder item's alert_message field  */
676                 return obj.on_failure();
677             }
678             if (checkin.ilsevent == 7010 /* COPY_ALERT_MESSAGE */
679                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
680                 || checkin.ilsevent == -1 /* offline */
681                 || checkin.ilsevent == 1502 /* ASSET_COPY_NOT_FOUND */
682                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
683                 || checkin.ilsevent == 7009 /* CIRC_CLAIMS_RETURNED */ 
684                 || checkin.ilsevent == 7011 /* COPY_STATUS_LOST */ 
685                 || checkin.ilsevent == 7025 /* COPY_STATUS_LONG_OVERDUE */ 
686                 || checkin.ilsevent == 7012 /* COPY_STATUS_MISSING */) {
687                 obj.list.refresh_row( row_params ); 
688                 return obj.on_failure();
689             }
690             var retrieve_id = js2JSON( { 'circ_id' : checkin.circ ? checkin.circ.id() : null , 'copy_id' : checkin.copy.id(), 'barcode' : checkin.copy.barcode(), 'doc_id' : (typeof checkin.record != 'undefined' ? ( typeof checkin.record.ilsevent == 'undefined' ? checkin.record.doc_id() : null ) : null ) } );
691             if (checkin.circ && checkin.circ.checkin_time() == 'now') checkin.circ.checkin_time(backdate);
692             if (document.getElementById('trim_list')) {
693                 var x = document.getElementById('trim_list');
694                 if (x.checked) { obj.list.trim_list = 20; } else { obj.list.trim_list = null; }
695             }
696             row_params['retrieve_id'] = retrieve_id;
697             row_params['row'] =  {
698                 'already_tallied' : false,
699                 'my' : {
700                     'circ' : checkin.circ,
701                     'mbts' : checkin.circ ? checkin.circ.billable_transaction().summary() : null,
702                     'mvr' : checkin.record,
703                     'acp' : checkin.copy,
704                     'acn' : checkin.volume,
705                     'au' : checkin.patron,
706                     'status' : checkin.status,
707                     'route_to' : checkin.route_to,
708                     'message' : checkin.message
709                 }
710             };
711             obj.list.refresh_row( row_params );
712             obj.list.node.view.selection.select(0);
713
714             JSAN.use('util.sound'); var sound = new util.sound(); sound.circ_good();
715
716             if (typeof obj.on_checkin == 'function') {
717                 obj.on_checkin(checkin);
718             }
719             if (typeof window.xulG == 'object' && typeof window.xulG.on_checkin == 'function') {
720                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.external') + '\n');
721                 window.xulG.on_checkin(checkin);
722             } else {
723                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.no_external') + '\n');
724             }
725
726             return true;
727
728         } catch(E) {
729             obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin2.exception', [E]));
730             if (typeof obj.on_failure == 'function') {
731                 obj.on_failure(E);
732             }
733             if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
734                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.external') + '\n');
735                 window.xulG.on_failure(E);
736             } else {
737                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.no_external') + '\n');
738             }
739         }
740
741     },
742
743     'on_checkin' : function() {
744         var async = false;
745         var async_checkbox = document.getElementById('async_checkin');
746         if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; }
747         if (!async) {
748             this.controller.view.checkin_barcode_entry_textbox.disabled = false;
749             this.controller.view.checkin_barcode_entry_textbox.select();
750             this.controller.view.checkin_barcode_entry_textbox.value = '';
751             this.controller.view.checkin_barcode_entry_textbox.focus();
752         }
753     },
754
755     'on_failure' : function() {
756         var async = false;
757         var async_checkbox = document.getElementById('async_checkin');
758         if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; }
759         if (!async) {
760             this.controller.view.checkin_barcode_entry_textbox.disabled = false;
761             this.controller.view.checkin_barcode_entry_textbox.select();
762             this.controller.view.checkin_barcode_entry_textbox.focus();
763         }
764     },
765     
766     'spawn_copy_editor' : function() {
767
768         var obj = this;
769
770         JSAN.use('util.functional');
771
772         var list = obj.selection_list;
773
774         list = util.functional.map_list(
775             list,
776             function (o) {
777                 return o.copy_id;
778             }
779         );
780
781         JSAN.use('cat.util'); cat.util.spawn_copy_editor( { 'copy_ids' : list, 'edit' : 1 } );
782
783     }
784
785 }
786
787 dump('exiting circ.checkin.js\n');