@@ -, +, @@ the unitprice --- acqui/parcel.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/parcel.pl +++ a/acqui/parcel.pl @@ -134,7 +134,7 @@ for my $order ( @orders ) { $order->{ecost} = $order->{ecostgsti}; $order->{unitprice} = $order->{unitpricegsti}; } - $order->{total} = $order->{ecost} * $order->{quantity}; + $order->{total} = $order->{unitprice} * $order->{quantity}; my %line = %{ $order }; $line{invoice} = $invoice->{invoicenumber}; --