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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-1 / +1 lines)
Lines 89-95 Link Here
89
                            [% END %]
89
                            [% END %]
90
                        </a>
90
                        </a>
91
                        [% IF (supplier.vendor_type) %]([% AuthorisedValues.GetByCode( 'VENDOR_TYPE', supplier.vendor_type ) | html %])[% END %]
91
                        [% IF (supplier.vendor_type) %]([% AuthorisedValues.GetByCode( 'VENDOR_TYPE', supplier.vendor_type ) | html %])[% END %]
92
                    [% IF ( !supplier.active ) %]<span class="vendor_inactive">(inactive)</span>[% END %]
92
                    [% IF ( !supplier.active ) %]<span class="vendor_inactive">[% tp('Vendor status', '(inactive)') | html %]</span>[% END %]
93
                </h2>
93
                </h2>
94
                <span class="basketcounts">
94
                <span class="basketcounts">
95
                    [% IF ( count > 1 ) %]
95
                    [% IF ( count > 1 ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-6 / +5 lines)
Lines 274-287 Link Here
274
            <ol><li><label for="activestatus">Vendor is:</label>
274
            <ol><li><label for="activestatus">Vendor is:</label>
275
                    [% IF ( active ) %]
275
                    [% IF ( active ) %]
276
                        <input type="radio" id="activestatus" name="status" value="1" checked="checked" />
276
                        <input type="radio" id="activestatus" name="status" value="1" checked="checked" />
277
                        <label class="radio" for="activestatus">Active</label>
277
                        <label class="radio" for="activestatus">[% tp('Vendor status', 'Active') | html %]</label>
278
                        <input type="radio" id="inactivestatus" name="status" value="0" />
278
                        <input type="radio" id="inactivestatus" name="status" value="0" />
279
                        <label class="radio" for="inactivestatus">Inactive</label>
279
                        <label class="radio" for="inactivestatus">[% tp('Vendor status', 'Inactive') | html %]</label>
280
                    [% ELSE %]
280
                    [% ELSE %]
281
                        <input type="radio" id="activestatus" name="status" value="1" />
281
                        <input type="radio" id="activestatus" name="status" value="1" />
282
                        <label class="radio" for="activestatus">Active</label>
282
                        <label class="radio" for="activestatus">[% tp('Vendor status', 'Active') | html %]</label>
283
                        <input type="radio" id="inactivestatus" name="status" value="0" checked="checked" />
283
                        <input type="radio" id="inactivestatus" name="status" value="0" checked="checked" />
284
                        <label class="radio" for="inactivestatus">Inactive</label>
284
                        <label class="radio" for="inactivestatus">[% tp('Vendor status', 'Inactive') | html %]</label>
285
                    [% END %]</li>
285
                    [% END %]</li>
286
            <li><label for="list_currency">List prices are: </label>
286
            <li><label for="list_currency">List prices are: </label>
287
                <select name="list_currency" id="list_currency">
287
                <select name="list_currency" id="list_currency">
Lines 409-415 Link Here
409
409
410
                <div id="supplier-ordering-information" class="page-section rows">
410
                <div id="supplier-ordering-information" class="page-section rows">
411
                    <h2>Ordering information</h2>
411
                    <h2>Ordering information</h2>
412
                    <li><span class="label">Vendor is: </span>[% IF ( active ) %]Active[% ELSE %]Inactive[% END %]</li>
412
                    <li><span class="label">Vendor is: </span>[% IF ( active ) %][% tp('Vendor status', 'Active') | html %][% ELSE %][% tp('Vendor status', 'Inactive') | html %][% END %]</li>
413
                    <li><span class="label">List prices are: </span>[% listprice | html %]</li>
413
                    <li><span class="label">List prices are: </span>[% listprice | html %]</li>
414
                    <li><span class="label">Invoice prices are: </span>[% invoiceprice | html %]</li>
414
                    <li><span class="label">Invoice prices are: </span>[% invoiceprice | html %]</li>
415
                    [% IF ( tax_rate ) %]
415
                    [% IF ( tax_rate ) %]
416
- 

Return to bug 39045