]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/checkin.js
trying to get the splitter in the patron displays to persist their positions again...
[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_patron_tab({},{'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(), 
305                 { 
306                     'barcode' : barcode,
307                                         'disable_textbox' : function() { 
308                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = true; 
309                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'true'); 
310                                         },
311                                         'enable_textbox' : function() { 
312                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = false; 
313                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
314                                         },
315                                         'checkin_result' : function(checkin) {
316                                                 obj.controller.view.checkin_barcode_entry_textbox.disabled = false;
317                                                 obj.controller.view.cmd_checkin_submit_barcode.setAttribute('disabled', 'false'); 
318                                                 obj.checkin2(checkin,backdate);
319                                         }
320                 }, 
321                 backdate, 
322                 auto_print
323                         );
324                 } catch(E) {
325                         obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin.exception', [E]));
326                         if (typeof obj.on_failure == 'function') {
327                                 obj.on_failure(E);
328                         }
329                         if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
330                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.external') + '\n');
331                                 window.xulG.on_failure(E);
332                         } else {
333                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.util.checkin.exception.no_external') + '\n');
334                         }
335                 }
336
337         },
338
339         'checkin2' : function(checkin,backdate) {
340                 var obj = this;
341                 try {
342                         if (!checkin) return obj.on_failure(); /* circ.util.checkin handles errors and returns null currently */
343                         if (checkin.ilsevent == 7010 /* COPY_ALERT_MESSAGE */
344                                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
345                                 || checkin.ilsevent == -1 /* offline */
346                                 || checkin.ilsevent == 1502 /* ASSET_COPY_NOT_FOUND */
347                                 || checkin.ilsevent == 1203 /* COPY_BAD_STATUS */
348                                 || checkin.ilsevent == 7009 /* CIRC_CLAIMS_RETURNED */ 
349                                 || checkin.ilsevent == 7011 /* COPY_STATUS_LOST */ 
350                                 || checkin.ilsevent == 7012 /* COPY_STATUS_MISSING */) return obj.on_failure();
351                         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 ) } );
352                         if (checkin.circ && checkin.circ.checkin_time() == 'now') checkin.circ.checkin_time(backdate);
353                         if (document.getElementById('trim_list')) {
354                                 var x = document.getElementById('trim_list');
355                                 if (x.checked) { obj.list.trim_list = 20; } else { obj.list.trim_list = null; }
356                         }
357                         obj.list.append(
358                                 {
359                                         'retrieve_id' : retrieve_id,
360                                         'row' : {
361                                                 'my' : {
362                                                         'circ' : checkin.circ,
363                                                         'mvr' : checkin.record,
364                                                         'acp' : checkin.copy,
365                                                         'status' : checkin.status,
366                                                         'route_to' : checkin.route_to,
367                                                         'message' : checkin.message
368                                                 }
369                                         },
370                                         'to_top' : true
371                                 //I could override map_row_to_column here
372                                 }
373                         );
374                         obj.list.node.view.selection.select(0);
375
376                         JSAN.use('util.sound'); var sound = new util.sound(); sound.circ_good();
377
378                         if (typeof obj.on_checkin == 'function') {
379                                 obj.on_checkin(checkin);
380                         }
381                         if (typeof window.xulG == 'object' && typeof window.xulG.on_checkin == 'function') {
382                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.external') + '\n');
383                                 window.xulG.on_checkin(checkin);
384                         } else {
385                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin.exception.no_external') + '\n');
386                         }
387
388                         return true;
389
390                 } catch(E) {
391                         obj.error.standard_unexpected_error_alert(document.getElementById('circStrings').getFormattedString('staff.circ.checkin2.exception', [E]));
392                         if (typeof obj.on_failure == 'function') {
393                                 obj.on_failure(E);
394                         }
395                         if (typeof window.xulG == 'object' && typeof window.xulG.on_failure == 'function') {
396                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.external') + '\n');
397                                 window.xulG.on_failure(E);
398                         } else {
399                                 obj.error.sdump('D_CIRC', document.getElementById('circStrings').getString('staff.circ.checkin2.exception.no_external') + '\n');
400                         }
401                 }
402
403         },
404
405         'on_checkin' : function() {
406                 this.controller.view.checkin_barcode_entry_textbox.disabled = false;
407                 this.controller.view.checkin_barcode_entry_textbox.select();
408                 this.controller.view.checkin_barcode_entry_textbox.value = '';
409                 this.controller.view.checkin_barcode_entry_textbox.focus();
410         },
411
412         'on_failure' : function() {
413                 this.controller.view.checkin_barcode_entry_textbox.disabled = false;
414                 this.controller.view.checkin_barcode_entry_textbox.select();
415                 this.controller.view.checkin_barcode_entry_textbox.focus();
416         },
417         
418         'spawn_copy_editor' : function() {
419
420                 var obj = this;
421
422                 JSAN.use('util.functional');
423
424                 var list = obj.selection_list;
425
426                 list = util.functional.map_list(
427                         list,
428                         function (o) {
429                                 return o.copy_id;
430                         }
431                 );
432
433                 JSAN.use('cat.util'); cat.util.spawn_copy_editor( { 'copy_ids' : list, 'edit' : 1 } );
434
435         }
436
437 }
438
439 dump('exiting circ.checkin.js\n');