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 |
- |
|
|