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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt (-1 / +1 lines)
Lines 44-50 Link Here
44
	<li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" /></li>
44
	<li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" /></li>
45
	<li><label for="desc">Description: </label><input type="text" name="desc" size="50" id="desc" /></li>
45
	<li><label for="desc">Description: </label><input type="text" name="desc" size="50" id="desc" /></li>
46
    <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li>
46
    <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li>
47
    <li><label for="amount">Amount: </label><input type="number" name="amount" id="amount" required="required" value="" step="any" min="0" /> Example: 5.00</li>
47
    <li><label for="amount">Amount: </label><input type="number" class="focus" name="amount" id="amount" required="required" value="" step="any" min="0" /> Example: 5.00</li>
48
</ol></fieldset>
48
</ol></fieldset>
49
49
50
<fieldset class="action"><input type="submit" name="add" value="Add credit" /> <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a></fieldset>
50
<fieldset class="action"><input type="submit" name="add" value="Add credit" /> <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a></fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/maninvoice.tt (-1 / +1 lines)
Lines 57-63 Link Here
57
	<li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" /></li>
57
	<li><label for="barcode">Barcode: </label><input type="text" name="barcode" id="barcode" /></li>
58
	<li><label for="desc">Description: </label><input type="text" name="desc" id="desc" size="50" /></li>
58
	<li><label for="desc">Description: </label><input type="text" name="desc" id="desc" size="50" /></li>
59
    <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li>
59
    <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li>
60
    <li><label for="amount">Amount: </label><input type="number" name="amount" id="amount" required="required" value="" step="any" min="0" /> Example: 5.00</li>
60
    <li><label for="amount">Amount: </label><input type="number" class="focus" name="amount" id="amount" required="required" value="" step="any" min="0" /> Example: 5.00</li>
61
	</ol></fieldset>
61
	</ol></fieldset>
62
<fieldset class="action"><input type="submit" name="add" value="Save" /> <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a></fieldset>
62
<fieldset class="action"><input type="submit" name="add" value="Save" /> <a class="cancel" href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=[% patron.borrowernumber | html %]">Cancel</a></fieldset>
63
</form>
63
</form>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt (-1 / +1 lines)
Lines 107-113 Link Here
107
        [%- IF line.description %], [% line.description | html %][% END %]
107
        [%- IF line.description %], [% line.description | html %][% END %]
108
        [% IF line.title %]([% line.title | html %])[% END %]
108
        [% IF line.title %]([% line.title | html %])[% END %]
109
    </td>
109
    </td>
110
    <td><input type="text" name="payment_note_[% line.accountlines_id | html %]" /></td>
110
    <td><input type="text" class="focus" name="payment_note_[% line.accountlines_id | html %]" /></td>
111
    <td>[% line.accounttype | html %]</td>
111
    <td>[% line.accounttype | html %]</td>
112
    <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
112
    <td class="debit" style="text-align: right;">[% line.amount | $Price %]</td>
113
    <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price %]</td>
113
    <td class="debit" style="text-align: right;">[% line.amountoutstanding | $Price %]</td>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/paycollect.tt (-3 / +2 lines)
Lines 101-107 Link Here
101
    <li>
101
    <li>
102
        <label for="paid">Collect from patron: </label>
102
        <label for="paid">Collect from patron: </label>
103
            <!-- default to paying all -->
103
            <!-- default to paying all -->
104
        <input name="paid" id="paid" value="[% amountoutstanding | html %]"  type="text" />
104
        <input name="paid" id="paid" class="focus" value="[% amountoutstanding | html %]"  type="text" />
105
    </li>
105
    </li>
106
    [% SET payment_types = AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
106
    [% SET payment_types = AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
107
    [% IF payment_types %]
107
    [% IF payment_types %]
Lines 198-204 Link Here
198
            <label for="paid">Collect from patron: </label>
198
            <label for="paid">Collect from patron: </label>
199
        [% END %]
199
        [% END %]
200
        <!-- default to paying all -->
200
        <!-- default to paying all -->
201
        <input name="paid" id="paid" value="[% total | format('%.2f') %]" type="text" />
201
        <input name="paid" class="focus" id="paid" value="[% total | format('%.2f') %]" type="text" />
202
    </li>
202
    </li>
203
    [% SET payment_types = AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
203
    [% SET payment_types = AuthorisedValues.GetAuthValueDropbox('PAYMENT_TYPE') %]
204
    [% IF payment_types %]
204
    [% IF payment_types %]
205
- 

Return to bug 20527