View | Details | Raw Unified | Return to bug 25560
Collapse All | Expand All

(-)a/admin/columns_settings.yml (+2 lines)
Lines 254-259 modules: Link Here
254
              columnname: not_for_loan
254
              columnname: not_for_loan
255
            -
255
            -
256
              columnname: hide_in_opac
256
              columnname: hide_in_opac
257
            -
258
              columnname: updatenotforloan
257
            -
259
            -
258
              columnname: rental_charge
260
              columnname: rental_charge
259
            -
261
            -
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (+11 lines)
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 &rsaquo; Administration &rsaquo; 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 &rsaquo; Administration &rsaquo; 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 %]&nbsp;[% END %]</td>
530
            <td>[% IF ( itemtype.notforloan ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
521
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
531
            <td>[% IF ( itemtype.hideinopac ) %]Yes[% ELSE %]&nbsp;[% END %]</td>
532
            <td>[% IF ( itemtype.updatenotforloan ) %]Yes[% ELSE %] &nbsp;[% END %]</td>
522
            <td>
533
            <td>
523
            [% UNLESS ( itemtype.notforloan ) %]
534
            [% UNLESS ( itemtype.notforloan ) %]
524
              [% itemtype.rentalcharge | $Price %]
535
              [% itemtype.rentalcharge | $Price %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +1 lines)
Lines 633-638 Circulation: Link Here
633
            - This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value
633
            - This is a list of value pairs. When an item is checked in, if the not for loan value on the left matches the items not for loan value
634
            - "it will be updated to the right-hand value. For example, '-1: 0' will cause an item that was set to 'Ordered' to now be available for loan."
634
            - "it will be updated to the right-hand value. For example, '-1: 0' will cause an item that was set to 'Ordered' to now be available for loan."
635
            - Each pair of values should be on a separate line.
635
            - Each pair of values should be on a separate line.
636
            - Enable itemtypes to be updated upon checkin on the item type page (Administration > Item types)
636
        -
637
        -
637
            - pref: CumulativeRestrictionPeriods
638
            - pref: CumulativeRestrictionPeriods
638
              choices:
639
              choices:
639
- 

Return to bug 25560