]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/javascript/backend/circ/circ_permit_hold.js
3310db2c0f33b222c2705652487e0bc35cf143dd
[Evergreen.git] / Open-ILS / src / javascript / backend / circ / circ_permit_hold.js
1 function go() {
2
3 load_lib('circ/circ_lib.js');
4 log_vars('circ_permit_hold');
5
6 if( isTrue(patron.barred) ) 
7         result.events.push('PATRON_BARRED');
8
9 if( isTrue(copy.ref) ) 
10         result.events.push('ITEM_NOT_HOLDABLE');
11
12 /* projected medium 
13         this needs to be expanded to check circ_modifiers as well
14 */
15
16 var mod = (copy.circ_modifier) ? copy.circ_modifier.toLowerCase() : "";
17
18 log_info("circ-modifier = "+mod);
19
20
21 if( mod == 'bestsellernh' )
22         result.events.push('ITEM_NOT_HOLDABLE');
23
24 if( ( getMARCItemType() == 'g' || 
25                 mod == 'audiobook' || 
26                 mod == 'av' || 
27                 mod == 'cd' || 
28                 mod == 'dvd' || 
29                 mod == 'video' ) &&
30
31                 !isOrgDescendent(copy.circ_lib.shortname, patron.home_ou.id) ) {
32
33         log_info("This patron may not place a hold on the selected item");
34
35         result.events.push('ITEM_NOT_HOLDABLE');
36 }
37
38
39 } go();
40