PTC: item->discount auf 0, wenn nicht definiert, um Warnungen zu vermeiden
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 12 Dec 2018 15:16:58 +0000 (16:16 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 12 Dec 2018 16:20:27 +0000 (17:20 +0100)
SL/DB/Helper/PriceTaxCalculator.pm

index 8917310..d0412c2 100644 (file)
@@ -96,6 +96,7 @@ sub _calculate_item {
 
   my $num_dec   = max 2, _num_decimal_places($item->sellprice);
 
+  $item->discount(0) if !$item->discount;
 
   # don't include rounded discount into sellprice for calculation
   # any time the sellprice is multiplied with qty discount has to be considered as part of the multiplication