Ceinpre Posted January 29, 2016 Share Posted January 29, 2016 Buenos díás.Cuando genero una factura, en el apartado "Dircción de entrega y facuración" del PDF me aparece en la izquierda del documento.¿Se podría poner a la derecha?Si fuera posible, ¿me podríais indicar como?Gracias! Link to comment Share on other sites More sharing options...
tuk66 Posted January 31, 2016 Share Posted January 31, 2016 ¿Qué versión? Link to comment Share on other sites More sharing options...
Ceinpre Posted February 1, 2016 Author Share Posted February 1, 2016 ¿Qué versión? 1.6.0.11 Link to comment Share on other sites More sharing options...
tuk66 Posted February 1, 2016 Share Posted February 1, 2016 Trate de usar este código en la plantilla /pdf/invoice.tpl (no probado): Try to use this code in the /pdf/invoice.tpl template (not tested): <!-- ADDRESSES --> <table style="width: 100%"> <tr> <td style="width: 17%"></td> <td style="width: 83%"> {if !empty($delivery_address)} <table style="width: 100%"> <tr> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Delivery Address' pdf='true'}</span><br /> {$delivery_address} </td> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Billing Address' pdf='true'}</span><br /> {$invoice_address} </td> </tr> </table> {else} <table style="width: 100%"> <tr> <td style="width: 50%"> </td> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Billing & Delivery Address.' pdf='true'}</span><br /> {$invoice_address} </td> </tr> </table> {/if} </td> </tr> </table> <!-- / ADDRESSES --> Link to comment Share on other sites More sharing options...
Ceinpre Posted February 1, 2016 Author Share Posted February 1, 2016 Trate de usar este código en la plantilla /pdf/invoice.tpl (no probado): Try to use this code in the /pdf/invoice.tpl template (not tested): <!-- ADDRESSES --> <table style="width: 100%"> <tr> <td style="width: 17%"></td> <td style="width: 83%"> {if !empty($delivery_address)} <table style="width: 100%"> <tr> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Delivery Address' pdf='true'}</span><br /> {$delivery_address} </td> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Billing Address' pdf='true'}</span><br /> {$invoice_address} </td> </tr> </table> {else} <table style="width: 100%"> <tr> <td style="width: 50%"> </td> <td style="width: 50%"> <span style="font-weight: bold; font-size: 10pt; color: #9E9F9E">{l s='Billing & Delivery Address.' pdf='true'}</span><br /> {$invoice_address} </td> </tr> </table> {/if} </td> </tr> </table> <!-- / ADDRESSES --> Muchísimas gracias! Funciona! Permíteme que abuse de tu confianza... Cuando emito una factura, arriba a la izquierda, me aparece el nombre de mi empresa, la fecha y el número de factura. ¿Puedo añadir más campos? Por ejemplo... ¿la dirección física y el CIF? Es que me aparecen esos datos en el pié, pero me gustaría que me apareciera en el encabezado o junto a "Dirección de entrega y facturación" (parte izquierda del documento) Gracias! Link to comment Share on other sites More sharing options...
tuk66 Posted February 1, 2016 Share Posted February 1, 2016 Usted puede añadir cualquier texto plano. En este caso en la plantilla /pdf/header.tpl. You can add any plain text. In this case in the /pdf/header.tpl template. Link to comment Share on other sites More sharing options...
Recommended Posts