Lines 395-402
Link Here
|
395 |
<th>No.</th> |
395 |
<th>No.</th> |
396 |
<th>Order</th> |
396 |
<th>Order</th> |
397 |
<th>RRP tax exc.</th> |
397 |
<th>RRP tax exc.</th> |
|
|
398 |
<th>Actual cost tax exc.</th> |
398 |
<th>ecost tax exc.</th> |
399 |
<th>ecost tax exc.</th> |
399 |
<th>RRP tax inc.</th> |
400 |
<th>RRP tax inc.</th> |
|
|
401 |
<th>Actual cost tax inc.</th> |
400 |
<th>ecost tax inc.</th> |
402 |
<th>ecost tax inc.</th> |
401 |
<th>Replacement price</th> |
403 |
<th>Replacement price</th> |
402 |
<th>Qty.</th> |
404 |
<th>Qty.</th> |
Lines 424-429
Link Here
|
424 |
<th> </th> |
426 |
<th> </th> |
425 |
<th> </th> |
427 |
<th> </th> |
426 |
<th> </th> |
428 |
<th> </th> |
|
|
429 |
<th> </th> |
430 |
<th> </th> |
427 |
<th>[% foot_loo.quantity | html %]</th> |
431 |
<th>[% foot_loo.quantity | html %]</th> |
428 |
<th>[% foot_loo.total_tax_excluded | $Price %]</th> |
432 |
<th>[% foot_loo.total_tax_excluded | $Price %]</th> |
429 |
<th>[% foot_loo.total_tax_included | $Price %]</th> |
433 |
<th>[% foot_loo.total_tax_included | $Price %]</th> |
Lines 447-452
Link Here
|
447 |
<th> </th> |
451 |
<th> </th> |
448 |
<th> </th> |
452 |
<th> </th> |
449 |
<th> </th> |
453 |
<th> </th> |
|
|
454 |
<th> </th> |
455 |
<th> </th> |
450 |
<th>[% total_quantity | html %]</th> |
456 |
<th>[% total_quantity | html %]</th> |
451 |
<th>[% total_tax_excluded | $Price %]</th> |
457 |
<th>[% total_tax_excluded | $Price %]</th> |
452 |
<th>[% total_tax_included | $Price %]</th> |
458 |
<th>[% total_tax_included | $Price %]</th> |
Lines 519-526
Link Here
|
519 |
[% SET zero_regex = "^0{1,}\.?0{1,}[^1-9]" %] [%# 0 or 0.0 or 0.00 or 00 or 00.0 or 00.00 or 0.000 ... %] |
525 |
[% SET zero_regex = "^0{1,}\.?0{1,}[^1-9]" %] [%# 0 or 0.0 or 0.00 or 00 or 00.0 or 00.00 or 0.000 ... %] |
520 |
[%# FIXME: use of a regexp is not ideal; bugs 9410 and 10929 suggest better way of handling this %] |
526 |
[%# FIXME: use of a regexp is not ideal; bugs 9410 and 10929 suggest better way of handling this %] |
521 |
<td class="number [% IF books_loo.rrp_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_excluded | $Price %]</td> |
527 |
<td class="number [% IF books_loo.rrp_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_excluded | $Price %]</td> |
|
|
528 |
<td class="number [% IF books_loo.unitprice_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.unitprice_tax_excluded | $Price %]</td> |
522 |
<td class="number [% IF books_loo.ecost_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_excluded | $Price %]</td> |
529 |
<td class="number [% IF books_loo.ecost_tax_excluded.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_excluded | $Price %]</td> |
523 |
<td class="number [% IF books_loo.rrp_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_included | $Price %]</td> |
530 |
<td class="number [% IF books_loo.rrp_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.rrp_tax_included | $Price %]</td> |
|
|
531 |
<td class="number [% IF books_loo.unitprice_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.unitprice_tax_included | $Price %]</td> |
524 |
<td class="number [% IF books_loo.ecost_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_included | $Price %]</td> |
532 |
<td class="number [% IF books_loo.ecost_tax_included.search(zero_regex) %]error[% END %]">[% books_loo.ecost_tax_included | $Price %]</td> |
525 |
<td class="number [% IF books_loo.replacementprice.search(zero_regex) %]error[% END %]">[% books_loo.replacementprice | $Price %]</td> |
533 |
<td class="number [% IF books_loo.replacementprice.search(zero_regex) %]error[% END %]">[% books_loo.replacementprice | $Price %]</td> |
526 |
<td class="number [% IF books_loo.quantity.search(zero_regex) %]error[% END %]">[% books_loo.quantity | html %]</td> |
534 |
<td class="number [% IF books_loo.quantity.search(zero_regex) %]error[% END %]">[% books_loo.quantity | html %]</td> |
527 |
- |
|
|