Lines 315-320
Item types › Administration › Koha
Link Here
|
315 |
[% END %] |
315 |
[% END %] |
316 |
<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> |
316 |
<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> |
317 |
</li> |
317 |
</li> |
|
|
318 |
<li> |
319 |
<label for="updatenotforloan">Update not for loan status on check-in: </label> |
320 |
[% IF itemtype.updatenotforloan %] |
321 |
<input type="checkbox" id="updatenotforloan" name="updatenotforloan" checked="checked" value="1" /> |
322 |
[% ELSE %] |
323 |
<input type="checkbox" id="updatenotforloan" name="updatenotforloan" value="1" /> |
324 |
[% END %] |
325 |
<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> |
326 |
</li> |
318 |
<li> |
327 |
<li> |
319 |
<label for="rentalcharge">Rental charge: </label> |
328 |
<label for="rentalcharge">Rental charge: </label> |
320 |
<input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" min="0" /> |
329 |
<input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" min="0" /> |
Lines 453-458
Item types › Administration › Koha
Link Here
|
453 |
<th>Search category</th> |
462 |
<th>Search category</th> |
454 |
<th>Not for loan</th> |
463 |
<th>Not for loan</th> |
455 |
<th>Hide in OPAC</th> |
464 |
<th>Hide in OPAC</th> |
|
|
465 |
<th>Update not for loan status on checkin</th> |
456 |
<th>Rental charge</th> |
466 |
<th>Rental charge</th> |
457 |
<th>Daily rental charge</th> |
467 |
<th>Daily rental charge</th> |
458 |
<th>Hourly rental charge</th> |
468 |
<th>Hourly rental charge</th> |
Lines 519-524
Item types › Administration › Koha
Link Here
|
519 |
<td>[% AuthorisedValues.GetByCode( 'ITEMTYPECAT', itemtype.searchcategory ) | html %]</td> |
529 |
<td>[% AuthorisedValues.GetByCode( 'ITEMTYPECAT', itemtype.searchcategory ) | html %]</td> |
520 |
<td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %] [% END %]</td> |
530 |
<td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %] [% END %]</td> |
521 |
<td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %] [% END %]</td> |
531 |
<td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %] [% END %]</td> |
|
|
532 |
<td>[% IF ( itemtype.updatenotforloan ) %]Yes[% ELSE %] [% END %]</td> |
522 |
<td> |
533 |
<td> |
523 |
[% UNLESS ( itemtype.notforloan ) %] |
534 |
[% UNLESS ( itemtype.notforloan ) %] |
524 |
[% itemtype.rentalcharge | $Price %] |
535 |
[% itemtype.rentalcharge | $Price %] |