Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
485 Vistas

Hi there,
can we have different  header in the printable  PDF quotation and invoice.
If yes then how we can archive it 
Thank You.

Avatar
Descartar
Mejor respuesta

Hi,
Please try this,

<template id="external_layout_header_inherit_cr" inherit_id="report.external_layout_header">
            <xpath expr="//div[@class='header']" position="replace">
                <div class="header">
                    <div class="row">
                        <div class="col-xs-3">
                        </div>
                        <div class="col-xs-9 text-right">
                            <h5>Custom Header</h5>
                        </div>
                    </div>
                    <div class="row zero_min_height">
                        <div class="col-xs-12">
                            <div style="border-bottom: 1px solid black;"/>
                        </div>
                    </div>        
                </div>
            </xpath>
        </template>


Hope it helps


Avatar
Descartar