Lines 105-110
Link Here
|
105 |
<th>Max. suspension duration (day)</th> |
105 |
<th>Max. suspension duration (day)</th> |
106 |
<th>Suspension charging interval</th> |
106 |
<th>Suspension charging interval</th> |
107 |
<th>Renewals allowed (count)</th> |
107 |
<th>Renewals allowed (count)</th> |
|
|
108 |
[% IF Koha.Preference('UnseenRenewals') %] |
109 |
<th>Unseen renewals allowed (count)</th> |
110 |
[% END %] |
108 |
<th>Renewal period</th> |
111 |
<th>Renewal period</th> |
109 |
<th>No renewal before</th> |
112 |
<th>No renewal before</th> |
110 |
<th>Automatic renewal</th> |
113 |
<th>Automatic renewal</th> |
Lines 141-146
Link Here
|
141 |
[% SET maxsuspensiondays = CirculationRules.Search( branchcode, c, i, 'maxsuspensiondays' ) %] |
144 |
[% SET maxsuspensiondays = CirculationRules.Search( branchcode, c, i, 'maxsuspensiondays' ) %] |
142 |
[% SET suspension_chargeperiod = CirculationRules.Search( branchcode, c, i, 'suspension_chargeperiod' ) %] |
145 |
[% SET suspension_chargeperiod = CirculationRules.Search( branchcode, c, i, 'suspension_chargeperiod' ) %] |
143 |
[% SET renewalsallowed = CirculationRules.Search( branchcode, c, i, 'renewalsallowed' ) %] |
146 |
[% SET renewalsallowed = CirculationRules.Search( branchcode, c, i, 'renewalsallowed' ) %] |
|
|
147 |
[% SET unseenrenewalsallowed = CirculationRules.Search( branchcode, c, i, 'unseen_renewals_allowed' ) %] |
144 |
[% SET renewalperiod = CirculationRules.Search( branchcode, c, i, 'renewalperiod' ) %] |
148 |
[% SET renewalperiod = CirculationRules.Search( branchcode, c, i, 'renewalperiod' ) %] |
145 |
[% SET norenewalbefore = CirculationRules.Search( branchcode, c, i, 'norenewalbefore' ) %] |
149 |
[% SET norenewalbefore = CirculationRules.Search( branchcode, c, i, 'norenewalbefore' ) %] |
146 |
[% SET auto_renew = CirculationRules.Search( branchcode, c, i, 'auto_renew' ) %] |
150 |
[% SET auto_renew = CirculationRules.Search( branchcode, c, i, 'auto_renew' ) %] |
Lines 154-160
Link Here
|
154 |
[% SET article_requests = CirculationRules.Search( branchcode, c, i, 'article_requests' ) %] |
158 |
[% SET article_requests = CirculationRules.Search( branchcode, c, i, 'article_requests' ) %] |
155 |
[% SET rentaldiscount = CirculationRules.Search( branchcode, c, i, 'rentaldiscount' ) %] |
159 |
[% SET rentaldiscount = CirculationRules.Search( branchcode, c, i, 'rentaldiscount' ) %] |
156 |
|
160 |
|
157 |
[% SET show_rule = maxissueqty || maxonsiteissueqty || issuelength || lengthunit || hardduedate || hardduedatebefore || hardduedateexact || fine || chargeperiod || chargeperiod_charge_at || firstremind || overduefinescap || cap_fine_to_replacement_price || finedays || maxsuspensiondays || suspension_chargeperiod || renewalsallowed || renewalsallowed || norenewalbefore || auto_renew || no_auto_renewal_after || no_auto_renewal_after_hard_limit || reservesallowed || holds_per_day || holds_per_record || onshelfholds || opacitemholds || article_requests || article_requests %] |
161 |
[% SET show_rule = maxissueqty || maxonsiteissueqty || issuelength || lengthunit || hardduedate || hardduedatebefore || hardduedateexact || fine || chargeperiod || chargeperiod_charge_at || firstremind || overduefinescap || cap_fine_to_replacement_price || finedays || maxsuspensiondays || suspension_chargeperiod || renewalsallowed || unseenrenewalsallowed || renewalsallowed || norenewalbefore || auto_renew || no_auto_renewal_after || no_auto_renewal_after_hard_limit || reservesallowed || holds_per_day || holds_per_record || onshelfholds || opacitemholds || article_requests || article_requests %] |
158 |
[% IF show_rule %] |
162 |
[% IF show_rule %] |
159 |
[% SET row_count = row_count + 1 %] |
163 |
[% SET row_count = row_count + 1 %] |
160 |
<tr row_countd="row_[% row_count | html %]"> |
164 |
<tr row_countd="row_[% row_count | html %]"> |
Lines 237-242
Link Here
|
237 |
<td>[% maxsuspensiondays | html %]</td> |
241 |
<td>[% maxsuspensiondays | html %]</td> |
238 |
<td>[% suspension_chargeperiod | html %]</td> |
242 |
<td>[% suspension_chargeperiod | html %]</td> |
239 |
<td>[% renewalsallowed | html %]</td> |
243 |
<td>[% renewalsallowed | html %]</td> |
|
|
244 |
[% IF Koha.Preference('UnseenRenewals') %] |
245 |
<td>[% unseenrenewalsallowed | html %]</td> |
246 |
[% END %] |
240 |
<td>[% renewalperiod | html %]</td> |
247 |
<td>[% renewalperiod | html %]</td> |
241 |
<td>[% norenewalbefore | html %]</td> |
248 |
<td>[% norenewalbefore | html %]</td> |
242 |
<td> |
249 |
<td> |
Lines 351-356
Link Here
|
351 |
<td><input type="text" name="maxsuspensiondays" id="maxsuspensiondays" size="3" /> </td> |
358 |
<td><input type="text" name="maxsuspensiondays" id="maxsuspensiondays" size="3" /> </td> |
352 |
<td><input type="text" name="suspension_chargeperiod" id="suspension_chargeperiod" size="3" /> </td> |
359 |
<td><input type="text" name="suspension_chargeperiod" id="suspension_chargeperiod" size="3" /> </td> |
353 |
<td><input type="text" name="renewalsallowed" id="renewalsallowed" size="2" /></td> |
360 |
<td><input type="text" name="renewalsallowed" id="renewalsallowed" size="2" /></td> |
|
|
361 |
<td><input type="text" name="unseen_renewals_allowed" id="unseen_renewals_allowed" size="2" /></td> |
354 |
<td><input type="text" name="renewalperiod" id="renewalperiod" size="3" /></td> |
362 |
<td><input type="text" name="renewalperiod" id="renewalperiod" size="3" /></td> |
355 |
<td><input type="text" name="norenewalbefore" id="norenewalbefore" size="3" /></td> |
363 |
<td><input type="text" name="norenewalbefore" id="norenewalbefore" size="3" /></td> |
356 |
<td> |
364 |
<td> |
Lines 417-422
Link Here
|
417 |
<th>Max. suspension duration (day)</th> |
425 |
<th>Max. suspension duration (day)</th> |
418 |
<th>Suspension charging interval</th> |
426 |
<th>Suspension charging interval</th> |
419 |
<th>Renewals allowed (count)</th> |
427 |
<th>Renewals allowed (count)</th> |
|
|
428 |
<th>Unseen renewals allowed (count)</th> |
420 |
<th>Renewal period</th> |
429 |
<th>Renewal period</th> |
421 |
<th>No renewal before</th> |
430 |
<th>No renewal before</th> |
422 |
<th>Automatic renewal</th> |
431 |
<th>Automatic renewal</th> |
423 |
- |
|
|