Lines 343-351
Link Here
|
343 |
<li> |
343 |
<li> |
344 |
<label for="unitprice">Actual cost:</label> |
344 |
<label for="unitprice">Actual cost:</label> |
345 |
[% IF (invoiceincgst) %] |
345 |
[% IF (invoiceincgst) %] |
346 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_included | $Price on_editing => 1 %]" /> <span class="hint">(tax inclusive)</span> |
346 |
[% IF (order.unitprice_tax_included == 0.00000) %] |
|
|
347 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_included | $Price on_editing => 1 %]" /> <span class="hint">(tax inclusive)</span> |
348 |
[% ELSE %] |
349 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.ecost_tax_included | $Price on_editing => 1%]" /> <span class="hint">(tax inclusive)</span> |
350 |
[% END %] |
347 |
[% ELSE %] |
351 |
[% ELSE %] |
348 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_excluded | $Price on_editing => 1 %]" /> <span class="hint">(tax exclusive)</span> |
352 |
[% IF (order.unitprice_tax_excluded == 0.00000) %] |
|
|
353 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.unitprice_tax_excluded | $Price on_editing => 1 %]" /> <span class="hint">(tax exclusive)</span> |
354 |
[% ELSE %] |
355 |
<input type="text" size="20" name="unitprice" id="unitprice" value="[% order.ecost_tax_excluded | $Price on_editing => 1 %]" /> <span class="hint">(tax exclusive)</span> |
356 |
[% END %] |
349 |
[% END %] |
357 |
[% END %] |
350 |
<label style="font-weight: inherit; float:none;"><input type="checkbox" name="change_currency">Change currency</label> |
358 |
<label style="font-weight: inherit; float:none;"><input type="checkbox" name="change_currency">Change currency</label> |
351 |
</li> |
359 |
</li> |
352 |
- |
|
|