Index: /views/mods/mod_rechnungen/invoice_pdf.phtml
===================================================================
--- /views/mods/mod_rechnungen/invoice_pdf.phtml	(revision 8175)
+++ /views/mods/mod_rechnungen/invoice_pdf.phtml	(revision 8178)
@@ -264,5 +264,5 @@
 		}
 		
-		if ($this->get_option('wpsg_rechnungen_pdetailname' == '1')) {
+		if ($this->get_option('wpsg_rechnungen_pdetailname') == '1') {
 
 			$produkt_text = $this->getProductName($this->getProduktID($p['product_id']), true);
@@ -353,17 +353,17 @@
 		if ( ( wpsg_ShopController::get_option('wpsg_preisangaben') == WPSG_NETTO ) || $bNoTax ) {
 			
-			$preis = $p['netto'];
+			$preis_single = $p['netto_calculated_single'];
 			
 		} else {
 			
-			$preis = $p['brutto'];
+			$preis_single =  $p['brutto_calculated_single'];
 			
 		}
 		
 		$pdf->setXY($prod_left + 127, $prod_top + $offset);
-		$pdf->Cell(25, 8, wpsg_ff($preis, $this->get_option('wpsg_currency')), 0, 0, 'R');
+		$pdf->Cell(25, 8, wpsg_ff($preis_single, $this->get_option('wpsg_currency')), 0, 0, 'R');
 		
 		$pdf->setXY($prod_left + 152, $prod_top + $offset);
-		$pdf->Cell(25, 8, wpsg_ff($preis * $p['amount'], $this->get_option('wpsg_currency')), 0, 0, 'R');
+		$pdf->Cell(25, 8, wpsg_ff($preis_single * $p['amount'], $this->get_option('wpsg_currency')), 0, 0, 'R');
 		
 		/**
