Lines 459-465
sub get_order_infos {
Link Here
|
459 |
$line{basketno} = $basketno; |
459 |
$line{basketno} = $basketno; |
460 |
$line{budget_name} = $budget->{budget_name}; |
460 |
$line{budget_name} = $budget->{budget_name}; |
461 |
|
461 |
|
462 |
# If we have an actual cost tht should be the total, otherwise use the ecost |
462 |
# If we have an actual cost that should be the total, otherwise use the ecost |
463 |
my $cost_tax_included = $line{unitprice_tax_included} || $line{ecost_tax_included}; |
463 |
my $cost_tax_included = $line{unitprice_tax_included} || $line{ecost_tax_included}; |
464 |
my $cost_tax_excluded = $line{unitprice_tax_excluded} || $line{ecost_tax_excluded}; |
464 |
my $cost_tax_excluded = $line{unitprice_tax_excluded} || $line{ecost_tax_excluded}; |
465 |
$line{total_tax_included} = get_rounded_price($cost_tax_included) * $line{quantity}; |
465 |
$line{total_tax_included} = get_rounded_price($cost_tax_included) * $line{quantity}; |
466 |
- |
|
|