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 116-122 Link Here
116
        <input name="paid" id="paid" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
116
        <input name="paid" id="paid" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
117
    </li>
117
    </li>
118
    <li>
118
    <li>
119
        <label for="collected">Collected from patron: </label>
119
        <label for="collected">Amount tendered: </label>
120
        <input id="collected" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
120
        <input id="collected" value="[% amountoutstanding | $Price on_editing => 1 %]"/>
121
    </li>
121
    </li>
122
    <li>
122
    <li>
Lines 250-256 Link Here
250
250
251
    [% IF type != 'WRITEOFF' %]
251
    [% IF type != 'WRITEOFF' %]
252
        <li>
252
        <li>
253
            <label for="collected">Collected from patron: </label>
253
            <label for="collected">Amount tendered: </label>
254
            <input id="collected" value="[% total | $Price on_editing => 1 %]"/>
254
            <input id="collected" value="[% total | $Price on_editing => 1 %]"/>
255
        </li>
255
        </li>
256
        <li>
256
        <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