]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin.js
focus on textbox after list action
[working/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
18         'init' : function( params ) {
19
20                 var obj = this;
21
22                 JSAN.use('circ.util');
23                 var columns = circ.util.columns( 
24                         { 
25                                 'barcode' : { 'hidden' : false },
26                                 'title' : { 'hidden' : false },
27                                 'location' : { 'hidden' : false },
28                                 'call_number' : { '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                 );
38
39                 JSAN.use('util.list'); obj.list = new util.list('checkin_list');
40                 obj.list.init(
41                         {
42                                 'columns' : columns,
43                                 'map_row_to_columns' : circ.util.std_map_row_to_columns(),
44                                 'on_select' : function(ev) {
45                                         try {
46                                                 JSAN.use('util.functional');
47                                                 var sel = obj.list.retrieve_selection();
48                                                 obj.selection_list = util.functional.map_list(
49                                                         sel,
50                                                         function(o) { return JSON2js(o.getAttribute('retrieve_id')); }
51                                                 );
52                                                 obj.error.sdump('D_TRACE', 'circ/copy_status: selection list = ' + js2JSON(obj.selection_list) );
53                                                 if (obj.selection_list.length == 0) {
54                                                         obj.controller.view.sel_edit.setAttribute('disabled','true');
55                                                         obj.controller.view.sel_opac.setAttribute('disabled','true');
56                                                         obj.controller.view.sel_patron.setAttribute('disabled','true');
57                                                         obj.controller.view.sel_last_patron.setAttribute('disabled','true');
58                                                         obj.controller.view.sel_copy_details.setAttribute('disabled','true');
59                                                         obj.controller.view.sel_bucket.setAttribute('disabled','true');
60                                                         obj.controller.view.sel_spine.setAttribute('disabled','true');
61                                                         obj.controller.view.sel_transit_abort.setAttribute('disabled','true');
62                                                         obj.controller.view.sel_clip.setAttribute('disabled','true');
63                                                         obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','true');
64                                                 } else {
65                                                         obj.controller.view.sel_edit.setAttribute('disabled','false');
66                                                         obj.controller.view.sel_opac.setAttribute('disabled','false');
67                                                         obj.controller.view.sel_patron.setAttribute('disabled','false');
68                                                         obj.controller.view.sel_last_patron.setAttribute('disabled','false');
69                                                         obj.controller.view.sel_copy_details.setAttribute('disabled','false');
70                                                         obj.controller.view.sel_bucket.setAttribute('disabled','false');
71                                                         obj.controller.view.sel_spine.setAttribute('disabled','false');
72                                                         obj.controller.view.sel_transit_abort.setAttribute('disabled','false');
73                                                         obj.controller.view.sel_clip.setAttribute('disabled','false');
74                                                         obj.controller.view.sel_mark_items_damaged.setAttribute('disabled','false');
75                                                 }
76                                         } catch(E) {
77                                                 alert('FIXME: ' + E);
78                                         }
79                                 }
80                         }
81                 );
82                 
83                 JSAN.use('util.controller'); obj.controller = new util.controller();
84                 obj.controller.init(
85                         {
86                                 'control_map' : {
87                                         'save_columns' : [ [ 'command' ], function() { obj.list.save_columns(); } ],
88                                         'sel_clip' : [
89                                                 ['command'],
90                                                 function() { 
91                             obj.list.clipboard(); 
92                             obj.controller.view.checkin_barcode_entry_textbox.focus();
93                         }
94                                         ],
95                                         'sel_edit' : [
96                                                 ['command'],
97                                                 function() {
98                                                         try {
99                                                                 obj.spawn_copy_editor();
100                                                         } catch(E) {
101                                                                 alert(E);
102                                                         }
103                                                 }
104                                         ],
105                                         'sel_spine' : [
106                                                 ['command'],
107                                                 function() {
108                                                         JSAN.use('cat.util');
109                                                         cat.util.spawn_spine_editor(obj.selection_list);
110                                                 }
111                                         ],
112                                         'sel_opac' : [
113                                                 ['command'],
114                                                 function() {
115                                                         JSAN.use('cat.util');
116                                                         cat.util.show_in_opac(obj.selection_list);
117                                                 }
118                                         ],
119                                         'sel_transit_abort' : [
120                                                 ['command'],
121                                                 function() {
122                                                         JSAN.use('circ.util');
123                                                         circ.util.abort_transits(obj.selection_list);
124                                                 }
125                                         ],
126                                         'sel_patron' : [
127                                                 ['command'],
128                                                 function() {
129                                                         JSAN.use('circ.util');
130                                                         circ.util.show_last_few_circs(obj.selection_list);
131                                                 }
132                                         ],
133                                         'sel_last_patron' : [
134                                                 ['command'],
135                                                 function() {
136                                                         var patrons = {};
137                                                         for (var i = 0; i < obj.selection_list.length; i++) {
138                                                                 var circs = obj.network.simple_request('FM_CIRC_RETRIEVE_VIA_COPY',[ses(),obj.selection_list[i].copy_id,1]);
139                                                                 if (circs.length > 0) {
140                                                                         patrons[circs[0].usr()] = 1;
141                                                                 } else {
142                                                                         alert(document.getElementById('circStrings').getFormattedString('staff.circ.item_no_circs', [obj.selection_list[i].barcode]));
143                                                                 }
144                                                         }
145                                                         for (var i in patrons) {
146                                                                 xulG.new_tab(urls.XUL_PATRON_DISPLAY,{},{'id' : i});
147                                                         }
148                                                 }
149                                         ],
150                                         'sel_copy_details' : [
151                                                 ['command'],
152                                                 function() {
153                                                         JSAN.use('circ.util');
154                                                         for (var i = 0; i < obj.selection_list.length; i++) {
155                                                                 circ.util.show_copy_details( obj.selection_list[i].copy_id );
156                                                         }
157                                                 }
158                                         ],
159                                         'sel_mark_items_damaged' : [
160                                                 ['command'],
161                                                 function() {
162                                                         var funcs = [];
163                                                         JSAN.use('cat.util'); JSAN.use('util.functional');
164                                                         cat.util.mark_item_damaged( util.functional.map_list( obj.selection_list, function(o) { return o.copy_id; } ) );
165                                                 }
166                                         ],
167                                         'sel_bucket' : [
168                                                 ['command'],
169                                                 function() {
170                                                         JSAN.use('cat.util');
171                                                         cat.util.add_copies_to_bucket(obj.selection_list);
172                                                 }
173                                         ],
174                                         'checkin_barcode_entry_textbox' : [
175                                                 ['keypress'],
176                                                 function(ev) {
177                                                         if (ev.keyCode && ev.keyCode == 13) {
178                                                                 obj.checkin();
179                                                         }
180                                                 }
181                                         ],
182                                         'checkin_effective_date_label' : [
183                                                 ['render'],
184                                                 function(e) {
185                                                         return function() {
186                                                                 obj.controller.view.checkin_effective_date_textbox.value =
187                                                                         util.date.formatted_date(new Date(),'%F');
188                                                         };
189                                                 }
190                                         ],
191                                         'checkin_effective_date_textbox' : [
192                                                 ['change'],
193                                                 function(ev) {
194                                                         if (ev.target.nodeName == 'textbox') {
195                                                                 try {
196                                                                         var flag = false;
197                                                                         var darray = ev.target.value.split('-');
198                                                                         var year = darray[0]; var month = darray[1]; var day = darray[2]; 
199                                                                         if ( (!year) || (year.length != 4) || (!Number(year)) ) flag = true;
200                                                                         if ( (!month) || (month.length !=2) || (!Number(month)) ) flag = true;
201                                                                         if ( (!day) || (day.length !=2) || (!Number(day)) ) flag = true;
202                                                                         if (flag) {
203                                                                                 throw('invalid date format');
204                                                                         }
205                                                                         var d = new Date( year, month - 1, day );
206                                                                         if (d.toString() == 'Invalid Date') throw(document.getElementById('circStrings').getString('staff.circ.invalid_date'));
207                                                                         if ( d > new Date() ) throw(document.getElementById('circStrings').getString('staff.circ.future_date'));
208                                                                         ev.target.value = util.date.formatted_date(d,'%F');
209                                                                         var x = document.getElementById('background');
210                                                                         if (x) {
211                                                                                 if ( ev.target.value == util.date.formatted_date(new Date(),'%F') ) {
212                                                                                         x.setAttribute('style','background-color: green');
213                                                                                         document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getString('staff.circ.process_item'));
214                                                                                 } else {
215                                                                                         x.setAttribute('style','background-color: red');
216                                                                                         document.getElementById('background-text').setAttribute('value',document.getElementById('circStrings').getFormattedString('staff.circ.backdated_checkin', [ev.target.value]));
217                                                                                 }
218                                                                         }
219
220                                                                 } catch(E) {
221                                                                         dump('checkin:effective_date: ' + E + '\n');
222                                                                         alert(document.getElementById('circStrings').getFormattedString('staff.circ.backdate.exception', [E]));
223                                                                         ev.target.value = util.date.formatted_date(new Date(),'%F');
224                                                                 }
225                                                         }
226                                                 }
227                                         ],
228                                         'cmd_broken' : [
229                                                 ['command'],
230                                                 function() { alert(document.getElementById('circStrings').getString('staff.circ.unimplemented')); }
231                                         ],
232                                         'cmd_checkin_submit_barcode' : [
233                                                 ['command'],
234                                                 function() {
235                                                         obj.checkin();
236                                                 }
237                                         ],
238                                         'cmd_checkin_print' : [
239                                                 ['command'],
240                                                 function() {
241                                                         var p = { 
242                                                                 'template' : 'checkin'
243                                                         };
244                                                         obj.list.print(p);
245                                                 }
246                                         ],
247                                         'cmd_csv_to_clipboard' : [ ['command'], function() { 
248                         obj.list.dump_csv_to_clipboard(); 
249                         obj.controller.view.checkin_barcode_entry_textbox.focus();
250                     } ],
251                                         'cmd_csv_to_printer' : [ ['command'], function() { 
252                         obj.list.dump_csv_to_printer(); 
253                         obj.controller.view.checkin_barcode_entry_textbox.focus();
254                     } ],
255                                         'cmd_csv_to_file' : [ ['command'], function() { 
256                         obj.list.dump_csv_to_file( { 'defaultFileName' : 'checked_in.txt' } ); 
257                         obj.controller.view.checkin_barcode_entry_textbox.focus();
258                     } ]
259                                 }
260                         }
261                 );
262                 this.controller.render();
263                 this.controller.view.checkin_barcode_entry_textbox.focus();
264
265         },
266
267         'test_barcode' : function(bc) {
268                 var obj = this;
269                 var x = document.getElementById('strict_barcode');
270                 if (x && x.checked != true) return true;
271                 var good = util.barcode.check(bc);
272                 if (good) {
273                         return true;
274                 } else {
275                         if ( 1 == obj.error.yns_alert(
276                                                 document.getElementById('circStrings').getFormattedString('staff.circ.check_digit.bad', [bc]),
277                                                 document.getElementById('circStrings').getString('staff.circ.barcode.bad'),
278                                                 document.getElementById('circStrings').getString('staff.circ.cancel'),
279                                                 document.getElementById('circStrings').getString('staff.circ.barcode.accept'),
280                                                 null,
281                                                 document.getElementById('circStrings').getString('staff.circ.confirm'),
282                                                 '/xul/server/skin/media/images/bad_barcode.png'
283                         ) ) {
284                                 return true;
285                         } else {
286                                 return false;
287                         }
288                 }
289         },
290
291         'checkin' : function() {
292                 var obj = this;
293                 try {
294                         var barcode = obj.controller.view.checkin_barcode_entry_textbox.value;
295                         if (!barcode) return;
296                         if (barcode) {
297                                 if ( obj.test_barcode(barcode) ) { /* good */ } else { /* bad */ return; }
298                         }
299                         var backdate = obj.controller.view.checkin_effective_date_textbox.value;
300                         var auto_print = document.getElementById('checkin_auto');
301                         if (auto_print) auto_print = auto_print.checked;
302                         JSAN.use('circ.util');
303                         circ.util.checkin_via_barcode(
304                                 ses(), { 'barcode' : barcode }, backdate, auto_print, {
305                                         'disable_textbox' : function() { 
306                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = true; 
307                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'true'); 
308                                         },
309                                         'enable_textbox' : function() { 
310                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = false; 
311                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
312                                         },
313                                         'checkin_result' : function(checkin) {
314                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = false;
315                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
316                                                 obj.checkin2(checkin,backdate);
317                                         }
318                                 }
319                         );
320                 } catch(E) {
321                         obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin.exception', [E]));
322                         if (typeof obj.on_failure == 'function') {
323                                 obj.on_failure(E);
324                         }
325                         if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
326                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.external') + '\n');
327                                 window.xulG.on_failure(E);
328                         } else {
329                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.no_external') + '\n');
330                         }
331                 }
332
333         },
334
335         'checkin2' : function(checkin,backdate) {
336                 var obj = this;
337                 try {
338                         if (!checkin) return obj.on_failure(); /* circ.util.checkin handles errors and returns null currently */
339                         if (checkin.ilsevent == 7010 /* COPY_ALERT_MESSAGE */
340                                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
341                                 || checkin.ilsevent == -1 /* offline */
342                                 || checkin.ilsevent == 1502 /* ASSET_COPY_NOT_FOUND */
343                                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
344                                 || checkin.ilsevent == 7009 /* CIRC_CLAIMS_RETURNED */ 
345                                 || checkin.ilsevent == 7011 /* COPY_STATUS_LOST */ 
346                                 || checkin.ilsevent == 7012 /* COPY_STATUS_MISSING */) return obj.on_failure();
347                         var retrieve_id = js2JSON( { '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 ) } );
348                         if (checkin.circ && checkin.circ.checkin_time() == 'now') checkin.circ.checkin_time(backdate);
349                         if (document.getElementById('trim_list')) {
350                                 var x = document.getElementById('trim_list');
351                                 if (x.checked) { obj.list.trim_list = 20; } else { obj.list.trim_list = null; }
352                         }
353                         obj.list.append(
354                                 {
355                                         'retrieve_id' : retrieve_id,
356                                         'row' : {
357                                                 'my' : {
358                                                         'circ' : checkin.circ,
359                                                         'mvr' : checkin.record,
360                                                         'acp' : checkin.copy,
361                                                         'status' : checkin.status,
362                                                         'route_to' : checkin.route_to,
363                                                         'message' : checkin.message
364                                                 }
365                                         },
366                                         'to_top' : true
367                                 //I could override map_row_to_column here
368                                 }
369                         );
370                         obj.list.node.view.selection.select(0);
371
372                         JSAN.use('util.sound'); var sound = new util.sound(); sound.circ_good();
373
374                         if (typeof obj.on_checkin == 'function') {
375                                 obj.on_checkin(checkin);
376                         }
377                         if (typeof window.xulG == 'object' && typeof window.xulG.on_checkin == 'function') {
378                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.external') + '\n');
379                                 window.xulG.on_checkin(checkin);
380                         } else {
381                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.no_external') + '\n');
382                         }
383
384                         return true;
385
386                 } catch(E) {
387                         obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin2.exception', [E]));
388                         if (typeof obj.on_failure == 'function') {
389                                 obj.on_failure(E);
390                         }
391                         if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
392                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.external') + '\n');
393                                 window.xulG.on_failure(E);
394                         } else {
395                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.no_external') + '\n');
396                         }
397                 }
398
399         },
400
401         'on_checkin' : function() {
402                 this.controller.view.checkin_barcode_entry_textbox.disabled = false;
403                 this.controller.view.checkin_barcode_entry_textbox.select();
404                 this.controller.view.checkin_barcode_entry_textbox.value = '';
405                 this.controller.view.checkin_barcode_entry_textbox.focus();
406         },
407
408         'on_failure' : function() {
409                 this.controller.view.checkin_barcode_entry_textbox.disabled = false;
410                 this.controller.view.checkin_barcode_entry_textbox.select();
411                 this.controller.view.checkin_barcode_entry_textbox.focus();
412         },
413         
414         'spawn_copy_editor' : function() {
415
416                 var obj = this;
417
418                 JSAN.use('util.functional');
419
420                 var list = obj.selection_list;
421
422                 list = util.functional.map_list(
423                         list,
424                         function (o) {
425                                 return o.copy_id;
426                         }
427                 );
428
429                 JSAN.use('cat.util'); cat.util.spawn_copy_editor( { 'copy_ids' : list, 'edit' : 1 } );
430
431         }
432
433 }
434
435 dump('exiting circ.checkin.js\n');