aramicadiz Posted January 5, 2015 Share Posted January 5, 2015 Buenas, estoy retocando mi factura (version 1.5) y ya sólo me quedan dos cositas que no he podido arreglar. 1. Qué debo arreglar para que me aparezca el NOMBRE DEL TRANSPORTISTA en la factura? en el albarán aparece pero en la factura no. He estado comparando los archivos, pero no veo la diferencia 2. Quiero quitar las franjas grises a los ítems, pero he tocado los colores del archivo invoice.tpl y no consigo modificarlo, será en otro sitio? Muchas gracias!! Link to comment Share on other sites More sharing options...
nadie Posted January 5, 2015 Share Posted January 5, 2015 Buenas, estoy retocando mi factura (version 1.5) y ya sólo me quedan dos cositas que no he podido arreglar. 1. Qué debo arreglar para que me aparezca el NOMBRE DEL TRANSPORTISTA en la factura? en el albarán aparece pero en la factura no. He estado comparando los archivos, pero no veo la diferencia Revisa este tema: http://www.prestashop.com/forums/topic/190687-carrier-in-invoice/ Hello, You can put the carriers info into your invoice adding the following code : Into the file classes/pdf/HTMLTemplateInvoice, inside the function getContent() , put this code: $carrier = new Carrier((int)$this->order->id_carrier); $this->smarty->assign(array( 'order' => $this->order, 'carrier' => $carrier, )); and then in the file located in pdf/invoice.tpl, put the following code where do you want to appear into your invoice : {$carrier->name} - in order to show the carrier name. Best regards! Alternatively just add: {$order_invoice->getCarrier($order_invoice->id)->name} In pdf/invoice.tpl wherever you want the carrier name. Thanks to you guys! Very helpfull for me because I'm looking for this solution since months and I finally find it ! As Eddyb said, you just have to add this line: {$order_invoice->getCarrier($order_invoice->id)->name} In pdf/invoice.tpl! Very easy... 1 Link to comment Share on other sites More sharing options...
aramicadiz Posted January 5, 2015 Author Share Posted January 5, 2015 Muchas gracias lo miro Link to comment Share on other sites More sharing options...
aramicadiz Posted January 8, 2015 Author Share Posted January 8, 2015 No me ha funcionado, lo he hecho de las dos maneras, pero no se mofidifica nada Uso la versión PrestaShop™ 1.5.6.2 esto tendrá algo que ver? Link to comment Share on other sites More sharing options...
tuk66 Posted January 9, 2015 Share Posted January 9, 2015 2. Quiero quitar las franjas grises a los ítems, pero he tocado los colores del archivo invoice.tpl y no consigo modificarlo, será en otro sitio? Cambio {cycle values='#FFF,#DDD' assign=bgcolor} a {cycle values='#FFF' assign=bgcolor} en /pdf/invoice.tpl. 1 Link to comment Share on other sites More sharing options...
Zumo Posted July 23, 2015 Share Posted July 23, 2015 Me ha funcionado en la versión 1.6.1.0 ¡Mil gracias! Link to comment Share on other sites More sharing options...
Recommended Posts