Katzele Posted March 1, 2011 Share Posted March 1, 2011 Bonjour,J'ai eu beau faire des essais, rien à faire, je m'avoue vaincue ! Sur mes factures je voudrais décaler d'environ 1 cm vers le bas les cellules livraison et facturation, de façon à ce que l'ensemble soit moins tassé en haut.Je suis allée dans PDF.php, j'ai bien vu des trucs de ce genre que j'ai essayé de modifier mais rien à faire : elseif (self::$delivery) $this->Cell(77, 10, self::l('DELIVERY SLIP #').' '.Tools::iconv('utf-8', self::encoding(), Configuration::get('PS_DELIVERY_PREFIX', intval($cookie->id_lang))).sprintf('d', self::$delivery), 0, 1, 'R'); Quelqu'un pourrait m'aider ? Merci d'avance. Link to comment Share on other sites More sharing options...
Samy_R Posted March 2, 2011 Share Posted March 2, 2011 Tu peux essayer $this->Ln(5); juste avant la cellule à décaler : elseif (self::$delivery) { $this->Ln(5); $this->Cell(77, 10, self::l('DELIVERY SLIP #').' '.Tools::iconv('utf-8', self::encoding(), Configuration::get('PS_DELIVERY_PREFIX', intval($cookie->id_lang))).sprintf('d', self::$delivery), 0, 1, 'R'); } Link to comment Share on other sites More sharing options...
Katzele Posted March 2, 2011 Author Share Posted March 2, 2011 Merci de ta réponse, mais j'ai essayé et ça ne change rien du tout. J'ai même testé sur différentes cellules "orderSlip" "deliver" et "order" Link to comment Share on other sites More sharing options...
Samy_R Posted March 2, 2011 Share Posted March 2, 2011 Essaie de doubler la ligne $this->Ln(5); Link to comment Share on other sites More sharing options...
Shogun Distribution Posted May 16, 2011 Share Posted May 16, 2011 ligne 385$pdf->Ln(25);$pdf->Cell($width, 10, self::l('Delivery'), 0, 'L');$pdf->Cell($width, 10, self::l('Invoicing'), 0, 'L'); Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now