diff --git a/www/lib/dokumente/class.angebot.php b/www/lib/dokumente/class.angebot.php index b5a4d439..9db95733 100644 --- a/www/lib/dokumente/class.angebot.php +++ b/www/lib/dokumente/class.angebot.php @@ -498,8 +498,10 @@ class AngebotPDF extends BriefpapierCustom { "rabatt"=>$value['rabatt'], "steuertext"=>$value['steuertext'])); if($positionenkaufmaenischrunden == 3){ - $netto_gesamt = $value['menge'] * round($value['preis'] - ($value['preis'] / 100 * $value['rabatt']),2); - }else{ + if (!$value['nicht_einrechnen']) { + $netto_gesamt = $value['menge'] * round($value['preis'] - ($value['preis'] / 100 * $value['rabatt']),2); + } + }else if (!$value['nicht_einrechnen']) { $netto_gesamt = $value['menge'] * ($value['preis'] - ($value['preis'] / 100 * $value['rabatt'])); } if($positionenkaufmaenischrunden) diff --git a/www/lib/dokumente/class.briefpapier.php b/www/lib/dokumente/class.briefpapier.php index cfa6a08b..22f6f99a 100644 --- a/www/lib/dokumente/class.briefpapier.php +++ b/www/lib/dokumente/class.briefpapier.php @@ -658,7 +658,7 @@ class Briefpapier extends SuperFPDF { public function addItem($rdata){ // add rabatt - if($rdata['price']!='-'){ + if($rdata['price']!='-' && is_numeric($rdata['price'])){ if($rdata['rabatt'] == 100){ $rdata['tprice'] = round($rdata['amount'] * ((double)$rdata['price'] - (double)($rdata['price'] / 100.00 * (double)$rdata['rabatt'])), 13); }else{ @@ -4008,7 +4008,7 @@ class Briefpapier extends SuperFPDF { } $beschriftung_zeile = ucfirst($zwischenpositionen[$i]['postype']); - + if($data['name']=="") $html = ($fett?"":"").$beschriftung_zeile.($fett?"":""); else @@ -4029,10 +4029,10 @@ class Briefpapier extends SuperFPDF { $abstand_links = $posWidth +$itemNoWidth; } - $this->SetX($x+$abstand_links); - - $text = $this->WriteHTML($html); - $text = empty($text)?"":$text; + $this->SetX($x+$abstand_links); + + $text = $this->WriteHTML($html); + $text = empty($text)?"":$text; $this->Cell_typed($descWidth,4,); $this->SetX($x+$abstand_links+$descWidth);