@@ -, +, @@ are not passed into C4::Acquisitions::populate_order_with_prices --- acqui/addorderiso2709.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/acqui/addorderiso2709.pl +++ a/acqui/addorderiso2709.pl @@ -261,6 +261,7 @@ if ($op eq ""){ $price = Koha::Number::Price->new($price)->unformat; $orderinfo{tax_rate} = $bookseller->tax_rate; my $c = $c_discount ? $c_discount : $bookseller->discount / 100; + $orderinfo{discount} = $c; if ( $bookseller->listincgst ) { if ( $c_discount ) { $orderinfo{ecost} = $price; @@ -329,6 +330,7 @@ if ($op eq ""){ $price = Koha::Number::Price->new($price)->unformat; $orderinfo{tax_rate} = $bookseller->tax_rate; my $c = $c_discount ? $c_discount : $bookseller->discount / 100; + $orderinfo{discount} = $c; if ( $bookseller->listincgst ) { if ( $c_discount ) { $orderinfo{ecost} = $price; --