----------------------------------------------------------------------------- */
/* statelib has some special circ rules */
-
if( isOrgDescendent('STATELIB', copy.circ_lib.id) ) {
-
- result.durationRule = '35_days_1_renew';
- result.recurringFinesRule = "10_cent_per_day";
- result.maxFine = "overdue_mid";
-
- /* reference, microfiche, microfilm */
- if( isTrue(copy.ref) ||
- itemForm == 'a' ||
- itemForm == 'b' ) {
-
- result.durationRule = '14_days_2_renew';
- }
+ if(isTrue(copy.ref))
+ result.durationRule = '14_days_2_renew';
}
log_info("circ-modifier = "+mod);
-
if( mod == 'bestsellernh' )
result.events.push('ITEM_NOT_HOLDABLE');
var marcItemType = getMARCItemType();
-var isAnc;
+/* some STATELIB items can have holds placed on them from anywhere */
+if( isOrgDescendent('STATELIB', copy.circ_lib.id) ) {
+ if( mod == 'dvd-long' ||
+ mod == 'video-long' ||
+ mod == 'audiobook' ||
+ mod == 'microform' ) {
+ log_info("STATELIB 'AV' item is holdable");
+ return;
+ }
+}
+
+
+var isAnc;
if( ( marcItemType == 'g' ||
marcItemType == 'i' ||
marcItemType == 'j' ||