pabloledesma Posted September 13, 2013 Share Posted September 13, 2013 Buenas noches a todos Quiero modificar la factura que genera mi tienda por defecto. Que tengo que hacer para lograrlo? Hay algún tutorial para esta ardua tarea? Muchas gracias por su valiosa ayuda. Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 13, 2013 Share Posted September 13, 2013 Indica que es lo que quieres modificar. En el directorio /pdf/ tienes los tpls de la factura. Link to comment Share on other sites More sharing options...
pabloledesma Posted September 13, 2013 Author Share Posted September 13, 2013 Estoy modificando el header.tpl y tengo problemas en la celda de la derecha. Cuando intento poner el texto, el sistema omite todo el header. Al parecer, el texto no cabe en la celda. <table style="width: 100%"> <tr> <td style="width: 50%"> {if $logo_path} <img src="{$logo_path}" style="width:{$width_logo}px; height:{$height_logo}px;" /> {/if} </td> <td style="width: 50%; text-align: left;"> <table style="width: 90%"> <tr> <td style="font-weight: bold; font-size: 14pt; color: #444; width: 100%;">FACTURA DE VENTA</td> </tr> <tr> <td style="font-size: 14pt; color: #9E9F9E">Resolución DIAN No. 320000560953 del 2009/04/21 Rango RV 1 al RV 1000 No somos Grandes Contribuyentes No somos Auto retenedores - IVA Régimen Común - Actividad Económica ICA 7400 - Tarifa 9.66 X 1000</td> </tr> </table> </td> </tr> </table> Link to comment Share on other sites More sharing options...
pabloledesma Posted September 14, 2013 Author Share Posted September 14, 2013 Hola a todos Estoy modificando la factura de mi tienda (invoice.tpl) y quiero ponerle una imagen de fondo a la tabla de productos pero estoy no se como poner la dirección de la imagen. He hecho estos intentos: <div style="background: url('{$img_ps_dir}/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div> <div style="background: url('img/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div> <div style="background: url('/img/bombillo.png'); background-size: 600px 658px; background-repeat: no-repeat;"></div> Ninguno da resultado. Si alguien me puede ayudar quedaría muy agradecido. Link to comment Share on other sites More sharing options...
tuk66 Posted September 17, 2013 Share Posted September 17, 2013 (edited) Trate de envolver la etiqueta <div> superior en invoice.tpl <body style="background: url('img/bombillo.png')"> .... </body>Si va a trabajar a continuación, añadir más opciones de estilo CSS. Try to wrap the uppermost <div> tag in invoice.tpl with <body style="background: url('img/bombillo.png')"> .... </body> If it will work then add more CSS style options. Edited September 17, 2013 by tuk66 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts