Lines 145-151
Link Here
|
145 |
<input type="hidden" name="suggestionid" value="[% suggestionid | html %]" /> |
145 |
<input type="hidden" name="suggestionid" value="[% suggestionid | html %]" /> |
146 |
<input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" /> |
146 |
<input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" /> |
147 |
|
147 |
|
148 |
[% FOREACH c IN currencies.count %] |
148 |
[% FOREACH c IN currencies %] |
149 |
<input type="hidden" id="currency_rate_[% c.currency | html %]" name="[% c.currency | html %]" value="[% c.rate | html %]" /> |
149 |
<input type="hidden" id="currency_rate_[% c.currency | html %]" name="[% c.currency | html %]" value="[% c.rate | html %]" /> |
150 |
[% END %] |
150 |
[% END %] |
151 |
|
151 |
|
Lines 399-405
Link Here
|
399 |
<li> |
399 |
<li> |
400 |
<label for="currency">Currency:</label> |
400 |
<label for="currency">Currency:</label> |
401 |
<select name="currency" id="currency" onchange="updateCosts();"> |
401 |
<select name="currency" id="currency" onchange="updateCosts();"> |
402 |
[% FOREACH c IN currencies.count %] |
402 |
[% FOREACH c IN currencies %] |
403 |
[% IF ordernumber and c.currency == currency or not ordernumber and c.currency == vendor_currency %] |
403 |
[% IF ordernumber and c.currency == currency or not ordernumber and c.currency == vendor_currency %] |
404 |
<option value="[% c.currency | html %]" selected="selected">[% c.currency | html %]</option> |
404 |
<option value="[% c.currency | html %]" selected="selected">[% c.currency | html %]</option> |
405 |
[% ELSIF not c.archived %] |
405 |
[% ELSIF not c.archived %] |
406 |
- |
|
|