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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/itemtypes.tt (-4 / +3 lines)
Lines 230-246 Item types administration Link Here
230
                </li>
230
                </li>
231
                <li>
231
                <li>
232
                    <label for="rentalcharge">Rental charge: </label>
232
                    <label for="rentalcharge">Rental charge: </label>
233
                    <input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price %]" />
233
                    <input type="text" id="rentalcharge" name="rentalcharge" size="10" value="[% itemtype.rentalcharge | $Price on_editing => 1 %]" />
234
                    <span class="hint">This fee is charged once per checkout/renewal per item</span>
234
                    <span class="hint">This fee is charged once per checkout/renewal per item</span>
235
                </li>
235
                </li>
236
                <li>
236
                <li>
237
                    <label for="rentalcharge_daily">Daily rental charge: </label>
237
                    <label for="rentalcharge_daily">Daily rental charge: </label>
238
                    <input type="text" id="rentalcharge_daily" name="rentalcharge_daily" size="10" value="[% itemtype.rentalcharge_daily | $Price %]" />
238
                    <input type="text" id="rentalcharge_daily" name="rentalcharge_daily" size="10" value="[% itemtype.rentalcharge_daily | $Price on_editing => 1 %]" />
239
                    <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>
239
                    <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>
240
                </li>
240
                </li>
241
                <li>
241
                <li>
242
                    <label for="rentalcharge_hourly">Hourly rental charge: </label>
242
                    <label for="rentalcharge_hourly">Hourly rental charge: </label>
243
                    <input type="text" id="rentalcharge_hourly" name="rentalcharge_hourly" size="10" value="[% itemtype.rentalcharge_hourly | $Price %]" />
243
                    <input type="text" id="rentalcharge_hourly" name="rentalcharge_hourly" size="10" value="[% itemtype.rentalcharge_hourly | $Price on_editing => 1 %]" />
244
                    <span class="hint">This fee is charged at checkout/renewal time for each hour between the checkout/renewal date and due date for loans specifie in hours.</span>
244
                    <span class="hint">This fee is charged at checkout/renewal time for each hour between the checkout/renewal date and due date for loans specifie in hours.</span>
245
                </li>
245
                </li>
246
                <li>
246
                <li>
247
- 

Return to bug 20912