]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin.js
entry point and function stub for Mark Item as Missing Pieces
[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                 'call_number' : { 'hidden' : false },
30                 'status' : { 'hidden' : false },
31                 'route_to' : { 'hidden' : false },
32                 'alert_message' : { 'hidden' : false },
33                 'checkin_time' : { 'hidden' : false }
34             },
35             {
36                 'except_these' : [ 'uses', 'checkin_time_full' ]
37             }
38         ).concat(
39             patron.util.columns( { 'family_name' : { 'hidden' : 'false' } } )
40
41         ).concat(
42             patron.util.mbts_columns( {}, { 'except_these' : [ 'total_paid', 'total_owed', 'xact_start', 'xact_finish', 'xact_type' ] } )
43
44         ).sort( function(a,b) { if (a.label < b.label) return -1; if (a.label > b.label) return 1; return 0; } );
45
46         JSAN.use('util.list'); obj.list = new util.list('checkin_list');
47         obj.list.init(
48             {
49                 'columns' : columns,
50                 'map_row_to_columns' : circ.util.std_map_row_to_columns(),
51                 'retrieve_row' : obj.gen_list_retrieve_row_func(),
52                 'on_select' : function(ev) {
53                     try {
54                         JSAN.use('util.functional');
55                         var sel = obj.list.retrieve_selection();
56                         obj.selection_list = util.functional.map_list(
57                             sel,
58                             function(o) { var p = JSON2js(o.getAttribute('retrieve_id')); p.unique_row_counter = o.getAttribute('unique_row_counter'); return p; }
59                         );
60                         obj.error.sdump('D_TRACE', 'circ/copy_status: selection list = ' + js2JSON(obj.selection_list) );
61                         if (obj.selection_list.length == 0) {
62                             obj.controller.view.sel_edit.setAttribute('disabled','true');
63                             obj.controller.view.sel_backdate.setAttribute('disabled','true');
64                             obj.controller.view.sel_opac.setAttribute('disabled','true');
65                             obj.controller.view.sel_patron.setAttribute('disabled','true');
66                             obj.controller.view.sel_last_patron.setAttribute('disabled','true');
67                             obj.controller.view.sel_copy_details.setAttribute('disabled','true');
68                             obj.controller.view.sel_bucket.setAttribute('disabled','true');
69                             obj.controller.view.sel_spine.setAttribute('disabled','true');
70                             obj.controller.view.sel_transit_abort.setAttribute('disabled','true');
71                             obj.controller.view.sel_clip.setAttribute('disabled','true');
72                             obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','true');
73                             obj.controller.view.sel_mark_missing_pieces.setAttribute('disabled','true');
74                         } else {
75                             obj.controller.view.sel_edit.setAttribute('disabled','false');
76                             obj.controller.view.sel_backdate.setAttribute('disabled','false');
77                             obj.controller.view.sel_opac.setAttribute('disabled','false');
78                             obj.controller.view.sel_patron.setAttribute('disabled','false');
79                             obj.controller.view.sel_last_patron.setAttribute('disabled','false');
80                             obj.controller.view.sel_copy_details.setAttribute('disabled','false');
81                             obj.controller.view.sel_bucket.setAttribute('disabled','false');
82                             obj.controller.view.sel_spine.setAttribute('disabled','false');
83                             obj.controller.view.sel_transit_abort.setAttribute('disabled','false');
84                             obj.controller.view.sel_clip.setAttribute('disabled','false');
85                             obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','false');
86                             obj.controller.view.sel_mark_missing_pieces.setAttribute('disabled','false');
87                         }
88                     } catch(E) {
89                         alert('FIXME: ' + E);
90                     }
91                 }
92             }
93         );
94         
95         JSAN.use('util.controller'); obj.controller = new util.controller();
96         obj.controller.init(
97             {
98                 'control_map' : {
99                     'save_columns' : [ [ 'command' ], function() { obj.list.save_columns(); } ],
100                     'sel_clip' : [
101                         ['command'],
102                         function() { 
103                             obj.list.clipboard(); 
104                             obj.controller.view.checkin_barcode_entry_textbox.focus();
105                         }
106                     ],
107                     'sel_edit' : [
108                         ['command'],
109                         function() {
110                             try {
111                                 obj.spawn_copy_editor();
112                             } catch(E) {
113                                 alert(E);
114                             }
115                         }
116                     ],
117                     'sel_spine' : [
118                         ['command'],
119                         function() {
120                             JSAN.use('cat.util');
121                             cat.util.spawn_spine_editor(obj.selection_list);
122                         }
123                     ],
124                     'sel_opac' : [
125                         ['command'],
126                         function() {
127                             JSAN.use('cat.util');
128                             cat.util.show_in_opac(obj.selection_list);
129                         }
130                     ],
131                     'sel_transit_abort' : [
132                         ['command'],
133                         function() {
134                             JSAN.use('circ.util');
135                             circ.util.abort_transits(obj.selection_list);
136                         }
137                     ],
138                     'sel_patron' : [
139                         ['command'],
140                         function() {
141                             JSAN.use('circ.util');
142                             circ.util.show_last_few_circs(obj.selection_list);
143                         }
144                     ],
145                     'sel_last_patron' : [
146                         ['command'],
147                         function() {
148                             var patrons = {};
149                             for (var i = 0; i < obj.selection_list.length; i++) {
150                                 var circs = obj.network.simple_request('FM_CIRC_RETRIEVE_VIA_COPY',[ses(),obj.selection_list[i].copy_id,1]);
151                                 if (circs.length > 0) {
152                                     patrons[circs[0].usr()] = 1;
153                                 } else {
154                                     alert(document.getElementById('circStrings').getFormattedString('staff.circ.item_no_circs', [obj.selection_list[i].barcode]));
155                                 }
156                             }
157                             for (var i in patrons) {
158                                 xulG.new_patron_tab({},{'id' : i});
159                             }
160                         }
161                     ],
162                     'sel_copy_details' : [
163                         ['command'],
164                         function() {
165                             JSAN.use('circ.util');
166                             circ.util.item_details_new(
167                                 util.functional.map_list(
168                                     obj.selection_list,
169                                     function(o) { return o.barcode; }
170                                 )
171                             );
172                         }
173                     ],
174                     'sel_backdate' : [
175                         ['command'],
176                         function() {
177                             try {
178                                 JSAN.use('circ.util');
179                                 var circ_ids = []; var circ_row_map = {};
180                                 for (var i = 0; i < obj.selection_list.length; i++) {
181                                     var circ_id = obj.selection_list[i].circ_id; 
182                                     var copy_id = obj.selection_list[i].copy_id; 
183                                     if (!circ_id) {
184                                         var blob = obj.network.simple_request('FM_ACP_DETAILS',[ses(),copy_id]);
185                                         if (blob.circ) circ_id = blob.circ.id();
186                                     }
187                                     if (!circ_id) continue;
188                                     if (! circ_row_map[ circ_id ]) { circ_row_map[ circ_id ] = []; }
189                                     circ_row_map[ circ_id ].push( obj.selection_list[i].unique_row_counter );
190                                     circ_ids.push( circ_id );
191                                 }
192                                 var robj = circ.util.backdate_post_checkin( circ_ids );
193                                 if (robj.complete) {
194                                     var bad_circs = {};
195                                     for (var i = 0; i < robj.bad_circs.length; i++) {
196                                         bad_circs[ robj.bad_circs[i].circ_id ] = robj.bad_circs[i].result;
197                                     }
198                                     for (var circ_id in circ_row_map) {
199                                         var row_array = circ_row_map[circ_id];
200                                         for (var i = 0; i < row_array.length; i++) {
201                                             var row_data = obj.row_map[ row_array[i] ];
202                                             if (row_data.row.my.circ) {
203                                                 if (bad_circs[ circ_id ]) {
204                                                     row_data.row_properties = 'backdate_failed';
205                                                 } else {
206                                                     row_data.row_properties = 'backdate_succeeded';
207                                                     row_data.row.my.circ.checkin_time( robj.backdate );
208                                                 }
209                                             }
210                                             obj.list.refresh_row( row_data );
211                                         } 
212                                     }
213                                 }
214                             } catch(E) {
215                                 alert('Error in checkin.js, sel_backdate: ' + E);
216                             }
217                         }
218                     ],
219                     'sel_mark_items_damaged' : [
220                         ['command'],
221                         function() {
222                             var funcs = [];
223                             JSAN.use('cat.util'); JSAN.use('util.functional');
224                             cat.util.mark_item_damaged( util.functional.map_list( obj.selection_list, function(o) { return o.copy_id; } ) );
225                         }
226                     ],
227                     'sel_mark_missing_pieces' : [
228                         ['command'],
229                         function() {
230                             var funcs = [];
231                             JSAN.use('cat.util'); JSAN.use('util.functional');
232                             cat.util.mark_item_as_missing_pieces( util.functional.map_list( obj.selection_list, function(o) { return o.copy_id; } ) );
233                         }
234                     ],
235                     'sel_bucket' : [
236                         ['command'],
237                         function() {
238                             JSAN.use('cat.util');
239                             cat.util.add_copies_to_bucket(obj.selection_list);
240                         }
241                     ],
242                     'checkin_barcode_entry_textbox' : [
243                         ['keypress'],
244                         function(ev) {
245                             if (ev.keyCode && ev.keyCode == 13) {
246                                 obj.checkin();
247                             }
248                         }
249                     ],
250                     'checkin_effective_date_label' : [
251                         ['render'],
252                         function(e) {
253                             return function() {
254                                 obj.controller.view.checkin_effective_datepicker.value =
255                                     util.date.formatted_date(new Date(),'%F');
256                             };
257                         }
258                     ],
259                     'checkin_effective_datepicker' : [
260                         ['change'],
261                         function(ev) {
262                             if (ev.target.nodeName == 'datepicker') {
263                                 try {
264                                     if ( ev.target.dateValue > new Date() ) throw(document.getElementById('circStrings').getString('staff.circ.future_date'));
265                                     var x = document.getElementById('background');
266                                     if (x) {
267                                         if ( ev.target.value == util.date.formatted_date(new Date(),'%F') ) {
268                                             //addCSSClass(x,'checkin_screen_normal');
269                                             removeCSSClass(x,'checkin_screen_backdating');
270                                             removeCSSClass(document.getElementById('background'),'checkin_screen_do_not_alert_on_precat');
271                                             removeCSSClass(document.getElementById('background'),'checkin_screen_suppress_holds_and_transits');
272                                             removeCSSClass(document.getElementById('background'),'checkin_screen_amnesty_mode');
273                                             removeCSSClass(document.getElementById('background'),'checkin_screen_checkin_auto_print_slips');
274                                             document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getString('staff.circ.process_item'));
275                                         } else {
276                                             addCSSClass(x,'checkin_screen_backdating');
277                                             //removeCSSClass(x,'checkin_screen_normal');
278                                             document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getFormattedString('staff.circ.backdated_checkin', [ev.target.value]));
279                                         }
280                                     }
281                                 } catch(E) {
282                                     var x = document.getElementById('background');
283                                     if (x) {
284                                         //addCSSClass(x,'checkin_screen_normal');
285                                         removeCSSClass(x,'checkin_screen_backdating');
286                                         removeCSSClass(document.getElementById('background'),'checkin_screen_do_not_alert_on_precat');
287                                         removeCSSClass(document.getElementById('background'),'checkin_screen_suppress_holds_and_transits');
288                                         removeCSSClass(document.getElementById('background'),'checkin_screen_amnesty_mode');
289                                         removeCSSClass(document.getElementById('background'),'checkin_screen_checkin_auto_print_slips');
290                                         document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getString('staff.circ.process_item'));
291                                     }
292                                     dump('checkin:effective_date: ' + E + '\n');
293                                     ev.target.disabled = true;
294                                     //alert(document.getElementById('circStrings').getFormattedString('staff.circ.backdate.exception', [E]));
295                                     ev.target.value = util.date.formatted_date(new Date(),'%F');
296                                     ev.target.disabled = false;
297                                     JSAN.use('util.sound'); var sound = new util.sound(); sound.bad();
298                                     
299                                 }
300                             }
301                         }
302                     ],
303                     'cmd_broken' : [
304                         ['command'],
305                         function() { alert(document.getElementById('circStrings').getString('staff.circ.unimplemented')); }
306                     ],
307                     'cmd_checkin_submit_barcode' : [
308                         ['command'],
309                         function() {
310                             obj.checkin();
311                         }
312                     ],
313                     'cmd_checkin_print' : [
314                         ['command'],
315                         function() {
316                             var p = { 
317                                 'template' : 'checkin'
318                             };
319                             obj.list.print(p);
320                         }
321                     ],
322                     'cmd_csv_to_clipboard' : [ ['command'], function() { 
323                         obj.list.dump_csv_to_clipboard(); 
324                         obj.controller.view.checkin_barcode_entry_textbox.focus();
325                     } ],
326                     'cmd_csv_to_printer' : [ ['command'], function() { 
327                         obj.list.dump_csv_to_printer(); 
328                         obj.controller.view.checkin_barcode_entry_textbox.focus();
329                     } ],
330                     'cmd_csv_to_file' : [ ['command'], function() { 
331                         obj.list.dump_csv_to_file( { 'defaultFileName' : 'checked_in.txt' } ); 
332                         obj.controller.view.checkin_barcode_entry_textbox.focus();
333                     } ],
334                     'cmd_do_not_alert_on_precat' : [ ['command'], function(ev) {
335                         dump('in cmd_do_not_alert_on_precat\n');
336                         var bg = document.getElementById('background');
337                         var cb = document.getElementById('do_not_alert_on_precat');
338                         var ind = document.getElementById('do_not_alert_on_precat_indicator');
339                         var cn = 'checkin_screen_do_not_alert_on_precat';
340                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
341                         ind.hidden = cb.getAttribute('checked') != 'true'; 
342                         document.getElementById('checkin_barcode_entry_textbox').focus();
343                         return true;
344                     } ],
345                     'cmd_suppress_holds_and_transits' : [ ['command'], function(ev) {
346                         dump('in cmd_suppress_holds_and_transits\n');
347                         var bg = document.getElementById('background');
348                         var cb = document.getElementById('suppress_holds_and_transits');
349                         var ind = document.getElementById('suppress_holds_and_transits_indicator');
350                         var cn = 'checkin_screen_suppress_holds_and_transits';
351                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
352                         ind.hidden = cb.getAttribute('checked') != 'true'; 
353                         document.getElementById('checkin_barcode_entry_textbox').focus();
354                         return true;
355                     } ],
356                     'cmd_amnesty_mode' : [ ['command'], function(ev) {
357                         dump('in cmd_amnesty_mode\n');
358                         var bg = document.getElementById('background');
359                         var cb = document.getElementById('amnesty_mode');
360                         var ind = document.getElementById('amnesty_mode_indicator');
361                         var cn = 'checkin_screen_amnesty_mode';
362                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
363                         ind.hidden = cb.getAttribute('checked') != 'true'; 
364                         document.getElementById('checkin_barcode_entry_textbox').focus();
365                         return true;
366                     } ],
367                     'cmd_checkin_auto_print_slips' : [ ['command'], function(ev) {
368                         dump('in cmd_checkin_auto_print_slips\n');
369                         var bg = document.getElementById('background');
370                         var cb = document.getElementById('checkin_auto_print_slips');
371                         var ind = document.getElementById('checkin_auto_print_slips_indicator');
372                         var cn = 'checkin_screen_checkin_auto_print_slips';
373                         if (cb.getAttribute('checked') == 'true') { addCSSClass(bg,cn); } else { removeCSSClass(bg,cn); }
374                         ind.hidden = cb.getAttribute('checked') != 'true'; 
375                         document.getElementById('checkin_barcode_entry_textbox').focus();
376                         return true;
377                     } ]
378                 }
379             }
380         );
381         this.controller.render();
382         this.controller.view.checkin_barcode_entry_textbox.focus();
383
384     },
385
386     'gen_list_retrieve_row_func' : function() {
387         var obj = this;
388         return function(params) {
389             try {
390                 var row = params.row;
391                 if (typeof params.on_retrieve == 'function') params.on_retrieve(row);
392
393                 if (row.my.mbts && ( document.getElementById('no_change_label') || document.getElementById('fine_tally') ) ) {
394                     var bill = row.my.mbts;
395                     if (Number(bill.balance_owed()) == 0) { return; }
396                     if (document.getElementById('no_change_label')) {
397                         var m = document.getElementById('no_change_label').getAttribute('value');
398                         document.getElementById('no_change_label').setAttribute(
399                             'value', 
400                             m + document.getElementById('circStrings').getFormattedString('staff.circ.utils.billable.amount', [row.my.acp.barcode(), util.money.sanitize(bill.balance_owed())]) + '  '
401                         );
402                         document.getElementById('no_change_label').setAttribute('hidden','false');
403                     }
404                     if (document.getElementById('fine_tally')) {
405                         var amount = Number( document.getElementById('fine_tally').getAttribute('amount') ) + Number( bill.balance_owed() );
406                         document.getElementById('fine_tally').setAttribute('amount',amount);
407                         document.getElementById('fine_tally').setAttribute(
408                             'value',
409                             document.getElementById('circStrings').getFormattedString('staff.circ.utils.fine_tally_text', [ util.money.sanitize( amount ) ])
410                         );
411                         document.getElementById('fine_tally').setAttribute('hidden','false');
412                     }
413                 }
414
415             } catch(E) {
416                 alert('Error in checkin.js, list_retrieve_row(): ' + E);
417             }
418             return row;
419         };
420     },
421
422     'test_barcode' : function(bc) {
423         var obj = this;
424         var x = document.getElementById('strict_barcode');
425         if (x && x.checked != true) return true;
426         var good = util.barcode.check(bc);
427         if (good) {
428             return true;
429         } else {
430             if ( 1 == obj.error.yns_alert(
431                         document.getElementById('circStrings').getFormattedString('staff.circ.check_digit.bad', [bc]),
432                         document.getElementById('circStrings').getString('staff.circ.barcode.bad'),
433                         document.getElementById('circStrings').getString('staff.circ.cancel'),
434                         document.getElementById('circStrings').getString('staff.circ.barcode.accept'),
435                         null,
436                         document.getElementById('circStrings').getString('staff.circ.confirm'),
437                         '/xul/server/skin/media/images/bad_barcode.png'
438             ) ) {
439                 return true;
440             } else {
441                 return false;
442             }
443         }
444     },
445
446     'checkin' : function() {
447         var obj = this;
448         try {
449             var barcode = obj.controller.view.checkin_barcode_entry_textbox.value;
450             if (!barcode) return;
451             if (barcode) {
452                 if ( obj.test_barcode(barcode) ) { /* good */ } else { /* bad */ return; }
453             }
454             var backdate = obj.controller.view.checkin_effective_datepicker.value;
455             var auto_print = document.getElementById('checkin_auto_print_slips');
456             if (auto_print) auto_print = auto_print.getAttribute('checked') == 'true';
457             JSAN.use('circ.util');
458             var params = { 
459                 'barcode' : barcode,
460                 'disable_textbox' : function() { 
461                     obj.controller.view.checkin_barcode_entry_textbox.disabled = true; 
462                     obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'true'); 
463                 },
464                 'enable_textbox' : function() { 
465                     obj.controller.view.checkin_barcode_entry_textbox.disabled = false; 
466                     obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
467                 },
468                 'checkin_result' : function(checkin) {
469                     obj.controller.view.checkin_barcode_entry_textbox.disabled = false;
470                     obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
471                     obj.checkin2(checkin,backdate);
472                 }
473             }; 
474             var suppress_holds_and_transits = document.getElementById('suppress_holds_and_transits');
475             if (suppress_holds_and_transits) suppress_holds_and_transits = suppress_holds_and_transits.getAttribute('checked') == 'true';
476             if (suppress_holds_and_transits) params.noop = 1;
477             var amnesty_mode = document.getElementById('amnesty_mode');
478             if (amnesty_mode) amnesty_mode = amnesty_mode.getAttribute('checked') == 'true';
479             if (amnesty_mode) params.void_overdues = 1;
480             circ.util.checkin_via_barcode(
481                 ses(), 
482                 params,
483                 backdate, 
484                 auto_print
485             );
486         } catch(E) {
487             obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin.exception', [E]), E);
488             if (typeof obj.on_failure == 'function') {
489                 obj.on_failure(E);
490             }
491             if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
492                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.external') + '\n');
493                 window.xulG.on_failure(E);
494             } else {
495                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.no_external') + '\n');
496             }
497         }
498
499     },
500
501     'checkin2' : function(checkin,backdate) {
502         var obj = this;
503         try {
504             if (!checkin) return obj.on_failure(); /* circ.util.checkin handles errors and returns null currently */
505             if (checkin.ilsevent == 7010 /* COPY_ALERT_MESSAGE */
506                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
507                 || checkin.ilsevent == -1 /* offline */
508                 || checkin.ilsevent == 1502 /* ASSET_COPY_NOT_FOUND */
509                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
510                 || checkin.ilsevent == 7009 /* CIRC_CLAIMS_RETURNED */ 
511                 || checkin.ilsevent == 7011 /* COPY_STATUS_LOST */ 
512                 || checkin.ilsevent == 7012 /* COPY_STATUS_MISSING */) return obj.on_failure();
513             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 ) } );
514             if (checkin.circ && checkin.circ.checkin_time() == 'now') checkin.circ.checkin_time(backdate);
515             if (document.getElementById('trim_list')) {
516                 var x = document.getElementById('trim_list');
517                 if (x.checked) { obj.list.trim_list = 20; } else { obj.list.trim_list = null; }
518             }
519             obj.list.append(
520                 {
521                     'retrieve_id' : retrieve_id,
522                     'row' : {
523                         'my' : {
524                             'circ' : checkin.circ,
525                             'mbts' : checkin.circ ? checkin.circ.billable_transaction().summary() : null,
526                             'mvr' : checkin.record,
527                             'acp' : checkin.copy,
528                             'au' : checkin.patron,
529                             'status' : checkin.status,
530                             'route_to' : checkin.route_to,
531                             'message' : checkin.message
532                         }
533                     },
534                     'to_top' : true,
535                     'on_append' : function(rparams) { obj.row_map[ rparams.unique_row_counter ] = rparams; },
536                     'on_remove' : function(unique_row_counter) { delete obj.row_map[ unique_row_counter ]; }
537                 }
538             );
539             obj.list.node.view.selection.select(0);
540
541             JSAN.use('util.sound'); var sound = new util.sound(); sound.circ_good();
542
543             if (typeof obj.on_checkin == 'function') {
544                 obj.on_checkin(checkin);
545             }
546             if (typeof window.xulG == 'object' && typeof window.xulG.on_checkin == 'function') {
547                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.external') + '\n');
548                 window.xulG.on_checkin(checkin);
549             } else {
550                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.no_external') + '\n');
551             }
552
553             return true;
554
555         } catch(E) {
556             obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin2.exception', [E]));
557             if (typeof obj.on_failure == 'function') {
558                 obj.on_failure(E);
559             }
560             if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
561                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.external') + '\n');
562                 window.xulG.on_failure(E);
563             } else {
564                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.no_external') + '\n');
565             }
566         }
567
568     },
569
570     'on_checkin' : function() {
571         this.controller.view.checkin_barcode_entry_textbox.disabled = false;
572         this.controller.view.checkin_barcode_entry_textbox.select();
573         this.controller.view.checkin_barcode_entry_textbox.value = '';
574         this.controller.view.checkin_barcode_entry_textbox.focus();
575     },
576
577     'on_failure' : function() {
578         this.controller.view.checkin_barcode_entry_textbox.disabled = false;
579         this.controller.view.checkin_barcode_entry_textbox.select();
580         this.controller.view.checkin_barcode_entry_textbox.focus();
581     },
582     
583     'spawn_copy_editor' : function() {
584
585         var obj = this;
586
587         JSAN.use('util.functional');
588
589         var list = obj.selection_list;
590
591         list = util.functional.map_list(
592             list,
593             function (o) {
594                 return o.copy_id;
595             }
596         );
597
598         JSAN.use('cat.util'); cat.util.spawn_copy_editor( { 'copy_ids' : list, 'edit' : 1 } );
599
600     }
601
602 }
603
604 dump('exiting circ.checkin.js\n');