Lines 241-251
Item types administration
Link Here
|
241 |
<input type="text" id="rentalcharge_daily" name="rentalcharge_daily" size="10" value="[% itemtype.rentalcharge_daily | $Price on_editing => 1 %]" /> |
241 |
<input type="text" id="rentalcharge_daily" name="rentalcharge_daily" size="10" value="[% itemtype.rentalcharge_daily | $Price on_editing => 1 %]" /> |
242 |
<span class="hint">This fee is charged at checkout/renewal time for each day between the checkout/renewal date and due date for loans specified in days.</span> |
242 |
<span class="hint">This fee is charged at checkout/renewal time for each day between the checkout/renewal date and due date for loans specified in days.</span> |
243 |
</li> |
243 |
</li> |
|
|
244 |
<li> |
245 |
<label for="notforloan">Daily rentals use calendar: </label> |
246 |
[% IF itemtype.rentalcharge_daily_calendar %] |
247 |
<input type="checkbox" id="rentalcharge_daily_calendar" name="rentalcharge_daily_calendar" checked="checked" value="1" /> |
248 |
[% ELSE %] |
249 |
<input type="checkbox" id="rentalcharge_daily_calendar" name="rentalcharge_daily_calendar" value="1" /> |
250 |
[% END %] |
251 |
<span class="hint">If checked, daily charge will be calculated based on the value of the system preference <i>finesCalendar</i>. If not checked, the fee will be calculated based on the number of days until due, directly.</span> |
252 |
</li> |
244 |
<li> |
253 |
<li> |
245 |
<label for="rentalcharge_hourly">Hourly rental charge: </label> |
254 |
<label for="rentalcharge_hourly">Hourly rental charge: </label> |
246 |
<input type="text" id="rentalcharge_hourly" name="rentalcharge_hourly" size="10" value="[% itemtype.rentalcharge_hourly | $Price on_editing => 1 %]" /> |
255 |
<input type="text" id="rentalcharge_hourly" name="rentalcharge_hourly" size="10" value="[% itemtype.rentalcharge_hourly | $Price on_editing => 1 %]" /> |
247 |
<span class="hint">This fee is charged at checkout/renewal time for each hour between the checkout/renewal date and due date for loans specified in hours.</span> |
256 |
<span class="hint">This fee is charged at checkout/renewal time for each hour between the checkout/renewal date and due date for loans specified in hours.</span> |
248 |
</li> |
257 |
</li> |
|
|
258 |
<li> |
259 |
<label for="notforloan">Hourly rentals use calendar: </label> |
260 |
[% IF itemtype.rentalcharge_hourly_calendar %] |
261 |
<input type="checkbox" id="rentalcharge_hourly_calendar" name="rentalcharge_hourly_calendar" checked="checked" value="1" /> |
262 |
[% ELSE %] |
263 |
<input type="checkbox" id="rentalcharge_hourly_calendar" name="rentalcharge_hourly_calendar" value="1" /> |
264 |
[% END %] |
265 |
<span class="hint">If checked, hourly charge will be calculated based on the value of the system preference <i>finesCalendar</i>. If not checked, the fee will be calculated based on the number of hours until due, directly.</span> |
266 |
</li> |
249 |
<li> |
267 |
<li> |
250 |
<label for="defaultreplacecost">Default replacement cost: </label> |
268 |
<label for="defaultreplacecost">Default replacement cost: </label> |
251 |
<input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | html %]" /> |
269 |
<input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | html %]" /> |
252 |
- |
|
|