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 (-5 / +4 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">
288
- 

Return to bug 39045