@@ -, +, @@ currency symbol in basket group $total .= $bookseller->{invoiceprice} // 0; $total .= " " . ($bookseller->{invoiceprice} // 0); 1) Log into staff client 2) Acquisitions 3) Click 'Search' in the 'Manage orders' box. 4) Click '+ New basket' beside a vendor name. 5) Type 'Bug 9654 Test 1' into basket name. 6) Click 'Save' 7) Click 'Add to basket' 8) Click 'From an external source' 9) Type 'Green Eggs and Ham' into the Title text box. 'Accounting details' box. basket group. between the number and the currency. (e.g. Total: 0USD) --- acqui/basketgroup.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/acqui/basketgroup.pl +++ a/acqui/basketgroup.pl @@ -145,7 +145,7 @@ sub BasketTotal { $total = $total * ( $gst / 100 +1); } } - $total .= $bookseller->{invoiceprice} // 0; + $total .= " " . ($bookseller->{invoiceprice} // 0); return $total; } --