Skip to Content
Menu
This question has been flagged
1 Reply
482 Views

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
Discard
Best Answer

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
Discard