moaad
moaad

Reputation: 1

How to add watermarks in all pages of Odoo 11 Reports?

I want to show watermark on all pages in odoo 11. i have tried this How to add watermarks in all pages of Odoo Reports? but doesn't work with odoo 11. So how to add watermarks in all pages of Odoo 11 Reports?

Upvotes: 0

Views: 416

Answers (2)

Jack Sparrow
Jack Sparrow

Reputation: 666

You can do like this example

<style>
.watermark {
    position: absolute;
    opacity: 0.25;
    z-index: 1000;
    transform: rotate(300deg);
    -webkit-transform: rotate(300deg);
    width: 150%;
}

<div class="watermark">
<p>WATERMARK</p>
<img t-att-. src="'/module_name/static/src/img/image_name.png'" />
</div>

Upvotes: 0

Atul Arvind
Atul Arvind

Reputation: 16733

Please check Reports with Watermark module for Odoo v11. with the configuration on the company record, you can enable the watermark on the pdf reports throughout Odoo.

hope this helps!

Upvotes: 1

Related Questions