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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-2 / +2 lines)
Lines 121-127 Link Here
121
        <input name="paid" id="paid" type="text" step="0.01" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
121
        <input name="paid" id="paid" type="text" step="0.01" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
122
    </li>
122
    </li>
123
    <li>
123
    <li>
124
        <label for="collected">Collected from patron: </label>
124
        <label for="collected">Amount tendered: </label>
125
        <input name="collected" id="collected" type="text" step="0.01" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
125
        <input name="collected" id="collected" type="text" step="0.01" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
126
    </li>
126
    </li>
127
    <li>
127
    <li>
Lines 241-247 Link Here
241
    </li>
241
    </li>
242
    [% IF type != 'WRITEOFF' %]
242
    [% IF type != 'WRITEOFF' %]
243
        <li>
243
        <li>
244
            <label for="collected">Collected from patron: </label>
244
            <label for="collected">Amount tendered: </label>
245
            <input name="collected" id="collected" type="text" step="0.01" value="[% total | $Price on_editing => 1 %]"/>
245
            <input name="collected" id="collected" type="text" step="0.01" value="[% total | $Price on_editing => 1 %]"/>
246
        </li>
246
        </li>
247
        <li>
247
        <li>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt (-2 / +1 lines)
Lines 103-109 Link Here
103
                                <input type="number" min="0.00" max="10000.00" step="0.01" name="paid" id="paid" value="[% amountoutstanding | $Price on_editing => 1 %]" readonly/>
103
                                <input type="number" min="0.00" max="10000.00" step="0.01" name="paid" id="paid" value="[% amountoutstanding | $Price on_editing => 1 %]" readonly/>
104
                            </li>
104
                            </li>
105
                            <li>
105
                            <li>
106
                                <label for="collected">Collected from patron: </label>
106
                                <label for="collected">Amount tendered: </label>
107
                                <input type="number" min="0.00" max="10000.00" step="0.01" name="collected" id="collected" value=""/>
107
                                <input type="number" min="0.00" max="10000.00" step="0.01" name="collected" id="collected" value=""/>
108
                            </li>
108
                            </li>
109
                            <li>
109
                            <li>
110
- 

Return to bug 24495