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