Jump to content

(RESOLU) Enlever "total ht" dans facture


Recommended Posts

Bonjour a tous,

Je recherche la ligne qui me permet d'enlever le total ht sur a facture, (voir fichier joint)

Par contre des que je change la moindre virgule dans mon fichier class/PDF.php

mes facture actuel ne sont plus accessible et message d'erreur

 

Qui peu m'éclairer

Merci

Phil

post-304205-0-41024400-1327942268_thumb.jpg

Link to comment
Share on other sites

Salut,

 

En 1.4.6.2 tu dois retirer les lignes 684-689:

           	 $pdf->Ln(5);
               $pdf->SetFont(self::fontname(), 'B', 8);
               $width = 165;
               $pdf->Cell($width, 0, self::l('Total products (tax excl.)').' : ', 0, 0, 'R');
               $pdf->Cell(0, 0, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice($priceBreakDown['totalProductsWithoutTax'], self::$currency, true)), 0, 0, 'R');
               $pdf->Ln(4);

 

En 1.5 les factures sont éditables directement depuis un fichier TPL ;)

Link to comment
Share on other sites

ok j'ai trouver, chez moi c'est a la ligne 632,

 

j'ai donc enlevé :

 

$pdf->Cell($width, 0, self::l('Total').' '.(self::$_priceDisplayMethod == PS_TAX_EXC ? self::l(' (tax incl.)') : self::l(' (tax excl.)')).' : ', 0, 0, 'R');
$pdf->Cell(0, 0, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice((self::$_priceDisplayMethod == PS_TAX_EXC ? $priceBreakDown['totalWithTax'] : $priceBreakDown['totalWithoutTax']), self::$currency, true, false)), 0, 0, 'R');

 

 

et pour mon erreur "FPDF error: Some data has already been output, can't send PDF file"

enregistré le fichier PDF.php en mode encodage UTF-8 (sans BOM) ensuite transfert ftp en mode "auto"

 

Merci

Phil

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...