]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/circ/offline_renew.js
a button for entering barcodes, and different wording for saving transactions
[Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / circ / offline_renew.js
1 function my_init() {
2         try {
3                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
4                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
5                 JSAN.errorLevel = "die"; // none, warn, or die
6                 JSAN.addRepository('..');
7                 JSAN.use('util.error'); g.error = new util.error();
8                 g.error.sdump('D_TRACE','my_init() for offline_renew.xul');
9
10                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
11                         try { window.xulG.set_tab_name('Standalone'); } catch(E) { alert(E); }
12                 }
13
14                 JSAN.use('util.list'); g.list = new util.list('checkout_list');
15                 g.list.init( {
16                         'columns' : [
17                                 { 
18                                         'id' : 'timestamp', 
19                                         'label' : 'Timestamp', 
20                                         'flex' : 1, 'primary' : false, 'hidden' : true, 
21                                         'render' : 'my.timestamp' 
22                                 },
23                                 { 
24                                         'id' : 'checkout_time', 
25                                         'label' : 'Check Out Time', 
26                                         'flex' : 1, 'primary' : false, 'hidden' : true, 
27                                         'render' : 'my.checkout_time' 
28                                 },
29                                 { 
30                                         'id' : 'type', 
31                                         'label' : 'Transaction Type', 
32                                         'flex' : 1, 'primary' : false, 'hidden' : true, 
33                                         'render' : 'my.type' 
34                                 },
35                                 { 
36                                         'id' : 'patron_barcode', 
37                                         'label' : 'Patron Barcode', 
38                                         'flex' : 1, 'primary' : false, 'hidden' : true, 
39                                         'render' : 'my.patron_barcode' 
40                                 },
41                                 { 
42                                         'id' : 'barcode', 
43                                         'label' : 'Item Barcode', 
44                                         'flex' : 2, 'primary' : true, 'hidden' : false, 
45                                         'render' : 'my.barcode' 
46                                 },
47                                 { 
48                                         'id' : 'due_date', 
49                                         'label' : 'Due Date', 
50                                         'flex' : 1, 'primary' : false, 'hidden' : false, 
51                                         'render' : 'my.due_date' 
52                                 },
53                         ],
54                         'map_row_to_column' : function(row,col) {
55                                 // row contains { 'my' : { 'barcode' : xxx, 'duedate' : xxx } }
56                                 // col contains one of the objects listed above in columns
57
58                                 var my = row.my;
59                                 var value;
60                                 try {
61                                         value = eval( col.render );
62                                         if (typeof value == 'undefined') value = '';
63
64                                 } catch(E) {
65                                         JSAN.use('util.error'); var error = new util.error();
66                                         error.sdump('D_WARN','map_row_to_column: ' + E);
67                                         value = '???';
68                                 }
69                                 return value;
70                         }
71                 } );
72
73                 JSAN.use('util.date');
74                 var today = new Date();
75                 var todayPlus = new Date(); todayPlus.setTime( today.getTime() + 24*60*60*1000*14 );
76                 todayPlus = util.date.formatted_date(todayPlus,"%F");
77
78                 $('duedate').setAttribute('value',todayPlus);
79                 $('duedate').addEventListener('change',check_date,false);
80
81                 $('p_barcode').addEventListener('keypress',handle_keypress,false);
82                 $('p_barcode').focus(); 
83
84                 $('i_barcode').addEventListener('keypress',handle_keypress,false);
85                 $('enter').addEventListener('command',handle_enter,false);
86
87                 $('duedate_menu').addEventListener('command',handle_duedate_menu,false);
88
89                 $('submit').addEventListener('command',next_patron,false);
90
91         } catch(E) {
92                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
93                         "system administrator or software developer the following:\ncirc/offline_renew.xul\n" + E + '\n';
94                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
95                 alert(err_msg);
96         }
97 }
98
99 function $(id) { return document.getElementById(id); }
100
101 function handle_keypress(ev) {
102         if ( (! ev.keyCode) || (ev.keyCode != 13) ) return;
103         switch(ev.target) {
104                 case $('p_barcode') : $('i_barcode').focus(); break;
105                 case $('i_barcode') : append_to_list('barcode'); break;
106                 default: break;
107         }
108 }
109
110 function handle_enter(ev) {
111         append_to_list('barcode');
112 }
113
114 function handle_duedate_menu(ev) {
115         if (ev.target.value=='0') return; 
116         JSAN.use('util.date'); 
117         var today = new Date(); 
118         var todayPlus = new Date(); 
119         todayPlus.setTime( today.getTime() + 24*60*60*1000*ev.target.value ); 
120         todayPlus = util.date.formatted_date(todayPlus,'%F'); 
121         $('duedate').setAttribute('value',todayPlus); 
122         $('duedate').value = todayPlus;
123 }
124
125 function check_date(ev) {
126         JSAN.use('util.date');
127         try {
128                 if (! util.date.check('YYYY-MM-DD',ev.target.value) ) { throw('Invalid Date'); }
129                 if (util.date.check_past('YYYY-MM-DD',ev.target.value) ) { throw('Due date needs to be after today.'); }
130                 if ( util.date.formatted_date(new Date(),'%F') == ev.target.value) { throw('Due date needs to be after today.'); }
131         } catch(E) {
132                 alert(E);
133                 var today = new Date();
134                 var todayPlus = new Date(); todayPlus.setTime( today.getTime() + 24*60*60*1000*14 );
135                 todayPlus = util.date.formatted_date(todayPlus,"%F");
136                 ev.target.value = todayPlus;
137         }
138 }
139
140 function append_to_list(checkout_type,count) {
141
142         try {
143
144                 var my = {};
145
146                 my.type = 'renew';
147                 my.timestamp = new Date().getTime();
148                 my.checkout_time = util.date.formatted_date(new Date(),"%F %H:%M:%s");
149
150                 var p_barcode = $('p_barcode').value;
151                 if (! p_barcode) {
152                         /* Not strictly necessary for a renewal
153                         alert('Please enter a patron barcode first.');
154                         return;
155                         */
156                 } else {
157
158                         // Need to validate patron barcode against bad patron list
159                         my.patron_barcode = p_barcode;
160                 }
161
162                 var due_date = $('duedate').value; // Need to validate this
163                 my.due_date = due_date;
164
165                 var i_barcode = $('i_barcode').value;
166                 switch(checkout_type) {
167                         case 'barcode' : 
168                                 if (! i_barcode) return; 
169                                 
170                                 var rows = g.list.dump_with_keys();
171                                 for (var i = 0; i < rows.length; i++) {
172                                         if (rows[i].barcode == i_barcode) {
173                                                 alert('This barcode has already been scanned.');
174                                                 return;
175                                         }
176                                 }
177
178                                 my.barcode = i_barcode; 
179                         break;
180                         default: alert("Please report that this happened."); break;
181                 }
182         
183                 g.list.append( { 'row' : { 'my' : my } } );
184
185                 var x = $('i_barcode'); x.value = ''; x.focus();
186
187         } catch(E) {
188
189                 dump(E+'\n'); alert(E);
190
191         }
192 }
193
194 function next_patron() {
195         try {
196                 JSAN.use('util.file'); var file = new util.file('pending_xacts');
197                 var rows = g.list.dump_with_keys();
198                 for (var i = 0; i < rows.length; i++) {
199                         var row = rows[i];
200                         if (row.patron_barcode == '') {
201                                 delete(row.patron_barcode);
202                         }
203                         file.append_object(row);
204                 }
205                 file.close();
206                 g.list.clear();
207                 
208                 var x;
209                 x = $('i_barcode'); x.value = '';
210                 x = $('p_barcode'); x.value = ''; x.focus();
211
212         } catch(E) {
213                 dump(E+'\n'); alert(E);
214         }
215 }