Jump to content

Nombre de transportista en factura - 1.5


Recommended Posts

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

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 :D !
 
As Eddyb said, you just have to add this line:
{$order_invoice->getCarrier($order_invoice->id)->name}
In pdf/invoice.tpl!
 
Very easy...  :)
  • Like 1
Link to comment
Share on other sites

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.

  • Like 1
Link to comment
Share on other sites

  • 6 months later...
  • nadie locked this topic
Guest
This topic is now closed to further replies.
×
×
  • Create New...