dreside Posted February 28, 2012 Share Posted February 28, 2012 Buon giorno a tutti, vorrei sapere in che modo possa modificare le dimensioni del logo nelle fatture in modo da risolvere il problema dell'intestazione della ditta. In alternativa vorrei sapere come sia possibile inserire le informazioni sulla ragione sociale , p.iva ecc in maniera testuale all'interno della fattura. Grazie Link to comment Share on other sites More sharing options...
2NEKO Posted April 5, 2012 Share Posted April 5, 2012 Ciao devi andare sul file PDf.php e modificare le impostazioni alla riga 144 (public function Header()) Qui troverai verso la 156 riga dei numeri esempio: if (file_exists(_PS_IMG_DIR_.'/logo_invoice.jpg')) { if ($this->_isPngFile(_PS_IMG_DIR_.'/logo_invoice.jpg')) $this->Image(_PS_IMG_DIR_.'/logo_invoice.jpg', 10, 8, 0, 15, 'PNG'); Modifica i numeri a tuo piacimento e fai delle prove di grandezza. Ti dico che il 10 e l'8 indicano la distanza dal bordo documento e che il 15 cambia la dimensione del logo. Le stesse modifiche poi le devi apportare anche sul rigo 160/166/168. www.2neko.com Link to comment Share on other sites More sharing options...
atcom Posted September 7, 2012 Share Posted September 7, 2012 Grazie 2NEKO per la soluzione, non so se puoi aiutarmi, ho modificato ingrandendo il logo come hai suggerito ma ora va a sovrapporsi all'intestazione, come posso far in modo che tutto il corpo della fattura si abbassi lasciando così il logo libero? Ti ringrazio Andrea P.s. purtroppo non so nulla di php Link to comment Share on other sites More sharing options...
atcom Posted September 7, 2012 Share Posted September 7, 2012 RISOLTO !! Se a qualcuno interessa ho modificato i valori sempre nel file PDF.php che si trovano $pdf->SetY(25); <--------- SPOSTA INTESTAZIONI CONSEGNA e FATTURAZIONE $pdf->SetFont(self::fontname(), '', 12); $pdf->Cell($width, 10, self::l('Delivery'), 0, 'L'); $pdf->Cell($width, 10, self::l('Invoicing'), 0, 'L'); e per abbassare tutta l'intestazione CONSEGNA e FATTURAZIONE $maxY = 0; $pdf->setY($pdf->GetY() + 25); <---------------- SPOSTA IN BASSO INDIRIZZO CONSEGNA e SPEDIZIONE foreach($addressType as $type => $idNameAttribute) Link to comment Share on other sites More sharing options...
PointerLGT Posted November 23, 2014 Share Posted November 23, 2014 Per quanto riguarda la versione PS 1.6 il file da mofificare e' il PDFGenerator.php nella cartella class/pdf $this->SetHeaderMargin(5); ------------------riga 187 muove l'header verso l'alto o verso il basso $this->SetFooterMargin(18);---------------riga 188 muove il footer $this->setMargins(10, 50, 10);-------------riga 189 il valore centrale muove il corpo del documento in alto o in basso Saluti Link to comment Share on other sites More sharing options...
gardenhome Posted November 21, 2016 Share Posted November 21, 2016 Come faccio ad aumentare l'altezza del logo sulle fatture? o la versione 1.6 qualcuno sa dirmi come fare perche le instruzioni qui sopra sono vecchie Link to comment Share on other sites More sharing options...
tuk66 Posted November 22, 2016 Share Posted November 22, 2016 Modificare l'altezza in questo frammento nel file /pdf/header.tpl: Change the height in this snippet in the /pdf/header.tpl file: <img src="{$logo_path}" style="width:{$width_logo}px; height:{$height_logo}px;" /> Link to comment Share on other sites More sharing options...
gardenhome Posted November 28, 2016 Share Posted November 28, 2016 basta che copio e incollo questa riga? mi aiuti? Link to comment Share on other sites More sharing options...
tuk66 Posted November 28, 2016 Share Posted November 28, 2016 Prova a giocare con lui: Try to play with it: <img src="{$logo_path}" style="width:300px; height:120}px;" /> o <img src="{$logo_path}" style="width:25mm;" /> o <img src="{$logo_path}" /> 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