]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/js/ui/default/opac/staff.js
TPac: Load patron name when placing holds
[working/Evergreen.git] / Open-ILS / web / js / ui / default / opac / staff.js
1 /* staff client integration functions */
2 function debug(msg){dump(msg+'\n')}
3 var eventCache={};
4 function attachEvt(scope, name, action) {
5     if(!eventCache[scope]) eventCache[scope] = {};
6     if(!eventCache[scope][name]) eventCache[scope][name] = [];
7     eventCache[scope][name].push(action);
8 }
9 function runEvt(scope, name) {
10     debug('running event '+scope+':'+name);
11     var args = Array.prototype.slice.call(arguments).slice(2);
12     if(eventCache[scope]) {
13         var evt = eventCache[scope][name];
14         for(var i in evt) {evt[i].apply(evt[i], args);}
15     } 
16 }
17 function staff_hold_usr_input_disabler(input) {
18     document.getElementById("hold_usr_input").disabled =
19         Boolean(Number(input.value));
20     staff_hold_usr_barcode_changed();
21 }
22 function no_hold_submit(event) {
23     if (event.which == 13) {
24         staff_hold_usr_barcode_changed();
25         return false;
26     }
27     return true;
28 }
29 var cur_hold_barcode = undefined;
30 function staff_hold_usr_barcode_changed(isload) {
31     if(typeof xulG != 'undefined' && xulG.get_barcode_and_settings) {
32         var barcode = isload;
33         if(!barcode || barcode === true) barcode = document.getElementById('staff_barcode').value;
34         var only_settings = true;
35         if(!document.getElementById('hold_usr_is_requestor').checked) {
36             if(!isload) {
37                 barcode = document.getElementById('hold_usr_input').value;
38                 only_settings = false;
39             }
40             if(barcode && barcode != '' && !document.getElementById('hold_usr_is_requestor_not').checked)
41                 document.getElementById('hold_usr_is_requestor_not').checked = 'checked';
42         }
43         if(barcode == undefined || barcode == '') {
44             document.getElementById('patron_name').innerHTML = '';
45             return;
46         }
47         if(barcode == cur_hold_barcode)
48             return;
49         // No submitting until we think the barcode is valid
50         document.getElementById('place_hold_submit').disabled = true;
51         var load_info = xulG.get_barcode_and_settings(window, barcode, only_settings);
52         if(load_info == false || load_info == undefined) {
53             document.getElementById('patron_name').innerHTML = '';
54             return;
55         }
56         cur_hold_barcode = load_info.barcode;
57         if(!only_settings || (isload && isload !== true)) document.getElementById('hold_usr_input').value = load_info.barcode; // Safe at this point as we already set cur_hold_barcode
58         if(load_info.settings['opac.default_pickup_location'])
59             document.getElementById('pickup_lib').value = load_info.settings['opac.default_pickup_location'];
60         if(!load_info.settings['opac.default_phone']) load_info.settings['opac.default_phone'] = '';
61         if(!load_info.settings['opac.default_sms_notify']) load_info.settings['opac.default_sms_notify'] = '';
62         if(!load_info.settings['opac.default_sms_carrier']) load_info.settings['opac.default_sms_carrier'] = '';
63         if(load_info.settings['opac.hold_notify'] || load_info.settings['opac.hold_notify'] === '') {
64             var email = load_info.settings['opac.hold_notify'].indexOf('email') > -1;
65             var phone = load_info.settings['opac.hold_notify'].indexOf('phone') > -1;
66             var sms = load_info.settings['opac.hold_notify'].indexOf('sms') > -1;
67             var update_elements = document.getElementsByName('email_notify');
68             for(var i in update_elements) update_elements[i].checked = (email ? 'checked' : '');
69             update_elements = document.getElementsByName('phone_notify_checkbox');
70             for(var i in update_elements) update_elements[i].checked = (phone ? 'checked' : '');
71             update_elements = document.getElementsByName('sms_notify_checkbox');
72             for(var i in update_elements) update_elements[i].checked = (sms ? 'checked' : '');
73         }
74         update_elements = document.getElementsByName('phone_notify');
75         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_phone'];
76         update_elements = document.getElementsByName('sms_notify');
77         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_notify'];
78         update_elements = document.getElementsByName('sms_carrier');
79         for(var i in update_elements) update_elements[i].value = load_info.settings['opac.default_sms_carrier'];
80         update_elements = document.getElementsByName('email_notify');
81         for(var i in update_elements) {
82             update_elements[i].disabled = (load_info.user_email ? false : true);
83             if(update_elements[i].disabled) update_elements[i].checked = false;
84         }
85         update_elements = document.getElementsByName('email_address');
86         for(var i in update_elements) update_elements[i].textContent = load_info.user_email;
87         if(!document.getElementById('hold_usr_is_requestor').checked && !only_settings) {
88             document.getElementById('patron_name').innerHTML = load_info.patron_name;
89         }
90         // Ok, now we can allow submitting again
91         document.getElementById('place_hold_submit').disabled = false;
92     }
93 }
94 window.onload = function() {
95     // record details page events
96     var rec = location.href.match(/\/opac\/record\/(\d+)/);
97     if(rec && rec[1]) { 
98         runEvt('rdetail', 'recordRetrieved', rec[1]); 
99         runEvt('rdetail', 'MFHDDrawn');
100     }
101     if(location.href.match(/place_hold/)) {
102         if(xulG.patron_barcode) {
103             staff_hold_usr_barcode_changed(xulG.patron_barcode);
104         } else {
105             staff_hold_usr_barcode_changed(true);
106         }
107     }
108 }
109
110 function rdetail_next_prev_actions(index, count, prev, next, start, end, results) {
111     /*  we mostly get the relative URL from the template:  recid?query_args...
112         replace the recid and args on location.href to get the new URL  */
113     function fullurl(url) {
114         if (url.match(/eg\/opac\/results/)) {
115             return location.href.replace(/eg\/opac\/.+$/, url);
116         } else {
117             return location.href.replace(/\/\d+\??.*/, '/' + url);
118         }
119     }
120
121     if (index > 0) {
122         if(prev) 
123             window.rdetailPrev = function() { location.href = fullurl(prev); }
124         if(start) 
125             window.rdetailStart = function() { location.href = fullurl(start); }
126     }
127
128     if (index < count - 1) {
129         if(next) 
130             window.rdetailNext = function() { location.href = fullurl(next); }
131         if(end) 
132             window.rdetailEnd = function() { location.href = fullurl(end); }
133     }
134
135     window.rdetailBackToResults = function() { location.href = fullurl(results); };
136
137     ol = window.onload;
138     window.onload = function() {
139         if(ol) ol(); 
140         runEvt('rdetail', 'nextPrevDrawn', Number(index), Number(count)); 
141     };
142 }