Jump to content

Recommended Posts

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

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

  • 2 months later...

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...