|
Lines 381-387
Link Here
|
| 381 |
<td><input type="text" name="maxonsiteissueqty" size="3" value="[% default_maxonsiteissueqty | html %]"/></td> |
381 |
<td><input type="text" name="maxonsiteissueqty" size="3" value="[% default_maxonsiteissueqty | html %]"/></td> |
| 382 |
<td> |
382 |
<td> |
| 383 |
[% SET rule_value = CirculationRules.Get( current_branch, '*', undef, 'max_holds' ) %] |
383 |
[% SET rule_value = CirculationRules.Get( current_branch, '*', undef, 'max_holds' ) %] |
| 384 |
<input name="max_holds" size="3" value="[% rule_value %]" /> |
384 |
<input name="max_holds" size="3" value="[% rule_value | html %]" /> |
| 385 |
</td> |
385 |
</td> |
| 386 |
<td> |
386 |
<td> |
| 387 |
<select name="holdallowed"> |
387 |
<select name="holdallowed"> |
|
Lines 521-527
Link Here
|
| 521 |
<td> |
521 |
<td> |
| 522 |
[% SET rule_value = CirculationRules.Get( branch_cat_rule_loo.branchcode || '*', branch_cat_rule_loo.categorycode, branch_cat_rule_loo.itemtype, 'max_holds' ) %] |
522 |
[% SET rule_value = CirculationRules.Get( branch_cat_rule_loo.branchcode || '*', branch_cat_rule_loo.categorycode, branch_cat_rule_loo.itemtype, 'max_holds' ) %] |
| 523 |
[% IF rule_value.defined && rule_value != '' %] |
523 |
[% IF rule_value.defined && rule_value != '' %] |
| 524 |
[% rule_value %] |
524 |
[% rule_value | html %] |
| 525 |
[% ELSE %] |
525 |
[% ELSE %] |
| 526 |
Unlimited |
526 |
Unlimited |
| 527 |
[% END %] |
527 |
[% END %] |
| 528 |
- |
|
|