diff --git a/pdf_report_with_watermark/README.rst b/pdf_report_with_watermark/README.rst new file mode 100644 index 000000000..ac0ac5028 --- /dev/null +++ b/pdf_report_with_watermark/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Reports With Watermark +====================== +* This module allow to have watermark on your pdf reports + +Installation +============ + - www.odoo.com/documentation/17.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/17.0/legal/licenses/licenses.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer:(v17) Vishnu KP, Contact: odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +.. image:: https://cybrosys.com/images/logo.png + :target: https://cybrosys.com + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit `Our Website `__ + + +Further information +=================== +HTML Description: ``__ diff --git a/pdf_report_with_watermark/__init__.py b/pdf_report_with_watermark/__init__.py new file mode 100644 index 000000000..395418616 --- /dev/null +++ b/pdf_report_with_watermark/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Vishnu KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/pdf_report_with_watermark/__manifest__.py b/pdf_report_with_watermark/__manifest__.py new file mode 100644 index 000000000..6aa617131 --- /dev/null +++ b/pdf_report_with_watermark/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Vishnu KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': 'Reports With Watermark', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary':"""Print the PDF reports with watermark""", + 'description':"""This module allows you to add watermarks to PDF reports + generated in Odoo. You can customize the watermark text, font, size, + color, and position.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': "https://www.cybrosys.com", + 'depends': ['base', 'mail'], + 'data': [ + 'views/res_company_views.xml', + 'report/pdf_with_watermark_template.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/pdf_report_with_watermark/doc/RELEASE_NOTES.md b/pdf_report_with_watermark/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..434990b78 --- /dev/null +++ b/pdf_report_with_watermark/doc/RELEASE_NOTES.md @@ -0,0 +1,5 @@ +## Module +#### 04.03.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial Commit for Reports With Watermark diff --git a/pdf_report_with_watermark/models/__init__.py b/pdf_report_with_watermark/models/__init__.py new file mode 100644 index 000000000..8db0c56da --- /dev/null +++ b/pdf_report_with_watermark/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Vishnu KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_company diff --git a/pdf_report_with_watermark/models/res_company.py b/pdf_report_with_watermark/models/res_company.py new file mode 100644 index 000000000..18e1530a6 --- /dev/null +++ b/pdf_report_with_watermark/models/res_company.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Vishnu KP (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResCompany(models.Model): + """Introduce watermark in pdf reports""" + _inherit = 'res.company' + + watermark = fields.Boolean(string='Watermark', + help='Enable it, if you want to apply watermark ' + 'on all your pdf reports') + content_text = fields.Char(string='Text', + help="Enter the text You want to display") + watermark_type = fields.Selection([('image', 'Image'), + ('text', 'Text'), ('logo', 'Logo'),], + default='text', + help='Select the Type of watermark') + color_picker = fields.Char(string='Color Picker', help='Select the Color') + font_size = fields.Integer(string='Font size', default=20, + help="Enter the font size for the text") + background_image = fields.Image(string='Image', + help='Set an image to display') + rotating_angle = fields.Float(string='Angle of Rotation', + help='Enter the angle of rotation') diff --git a/pdf_report_with_watermark/report/pdf_with_watermark_template.xml b/pdf_report_with_watermark/report/pdf_with_watermark_template.xml new file mode 100644 index 000000000..a8ab68567 --- /dev/null +++ b/pdf_report_with_watermark/report/pdf_with_watermark_template.xml @@ -0,0 +1,31 @@ + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/icons/capture (1).png b/pdf_report_with_watermark/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/capture (1).png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/check.png b/pdf_report_with_watermark/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/check.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/chevron.png b/pdf_report_with_watermark/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/chevron.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/cogs.png b/pdf_report_with_watermark/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/cogs.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/consultation.png b/pdf_report_with_watermark/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/consultation.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/ecom-black.png b/pdf_report_with_watermark/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/ecom-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/education-black.png b/pdf_report_with_watermark/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/education-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/hotel-black.png b/pdf_report_with_watermark/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/hotel-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/img.png b/pdf_report_with_watermark/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/img.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/license.png b/pdf_report_with_watermark/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/license.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/lifebuoy.png b/pdf_report_with_watermark/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/lifebuoy.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/manufacturing-black.png b/pdf_report_with_watermark/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/manufacturing-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/photo-capture.png b/pdf_report_with_watermark/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/photo-capture.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/pos-black.png b/pdf_report_with_watermark/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/pos-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/puzzle.png b/pdf_report_with_watermark/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/puzzle.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/restaurant-black.png b/pdf_report_with_watermark/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/restaurant-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/service-black.png b/pdf_report_with_watermark/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/service-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/trading-black.png b/pdf_report_with_watermark/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/trading-black.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/training.png b/pdf_report_with_watermark/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/training.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/update.png b/pdf_report_with_watermark/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/update.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/user.png b/pdf_report_with_watermark/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/user.png differ diff --git a/pdf_report_with_watermark/static/description/assets/icons/wrench.png b/pdf_report_with_watermark/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/icons/wrench.png differ diff --git a/pdf_report_with_watermark/static/description/assets/misc/Cybrosys R.png b/pdf_report_with_watermark/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/misc/Cybrosys R.png differ diff --git a/pdf_report_with_watermark/static/description/assets/misc/email.svg b/pdf_report_with_watermark/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/phone.svg b/pdf_report_with_watermark/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/star (1) 2.svg b/pdf_report_with_watermark/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/support (1) 1.svg b/pdf_report_with_watermark/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/support-email.svg b/pdf_report_with_watermark/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/tick-mark.svg b/pdf_report_with_watermark/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/whatsapp 1.svg b/pdf_report_with_watermark/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/misc/whatsapp.svg b/pdf_report_with_watermark/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/pdf_report_with_watermark/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/pdf_report_with_watermark/static/description/assets/modules/1.png b/pdf_report_with_watermark/static/description/assets/modules/1.png new file mode 100644 index 000000000..ba1058c42 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/1.png differ diff --git a/pdf_report_with_watermark/static/description/assets/modules/2.png b/pdf_report_with_watermark/static/description/assets/modules/2.png new file mode 100644 index 000000000..6949185dd Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/2.png differ diff --git a/pdf_report_with_watermark/static/description/assets/modules/3.png b/pdf_report_with_watermark/static/description/assets/modules/3.png new file mode 100644 index 000000000..4e506f79b Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/3.png differ diff --git a/pdf_report_with_watermark/static/description/assets/modules/4.png b/pdf_report_with_watermark/static/description/assets/modules/4.png new file mode 100644 index 000000000..e78427938 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/4.png differ diff --git a/pdf_report_with_watermark/static/description/assets/modules/5.png b/pdf_report_with_watermark/static/description/assets/modules/5.png new file mode 100755 index 000000000..272ec20f9 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/5.png differ diff --git a/pdf_report_with_watermark/static/description/assets/modules/6.png b/pdf_report_with_watermark/static/description/assets/modules/6.png new file mode 100644 index 000000000..7d5c3154f Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/modules/6.png differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/1.png b/pdf_report_with_watermark/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..b8e8e789d Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/1.png differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/2.png b/pdf_report_with_watermark/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..8f8935310 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/2.png differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/3.png b/pdf_report_with_watermark/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..cf2abdc34 Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/3.png differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/4.png b/pdf_report_with_watermark/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..074cd704c Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/4.png differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/hero.gif b/pdf_report_with_watermark/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..33d349c1e Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/hero.gif differ diff --git a/pdf_report_with_watermark/static/description/assets/screenshots/pdf_report_with_watermark.zip b/pdf_report_with_watermark/static/description/assets/screenshots/pdf_report_with_watermark.zip new file mode 100644 index 000000000..ec83fe68b Binary files /dev/null and b/pdf_report_with_watermark/static/description/assets/screenshots/pdf_report_with_watermark.zip differ diff --git a/pdf_report_with_watermark/static/description/banner.jpg b/pdf_report_with_watermark/static/description/banner.jpg new file mode 100644 index 000000000..805529f1b Binary files /dev/null and b/pdf_report_with_watermark/static/description/banner.jpg differ diff --git a/pdf_report_with_watermark/static/description/icon.png b/pdf_report_with_watermark/static/description/icon.png new file mode 100644 index 000000000..bd0a8cb50 Binary files /dev/null and b/pdf_report_with_watermark/static/description/icon.png differ diff --git a/pdf_report_with_watermark/static/description/index.html b/pdf_report_with_watermark/static/description/index.html new file mode 100644 index 000000000..f22d20d3c --- /dev/null +++ b/pdf_report_with_watermark/static/description/index.html @@ -0,0 +1,632 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo SH +
+
+
+
+
+
+

