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

Return to bug 39045