Browse Source

Bug 9807: (follow-up) quell warning if invoice price not set

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
3.16.x
Galen Charlton 11 years ago
parent
commit
231f26b248
  1. 2
      acqui/basketgroup.pl

2
acqui/basketgroup.pl

@ -145,7 +145,7 @@ sub BasketTotal {
$total = $total * ( $gst / 100 +1);
}
}
$total .= $bookseller->{invoiceprice};
$total .= $bookseller->{invoiceprice} // 0;
return $total;
}

Loading…
Cancel
Save