Siete Euros Posted September 21, 2013 Share Posted September 21, 2013 Buenas, ando bastante espeso y no encuentro algo relacionado en el foro, quiero quitar la linea gruesa que aparece en las facturas y albaranes (adjunto imagen), tengo un cliente que quiere ahorrar tinta ya que va a imprimir muchas facturas y albaranes y quiere que el fondo de esa barra sea blanco y la letra blanca sea negra, asi ahorra tinta. ¿dónde o cómo se puede modificar eso? saludos y gracias. Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 21, 2013 Share Posted September 21, 2013 Dentro del directorio /pdf/ tienes los tpls de los albaranes y facturas, puedes quitarle el fondo ahí (creo recordar *) Link to comment Share on other sites More sharing options...
Sergio Ruiz Posted September 22, 2013 Share Posted September 22, 2013 Por ejemplo las facturas: Ejemplo si nos vamos al fichero: /pdf/invoice.tpl o en caso de que lo tengas sobreescrito en tu plantilla, al fichero: /themes/plantilla/pdf/invoice.tpl Y buscamos esto: <tr style="line-height:4px;"> <td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 10px; font-weight: bold; width: {if !$tax_excluded_display}35%{else}45%{/if}">{l s='Product / Reference' pdf='true'}</td> <!-- unit price tax excluded is mandatory --> {if !$tax_excluded_display} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 20%">{l s='Unit Price' pdf='true'} <br />{l s='(Tax Excl.)' pdf='true'}</td> {/if} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%"> {l s='Unit Price' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%; white-space: nowrap;">{l s='Discount' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: center; font-weight: bold; width: 10%">{l s='Qty' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: {if !$tax_excluded_display}15%{else}25%{/if}"> {l s='Total' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> </tr> Es lo correspondiente a esta parte: (Muestro Imagen) Si quieres cambiar el fondo, cambia esto: background-color: #4D4D4D; Si quieres quitar el fondo, quita esto: background-color: #4D4D4D; y lógicamente cambia el: color: #FFF; si no las letras no se verán. Si quieres directamente quitar el encabezado, cambia esto: <tr style="line-height:4px;"> <td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 10px; font-weight: bold; width: {if !$tax_excluded_display}35%{else}45%{/if}">{l s='Product / Reference' pdf='true'}</td> <!-- unit price tax excluded is mandatory --> {if !$tax_excluded_display} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 20%">{l s='Unit Price' pdf='true'} <br />{l s='(Tax Excl.)' pdf='true'}</td> {/if} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%"> {l s='Unit Price' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%; white-space: nowrap;">{l s='Discount' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: center; font-weight: bold; width: 10%">{l s='Qty' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: {if !$tax_excluded_display}15%{else}25%{/if}"> {l s='Total' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> </tr> por esto {* <tr style="line-height:4px;"> <td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 10px; font-weight: bold; width: {if !$tax_excluded_display}35%{else}45%{/if}">{l s='Product / Reference' pdf='true'}</td> <!-- unit price tax excluded is mandatory --> {if !$tax_excluded_display} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 20%">{l s='Unit Price' pdf='true'} <br />{l s='(Tax Excl.)' pdf='true'}</td> {/if} <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%"> {l s='Unit Price' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: 10%; white-space: nowrap;">{l s='Discount' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: center; font-weight: bold; width: 10%">{l s='Qty' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: right; font-weight: bold; width: {if !$tax_excluded_display}15%{else}25%{/if}"> {l s='Total' pdf='true'} {if $tax_excluded_display} {l s='(Tax Excl.)' pdf='true'} {else} {l s='(Tax Incl.)' pdf='true'} {/if} </td> </tr> *} (Aunque supongo esto, no lo quieres xDDD) Por ejemplo, sinos vamos a los albaranes: En el fichero: delivery-slip.tpl Vamos a mostrar el codigo de la parte que muestro en la siguiente imagen: Es este codigo: <tr style="line-height:6px;"> <td style="text-align: left; background-color: #4D4D4D; color: #FFF; padding-left: 10px; font-weight: bold; width: 60%">{l s='ITEMS TO BE DELIVERED' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: left; font-weight: bold; width: 20%">{l s='REFERENCE' pdf='true'}</td> <td style="background-color: #4D4D4D; color: #FFF; text-align: center; font-weight: bold; width: 20%">{l s='QTY' pdf='true'}</td> </tr> Donde si queremos cambiar el background, cambiamos esto: background-color: #4D4D4D; y si queremos quitarlo quitamos esto: background-color: #4D4D4D; Y si queremos cambiar el color blanco de las letras, cambia esto: color: #FFF; etc... etc.. etc.. etc.. etc.. 1 Link to comment Share on other sites More sharing options...
Enrique Gómez Posted September 22, 2013 Share Posted September 22, 2013 Perfecto Sergio!! Yo he estado metiendole mano a esto de las plantillas y sólo añadiría no perder la paciencia si no funcionan los paddings y margins, porque la libreria tcpdf hace lo que puede pero no soporta todo el css. http://sourceforge.net/p/tcpdf/discussion/435311/thread/785fae94 Link to comment Share on other sites More sharing options...
Recommended Posts