Lines 339-344
Item types › Administration › Koha
Link Here
|
339 |
[% END %] |
339 |
[% END %] |
340 |
<span class="hint">If checked, items will be automatically checked in once they've reached their due date. This feature requires the <code>misc/cronjobs/automatic_checkin.pl</code> cronjob. Ask your system administrator to schedule it.</span> |
340 |
<span class="hint">If checked, items will be automatically checked in once they've reached their due date. This feature requires the <code>misc/cronjobs/automatic_checkin.pl</code> cronjob. Ask your system administrator to schedule it.</span> |
341 |
</li> |
341 |
</li> |
|
|
342 |
<li> |
343 |
<label for="updatenotforloan">Update not for loan status on check-in: </label> |
344 |
[% IF itemtype.updatenotforloan %] |
345 |
<input type="checkbox" id="updatenotforloan" name="updatenotforloan" checked="checked" value="1" /> |
346 |
[% ELSE %] |
347 |
<input type="checkbox" id="updatenotforloan" name="updatenotforloan" value="1" /> |
348 |
[% END %] |
349 |
<span class="hint">Dependent on the UpdateNotForLoanStatusOnCheckin system preference being configured. If checked, items of this type will be updated by UpdateNotForLoanStatusOnCheckin syspref upon checkin. If not checked, items of this type will be excluded from update on checkin.</span> |
350 |
</li> |
342 |
<li> |
351 |
<li> |
343 |
<label for="rentalcharge">Rental charge: </label> |
352 |
<label for="rentalcharge">Rental charge: </label> |
344 |
<input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" min="0" /> |
353 |
<input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" min="0" /> |
Lines 477-482
Item types › Administration › Koha
Link Here
|
477 |
<th>Search category</th> |
486 |
<th>Search category</th> |
478 |
<th>Not for loan</th> |
487 |
<th>Not for loan</th> |
479 |
<th>Hide in OPAC</th> |
488 |
<th>Hide in OPAC</th> |
|
|
489 |
<th>Update not for loan status on checkin</th> |
480 |
<th>Rental charge</th> |
490 |
<th>Rental charge</th> |
481 |
<th>Daily rental charge</th> |
491 |
<th>Daily rental charge</th> |
482 |
<th>Hourly rental charge</th> |
492 |
<th>Hourly rental charge</th> |
Lines 543-548
Item types › Administration › Koha
Link Here
|
543 |
<td>[% AuthorisedValues.GetByCode( 'ITEMTYPECAT', itemtype.searchcategory ) | html %]</td> |
553 |
<td>[% AuthorisedValues.GetByCode( 'ITEMTYPECAT', itemtype.searchcategory ) | html %]</td> |
544 |
<td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %] [% END %]</td> |
554 |
<td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %] [% END %]</td> |
545 |
<td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %] [% END %]</td> |
555 |
<td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %] [% END %]</td> |
|
|
556 |
<td>[% IF ( itemtype.updatenotforloan ) %]Yes[% ELSE %] [% END %]</td> |
546 |
<td> |
557 |
<td> |
547 |
[% UNLESS ( itemtype.notforloan ) %] |
558 |
[% UNLESS ( itemtype.notforloan ) %] |
548 |
[% itemtype.rentalcharge | $Price %] |
559 |
[% itemtype.rentalcharge | $Price %] |