+ Reports With Watermark

+

+ Apply Watermark On All PDF Reports +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

+ Odoo 17 Community & Enterprise Edition + Support.

+

Watermark + feature in PDF report in Odoo 17 Community & + Enterprise Edition. +

+
+
+
+
+
+
+ +
+
+

+ Watermark in Pdf Report.

+

Watermark in all Pages of the Pdf Report. +

+
+
+
+
+
+
+ +
+
+

Three Types of Watermark

+

You can add Text, Images, and the Company logo as Watermarks. +

+
+
+
+
+
+
+ +
+
+

Customize Text Color and Font-size.

+

You can Customize the Color and Font-size of the Text in the Watermark. +

+
+
+
+
+
+
+ +
+
+

You can Adjust the Angle of the Watermark.

+

Option for Adjust the Angle of Rotation of the Watermark. +

+
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+

Company Page +

+
Water-mark Setting Section in the Company Form Page
+
+
+
+
+
+
+ +
+
+

+ Logo in the Invoice Page

+
+ You can view the Applied Company Logo on the Invoice page.
+
+
+
+
+
+
+ +
+
+

+ Transparent Image in the Form view.

+
+ You can view the Applied Image on the Invoice page.
+
+
+
+
+
+
+ +
+
+

+ Text Water-mark

+
+ You can view the Applied Text on the invoice page.
+
+
+
+
+
+
+
    +
  • + Option for Add Water-mark in pdf report. +
  • +
  • + Can add Image , text and logo As Water-mark. +
  • +
  • + Adjustable angle of rotation for the Water-mark. +
  • + +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:04th Mar 2024 +
+

+ Odoo 17 Pdf Report with Watermark.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Licensing Consultancy

+
+
+
+
+
+
+

Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

Education

+

A platform for educational management

+
+
+
+
+ +

Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service Management

+

Keep track of services and invoice

+
+
+
+
+ +

Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to us on WhatsApp!

+
+91 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/pdf_report_with_watermark/views/res_company_views.xml b/pdf_report_with_watermark/views/res_company_views.xml new file mode 100644 index 000000000..8c13be2e8 --- /dev/null +++ b/pdf_report_with_watermark/views/res_company_views.xml @@ -0,0 +1,26 @@ + + + + + res.company.view.form.inherit.pdf.report.with.watermark + res.company + + + + + + + + + + + + + +