diff --git a/base_advanced_report_templates/README.rst b/base_advanced_report_templates/README.rst new file mode 100644 index 000000000..d9cfcdda3 --- /dev/null +++ b/base_advanced_report_templates/README.rst @@ -0,0 +1,42 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Odoo Professional Report Templates +================================== +Odoo Professional Report Templates. + +License +------- +General Public License, Version 3 (LGPL-3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +Developers: (V17) Subina P, (V16) Gayathri, Contact: odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://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/base_advanced_report_templates/__init__.py b/base_advanced_report_templates/__init__.py new file mode 100644 index 000000000..8d20355a2 --- /dev/null +++ b/base_advanced_report_templates/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 model diff --git a/base_advanced_report_templates/__manifest__.py b/base_advanced_report_templates/__manifest__.py new file mode 100644 index 000000000..466ba8968 --- /dev/null +++ b/base_advanced_report_templates/__manifest__.py @@ -0,0 +1,69 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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': 'Odoo Professional Report Templates', + 'version': '17.0.1.0.0', + 'category': 'Sales,Purchases,Accounting,Warehouse', + 'summary': "Report Templates, Professional Report Templates, Report Customisations, Sale Reports, Purchase Reports, Invoice Reports, Templates, Odoo17, Oodoo Apps", + 'description': "To tailor the presentation of different reports such as " + "Sales Orders, Purchase Orders, Invoices, and Delivery " + "Orders, the process involves customizing the report " + "templates , especially for PDF reports By doing so, " + "you can personalize the design,content of these reports to" + "better suit your business needs and preferences.", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'sale_management', 'account', 'stock', 'purchase'], + 'data': [ + 'data/doc_layout_data.xml', + 'security/ir.model.access.csv', + 'views/res_company_views.xml', + 'views/sale_order_views.xml', + 'views/purchase_order_views.xml', + 'views/account_move_views.xml', + 'views/stock_picking_views.xml', + 'views/doc_layout_views.xml', + 'views/purchase_traditional_templates.xml', + 'views/purchase_standard_templates.xml', + 'views/purchase_modern_templates.xml', + 'views/purchase_attractive_templates.xml', + 'views/sale_traditional_templates.xml', + 'views/sale_standrd_templates.xml', + 'views/sale_modern_templates.xml', + 'views/sale_attractive_templates.xml', + 'views/stock_traditional_templates.xml', + 'views/stock_standard_templates.xml', + 'views/stock_modern_templates.xml', + 'views/stock_attractive_templates.xml', + 'views/account_traditional_templates.xml', + 'views/account_standrd_templates.xml', + 'views/account_modern_templates.xml', + 'views/account_attractive_templates.xml', + ], + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, +} diff --git a/base_advanced_report_templates/data/doc_layout_data.xml b/base_advanced_report_templates/data/doc_layout_data.xml new file mode 100644 index 000000000..91d3b919f --- /dev/null +++ b/base_advanced_report_templates/data/doc_layout_data.xml @@ -0,0 +1,53 @@ + + + + + + Modern + #732673 + #ffffff + #000000 + #000000 + right + right + left + #808080 + + + + Standard + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + + Traditional + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + + Attractive + #ff7733 + #ffffff + #000000 + #000000 + left + left + right + #808080 + + + diff --git a/base_advanced_report_templates/doc/RELEASE_NOTES.md b/base_advanced_report_templates/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..c052f59ab --- /dev/null +++ b/base_advanced_report_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 09.04.2024 +#### Version 17.0.1.0.0 +##### ADD +- Initial commit for Odoo Professional Report Templates diff --git a/base_advanced_report_templates/model/__init__.py b/base_advanced_report_templates/model/__init__.py new file mode 100644 index 000000000..4699e4170 --- /dev/null +++ b/base_advanced_report_templates/model/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 account_move +from . import account_move_line +from . import base_document_layout +from . import doc_layout +from . import purchase_order_line +from . import purchase_order +from . import res_company +from . import sale_order +from . import sale_order_line +from . import stock_move +from . import stock_picking diff --git a/base_advanced_report_templates/model/account_move.py b/base_advanced_report_templates/model/account_move.py new file mode 100644 index 000000000..44365c66d --- /dev/null +++ b/base_advanced_report_templates/model/account_move.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class AccountMove(models.Model): + _inherit = 'account.move' + + theme_id = fields.Many2one('doc.layout', + related='company_id.account_document_layout_id', + help='This field is used to specify the document' + 'layout theme associated with the company.', + string='Theme') + diff --git a/base_advanced_report_templates/model/account_move_line.py b/base_advanced_report_templates/model/account_move_line.py new file mode 100644 index 000000000..365d32621 --- /dev/null +++ b/base_advanced_report_templates/model/account_move_line.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 AccountMoveLine(models.Model): + """invoice line image""" + _inherit = 'account.move.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="This field represents the image " + "associated with the product on the " + "invoice line." + ) diff --git a/base_advanced_report_templates/model/base_document_layout.py b/base_advanced_report_templates/model/base_document_layout.py new file mode 100644 index 000000000..ebddb5788 --- /dev/null +++ b/base_advanced_report_templates/model/base_document_layout.py @@ -0,0 +1,190 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields, api + + +class BaseDocumentLayout(models.TransientModel): + """ + This model extends the 'base.document.layout' transient model to + incorporate additional document layout fields related to sales, + purchases, and company-wide settings. + """ + _inherit = 'base.document.layout' + + sale_document_layout_id = fields.Many2one( + related='company_id.sale_document_layout_id', readonly=False, + string="Sale Document Layout", help="This field specify the " + "document layout for sales associated with the company." + ) + + purchase_document_layout_id = fields.Many2one( + related='company_id.purchase_document_layout_id', readonly=False, + string="Purchase Document Layout", + help="This field specify the document layout for purchases associated " + "with the company." + ) + account_document_layout_id = fields.Many2one( + related='company_id.account_document_layout_id', readonly=False, + string="Account Document Layout", + help="This field specify the document layout for accounting " + "associated with the company." + ) + stock_document_layout_id = fields.Many2one( + related='company_id.stock_document_layout_id', readonly=False, + string="Stock Document Layout", + help="This field specify the document layout for stock " + "management associated with the company. " + ) + + watermark = fields.Boolean(string='Watermark', + help="This field is used to specify the document" + "layout for stock management associated " + "with the company." + ) + + watermark_show = fields.Selection([ + ('logo', 'Company Logo'), + ('name', 'Company Name'), + ], default='logo', string="Watermark Show", + help="Select the element to show as a watermark on the documents." + ) + + @api.depends('report_layout_id', 'logo', 'font', 'primary_color', + 'secondary_color', 'report_header', 'report_footer', + 'sale_document_layout_id', + 'stock_document_layout_id', 'account_document_layout_id', + 'purchase_document_layout_id') + def _compute_preview(self): + """ compute a qweb based preview to display on the wizard """ + styles = self._get_asset_style() + for wizard in self: + if wizard.report_layout_id: + if wizard.sale_document_layout_id: + if wizard.sale_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_modern_document', + {'company': wizard, 'preview_css': preview_css}) + elif wizard.sale_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.sale_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.sale_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_saleorder_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + if wizard.purchase_document_layout_id: + if wizard.purchase_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_modern_document', + {'company': wizard, 'preview_css': preview_css}) + elif wizard.purchase_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.purchase_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.purchase_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_purchaseorder_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + if wizard.account_document_layout_id: + if wizard.account_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_modern_document', + {'company': wizard, 'preview_css': preview_css}) + elif wizard.account_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.account_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.account_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_account_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + if wizard.stock_document_layout_id: + if wizard.stock_document_layout_id == 'modern': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_modern_document', + {'company': wizard, 'preview_css': preview_css}) + elif wizard.stock_document_layout_id == 'traditional': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_traditional_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.stock_document_layout_id == 'standard': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_standard_document', + {'company': wizard, 'preview_css': preview_css, }) + elif wizard.stock_document_layout_id == 'attractive': + preview_css = self._get_css_for_preview(styles, wizard.id) + ir_ui_view = wizard.env['ir.ui.view'] + wizard.preview = ir_ui_view._render_template( + 'base_advanced_report_templates.report_stock_attractive_document', + {'company': wizard, 'preview_css': preview_css, }) + else: + wizard.preview = False + else: + wizard.preview = False diff --git a/base_advanced_report_templates/model/doc_layout.py b/base_advanced_report_templates/model/doc_layout.py new file mode 100644 index 000000000..c968b2754 --- /dev/null +++ b/base_advanced_report_templates/model/doc_layout.py @@ -0,0 +1,61 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class DocLayout(models.Model): + """Adding the fields for customization""" + _name = "doc.layout" + _description = 'Adding the fields for customization' + + name = fields.Char("Name") + + base_color = fields.Char("Base Color", + help="Background color for the invoice") + + heading_text_color = fields.Char("Heading text Color", + help="Heading Text color") + + text_color = fields.Char("Text Color", help="Text color of items") + + customer_text_color = fields.Char("Customer Text Color", + help="Customer address text color") + + company_text_color = fields.Char("Company Text Color", + help="Company address Text color") + + logo_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Logo Position", + help="Company logo position") + + customer_position = fields.Selection( + [('left', 'Left'), ('right', 'Right')], string="Customer position", + help="Customer address position") + + company_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Company Address Position", + help="Company address position") + + company_id = fields.Many2one('res.company', string='Company', index=True, + default=lambda self: self.env.company, + help="Company name") diff --git a/base_advanced_report_templates/model/purchase_order.py b/base_advanced_report_templates/model/purchase_order.py new file mode 100644 index 000000000..b15687493 --- /dev/null +++ b/base_advanced_report_templates/model/purchase_order.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class PurchaseOrder(models.Model): + """ This model extends the 'purchase.order' model to include additional + fields related to document layout, specifically the 'theme_id' field.""" + _inherit = 'purchase.order' + + theme_id = fields.Many2one('doc.layout', + related='company_id.purchase_document_layout_id', + string='Document Layout Theme', + help="This field is used to specify the document" + "layout theme associated with the company's" + " purchase orders. " + ) + diff --git a/base_advanced_report_templates/model/purchase_order_line.py b/base_advanced_report_templates/model/purchase_order_line.py new file mode 100644 index 000000000..6378a0f29 --- /dev/null +++ b/base_advanced_report_templates/model/purchase_order_line.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 PurchaseOrderLine(models.Model): + """purchase orderline image""" + _inherit = 'purchase.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="This field represents the image " + "associated with the product on the" + " purchase order line.") diff --git a/base_advanced_report_templates/model/res_company.py b/base_advanced_report_templates/model/res_company.py new file mode 100644 index 000000000..0912307c9 --- /dev/null +++ b/base_advanced_report_templates/model/res_company.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class ResCompany(models.Model): + """This model extends the 'res.company' model to include additional fields + related to document layouts for sales, purchases, accounts, and stock. +""" + _inherit = 'res.company' + + sale_document_layout_id = fields.Many2one("doc.layout", + string="Sale", help="This field " + "specifies the document layout " + "associated with sales for the " + "company." + ) + purchase_document_layout_id = fields.Many2one("doc.layout", + string="Purchase", help="This" + "field specifies the document" + "layout associated with " + "purchases for the company." + ) + account_document_layout_id = fields.Many2one("doc.layout", + string="Account", + help="Document layout " + "associated with accounting" + " for the company." + ) + stock_document_layout_id = fields.Many2one("doc.layout", + string="Stock", help="Document " + "layout associated with stock" + ) diff --git a/base_advanced_report_templates/model/sale_order.py b/base_advanced_report_templates/model/sale_order.py new file mode 100644 index 000000000..03fd20b38 --- /dev/null +++ b/base_advanced_report_templates/model/sale_order.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class SaleOrder(models.Model): + """ This model extends the 'sale.order' model to include additional fields + related to customer images and document layout themes.""" + _inherit = 'sale.order' + + customer_image = fields.Binary(string="Image", + related="partner_id.image_1920", + help="This field represents the image " + "associated with the customer on the" + " sale order.") + + theme_id = fields.Many2one('doc.layout', + related='company_id.sale_document_layout_id', + string='Document Layout Theme', + help="This field is used to specify the document" + "layout theme associated with the company's" + "sale orders." + ) diff --git a/base_advanced_report_templates/model/sale_order_line.py b/base_advanced_report_templates/model/sale_order_line.py new file mode 100644 index 000000000..da0b2ec5d --- /dev/null +++ b/base_advanced_report_templates/model/sale_order_line.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 SaleOrderLine(models.Model): + """sale order line image""" + _inherit = 'sale.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="This field represents the image " + "associated with the product on the " + "sale order line." + ) diff --git a/base_advanced_report_templates/model/stock_move.py b/base_advanced_report_templates/model/stock_move.py new file mode 100644 index 000000000..bbd124d12 --- /dev/null +++ b/base_advanced_report_templates/model/stock_move.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class StockMove(models.Model): + """Delivery report image""" + _inherit = 'stock.move' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="this field represents the image " + "associated with the product on the " + "stock move.") diff --git a/base_advanced_report_templates/model/stock_picking.py b/base_advanced_report_templates/model/stock_picking.py new file mode 100644 index 000000000..39e152239 --- /dev/null +++ b/base_advanced_report_templates/model/stock_picking.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# 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 models, fields + + +class StockPicking(models.Model): + """ This model extends the 'stock.picking' model to include additional fields + related to document layout themes, specifically the 'theme_id' field. +""" + _inherit = 'stock.picking' + + theme_id = fields.Many2one('doc.layout', + related='company_id.stock_document_layout_id', + help="This field is used to specify the document" + "layout theme associated with the company's" + "stock pickings") diff --git a/base_advanced_report_templates/security/ir.model.access.csv b/base_advanced_report_templates/security/ir.model.access.csv new file mode 100644 index 000000000..85bfe07a0 --- /dev/null +++ b/base_advanced_report_templates/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_doc_layout_user,doc.layout.user,model_doc_layout,base.group_user,1,1,1,1 diff --git a/base_advanced_report_templates/static/description/assets/icons/capture (1).png b/base_advanced_report_templates/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/capture (1).png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/check.png b/base_advanced_report_templates/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/check.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/chevron.png b/base_advanced_report_templates/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/chevron.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/cogs.png b/base_advanced_report_templates/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/cogs.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/consultation.png b/base_advanced_report_templates/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/consultation.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/ecom-black.png b/base_advanced_report_templates/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/ecom-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/education-black.png b/base_advanced_report_templates/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/education-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/hotel-black.png b/base_advanced_report_templates/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/hotel-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/img.png b/base_advanced_report_templates/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/img.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/license.png b/base_advanced_report_templates/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/license.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png b/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/lifebuoy.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png b/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/manufacturing-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/photo-capture.png b/base_advanced_report_templates/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/photo-capture.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/pos-black.png b/base_advanced_report_templates/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/pos-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/puzzle.png b/base_advanced_report_templates/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/puzzle.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png b/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/restaurant-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/service-black.png b/base_advanced_report_templates/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/service-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/trading-black.png b/base_advanced_report_templates/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/trading-black.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/training.png b/base_advanced_report_templates/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/training.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/update.png b/base_advanced_report_templates/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/update.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/user.png b/base_advanced_report_templates/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/user.png differ diff --git a/base_advanced_report_templates/static/description/assets/icons/wrench.png b/base_advanced_report_templates/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/wrench.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/Cybrosys R.png b/base_advanced_report_templates/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/Cybrosys R.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/categories.png b/base_advanced_report_templates/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/categories.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/check-box.png b/base_advanced_report_templates/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/check-box.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/compass.png b/base_advanced_report_templates/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/compass.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/corporate.png b/base_advanced_report_templates/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/corporate.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/customer-support.png b/base_advanced_report_templates/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/customer-support.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png b/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/cybrosys-logo.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/email.svg b/base_advanced_report_templates/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/features.png b/base_advanced_report_templates/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/features.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/logo.png b/base_advanced_report_templates/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/logo.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/phone.svg b/base_advanced_report_templates/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/pictures.png b/base_advanced_report_templates/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/pictures.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/pie-chart.png b/base_advanced_report_templates/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/pie-chart.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/right-arrow.png b/base_advanced_report_templates/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/right-arrow.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/star (1) 2.svg b/base_advanced_report_templates/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/star.png b/base_advanced_report_templates/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/star.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/support (1) 1.svg b/base_advanced_report_templates/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/support-email.svg b/base_advanced_report_templates/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/support.png b/base_advanced_report_templates/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/support.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/tick-mark.svg b/base_advanced_report_templates/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/whatsapp 1.svg b/base_advanced_report_templates/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/misc/whatsapp.png b/base_advanced_report_templates/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/misc/whatsapp.png differ diff --git a/base_advanced_report_templates/static/description/assets/misc/whatsapp.svg b/base_advanced_report_templates/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/base_advanced_report_templates/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/base_advanced_report_templates/static/description/assets/modules/1.png b/base_advanced_report_templates/static/description/assets/modules/1.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/1.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/2.png b/base_advanced_report_templates/static/description/assets/modules/2.png new file mode 100644 index 000000000..4a9e2bd5d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/2.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/3.png b/base_advanced_report_templates/static/description/assets/modules/3.png new file mode 100644 index 000000000..55fb7ba18 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/3.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/4.png b/base_advanced_report_templates/static/description/assets/modules/4.png new file mode 100644 index 000000000..359d3e4d6 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/4.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/5.png b/base_advanced_report_templates/static/description/assets/modules/5.png new file mode 100644 index 000000000..3add135c3 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/5.png differ diff --git a/base_advanced_report_templates/static/description/assets/modules/6.png b/base_advanced_report_templates/static/description/assets/modules/6.png new file mode 100644 index 000000000..4da02a3d2 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/modules/6.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/hero.gif b/base_advanced_report_templates/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..505b1029e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/hero.gif differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image1.png b/base_advanced_report_templates/static/description/assets/screenshots/image1.png new file mode 100644 index 000000000..043718da0 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image1.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image10.png b/base_advanced_report_templates/static/description/assets/screenshots/image10.png new file mode 100644 index 000000000..4ea24676b Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image10.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image11.png b/base_advanced_report_templates/static/description/assets/screenshots/image11.png new file mode 100644 index 000000000..5c173352c Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image11.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image12.png b/base_advanced_report_templates/static/description/assets/screenshots/image12.png new file mode 100644 index 000000000..3906e1f73 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image12.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image13.png b/base_advanced_report_templates/static/description/assets/screenshots/image13.png new file mode 100644 index 000000000..6c969e17d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image13.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image14.png b/base_advanced_report_templates/static/description/assets/screenshots/image14.png new file mode 100644 index 000000000..d746d6ffd Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image14.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image15.png b/base_advanced_report_templates/static/description/assets/screenshots/image15.png new file mode 100644 index 000000000..322e7404f Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image15.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image16.png b/base_advanced_report_templates/static/description/assets/screenshots/image16.png new file mode 100644 index 000000000..e9ef24194 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image16.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image17.png b/base_advanced_report_templates/static/description/assets/screenshots/image17.png new file mode 100644 index 000000000..35b738844 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image17.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image2.png b/base_advanced_report_templates/static/description/assets/screenshots/image2.png new file mode 100644 index 000000000..29d13a6ab Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image2.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image3.png b/base_advanced_report_templates/static/description/assets/screenshots/image3.png new file mode 100644 index 000000000..cfccc18af Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image3.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image4.png b/base_advanced_report_templates/static/description/assets/screenshots/image4.png new file mode 100644 index 000000000..218871203 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image4.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image5.png b/base_advanced_report_templates/static/description/assets/screenshots/image5.png new file mode 100644 index 000000000..8879545a7 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image5.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image6.png b/base_advanced_report_templates/static/description/assets/screenshots/image6.png new file mode 100644 index 000000000..9db0fc195 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image6.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image7.png b/base_advanced_report_templates/static/description/assets/screenshots/image7.png new file mode 100644 index 000000000..629dc3b74 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image7.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image8.png b/base_advanced_report_templates/static/description/assets/screenshots/image8.png new file mode 100644 index 000000000..f77263980 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image8.png differ diff --git a/base_advanced_report_templates/static/description/assets/screenshots/image9.png b/base_advanced_report_templates/static/description/assets/screenshots/image9.png new file mode 100644 index 000000000..7f5eae5b4 Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image9.png differ diff --git a/base_advanced_report_templates/static/description/banner.jpg b/base_advanced_report_templates/static/description/banner.jpg new file mode 100644 index 000000000..14c6a147f Binary files /dev/null and b/base_advanced_report_templates/static/description/banner.jpg differ diff --git a/base_advanced_report_templates/static/description/icon.png b/base_advanced_report_templates/static/description/icon.png new file mode 100644 index 000000000..cf89890df Binary files /dev/null and b/base_advanced_report_templates/static/description/icon.png differ diff --git a/base_advanced_report_templates/static/description/index.html b/base_advanced_report_templates/static/description/index.html new file mode 100644 index 000000000..50ac3df1d --- /dev/null +++ b/base_advanced_report_templates/static/description/index.html @@ -0,0 +1,953 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Odoo Professional Report Templates

+

+ Customizable Multiple Report Templates for Sale, Purchase, Invoice and Delivery +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Configure the layout

+
+
+
+
+
+
+ +
+
+

+ Configure the position of Text color, + Heading and Background +

+
+
+
+
+
+
+ +
+
+

+ Configure Layout In Each Module

+
+
+
+
+
+
+ +
+
+

+ Edit the theme

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

+ Select The Configuration Layout

+

+ From the company form view we can select the layout type in each module +

+
+
+
+
+
+
+ +
+
+

+ Report Template Configuration

+

+ you can configure the template on the external link of the template type. +

+
+
+
+
+
+
+ +
+
+

+ Print SalesOrder Traditional report

+
+
+
+
+
+
+ +
+
+

+ Print SalesOrder Modern report

+
+
+
+
+
+
+ +
+
+

+ Print SalesOrder Standard report

+
+
+
+
+
+
+ +
+
+

+ Print SalesOrder Attractive report

+
+
+
+
+
+
+ +
+
+

+ Print PurchaseOrder Traditional report

+
+
+
+
+
+
+ +
+
+

+ Print PurchaseOrder Modern report +

+
+
+
+
+
+
+ +
+
+

+ Print PurchaseOrder Standard report

+
+
+
+
+
+
+ +
+
+

+ Print PurchaseOrder Attractive report

+
+
+
+
+
+
+ +
+
+

+ Print Invoice Traditional report

+
+
+
+
+
+
+ +
+
+

+ Print Invoice Modern report +

+
+
+
+
+
+
+ +
+
+

+ Print Invoice Standard report +

+
+
+
+
+
+
+ +
+
+

+ Print Invoice Attractive report +

+
+
+
+
+
+
+ +
+
+

+ Print Delivery Traditional report +

+
+
+
+
+
+
+ +
+
+

+ Print Delivery Modern report +

+
+
+
+
+
+
+ +
+
+

+ Print Delivery Standard report +

+
+
+
+
+
+
+ +
+
+

+ Print Delivery Attractive report +

+
+
+
+
+
+
+
    +
  • + + Configure the layout +
  • +
  • + + Configure the position of Text color,Heading,Background +
  • +
  • + + Configure Layout In Each Module +
  • +
  • + + Edit the theme +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:11th December 2023 +
+

+ Initial Commit for Odoo Professional Report Templates

+
+
+
+
+
+
+
+

+ 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/base_advanced_report_templates/views/account_attractive_templates.xml b/base_advanced_report_templates/views/account_attractive_templates.xml new file mode 100644 index 000000000..dfc838167 --- /dev/null +++ b/base_advanced_report_templates/views/account_attractive_templates.xml @@ -0,0 +1,336 @@ + + + + + diff --git a/base_advanced_report_templates/views/account_modern_templates.xml b/base_advanced_report_templates/views/account_modern_templates.xml new file mode 100644 index 000000000..f453ff0d2 --- /dev/null +++ b/base_advanced_report_templates/views/account_modern_templates.xml @@ -0,0 +1,388 @@ + + + + + diff --git a/base_advanced_report_templates/views/account_move_views.xml b/base_advanced_report_templates/views/account_move_views.xml new file mode 100644 index 000000000..da4fd73a0 --- /dev/null +++ b/base_advanced_report_templates/views/account_move_views.xml @@ -0,0 +1,20 @@ + + + + + + account.move.view.form.inherit.base.advanced.report.templates + account.move + + + + + + + + + + + + diff --git a/base_advanced_report_templates/views/account_standrd_templates.xml b/base_advanced_report_templates/views/account_standrd_templates.xml new file mode 100644 index 000000000..bc95895f1 --- /dev/null +++ b/base_advanced_report_templates/views/account_standrd_templates.xml @@ -0,0 +1,319 @@ + + + + + diff --git a/base_advanced_report_templates/views/account_traditional_templates.xml b/base_advanced_report_templates/views/account_traditional_templates.xml new file mode 100644 index 000000000..339ec2a35 --- /dev/null +++ b/base_advanced_report_templates/views/account_traditional_templates.xml @@ -0,0 +1,333 @@ + + + + Invoices + account.move + qweb-pdf + base_advanced_report_templates.report_invoice_custom + base_advanced_report_templates.report_invoice_custom + (object._get_report_base_filename()) + (object.state == 'posted') and ((object.name or 'INV').replace('/','_')+'.pdf') + + report + + + + + + + diff --git a/base_advanced_report_templates/views/doc_layout_views.xml b/base_advanced_report_templates/views/doc_layout_views.xml new file mode 100644 index 000000000..f7551b8ea --- /dev/null +++ b/base_advanced_report_templates/views/doc_layout_views.xml @@ -0,0 +1,36 @@ + + + + + doc.layout.view.form + doc.layout + +
+ +
+

+ +

+
+ + + + + + + + + + + + + +
+
+
+
+
+
diff --git a/base_advanced_report_templates/views/purchase_attractive_templates.xml b/base_advanced_report_templates/views/purchase_attractive_templates.xml new file mode 100644 index 000000000..1b63801fb --- /dev/null +++ b/base_advanced_report_templates/views/purchase_attractive_templates.xml @@ -0,0 +1,203 @@ + + + + + diff --git a/base_advanced_report_templates/views/purchase_modern_templates.xml b/base_advanced_report_templates/views/purchase_modern_templates.xml new file mode 100644 index 000000000..21546c780 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_modern_templates.xml @@ -0,0 +1,241 @@ + + + + + diff --git a/base_advanced_report_templates/views/purchase_order_views.xml b/base_advanced_report_templates/views/purchase_order_views.xml new file mode 100644 index 000000000..07d55b507 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_order_views.xml @@ -0,0 +1,21 @@ + + + + + + purchase.order.view.form.inherit.base.advanced.report.templates + purchase.order + + + + + + + + + + + + + diff --git a/base_advanced_report_templates/views/purchase_standard_templates.xml b/base_advanced_report_templates/views/purchase_standard_templates.xml new file mode 100644 index 000000000..b8bdacd47 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_standard_templates.xml @@ -0,0 +1,167 @@ + + + + + diff --git a/base_advanced_report_templates/views/purchase_traditional_templates.xml b/base_advanced_report_templates/views/purchase_traditional_templates.xml new file mode 100644 index 000000000..ba4726936 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_traditional_templates.xml @@ -0,0 +1,243 @@ + + + + + Request for Quotation + purchase.order + qweb-pdf + base_advanced_report_templates.report_purchase_custom + base_advanced_report_templates.report_purchase_custom + 'Request for Quotation - %s' % (object.name) + + report + + + + Purchase Order + purchase.order + qweb-pdf + base_advanced_report_templates.report_purchase_custom + base_advanced_report_templates.report_purchase_custom + 'Request for Quotation - %s' % (object.name) + + report + + + + + + diff --git a/base_advanced_report_templates/views/res_company_views.xml b/base_advanced_report_templates/views/res_company_views.xml new file mode 100644 index 000000000..3aa85b579 --- /dev/null +++ b/base_advanced_report_templates/views/res_company_views.xml @@ -0,0 +1,17 @@ + + + + + res.company.view.form.inherit.base.advanced.report.templates + res.company + + + + + + + + + + + diff --git a/base_advanced_report_templates/views/sale_attractive_templates.xml b/base_advanced_report_templates/views/sale_attractive_templates.xml new file mode 100644 index 000000000..55809ef62 --- /dev/null +++ b/base_advanced_report_templates/views/sale_attractive_templates.xml @@ -0,0 +1,227 @@ + + + + + diff --git a/base_advanced_report_templates/views/sale_modern_templates.xml b/base_advanced_report_templates/views/sale_modern_templates.xml new file mode 100644 index 000000000..e018799ee --- /dev/null +++ b/base_advanced_report_templates/views/sale_modern_templates.xml @@ -0,0 +1,272 @@ + + + + + diff --git a/base_advanced_report_templates/views/sale_order_views.xml b/base_advanced_report_templates/views/sale_order_views.xml new file mode 100644 index 000000000..4a4363580 --- /dev/null +++ b/base_advanced_report_templates/views/sale_order_views.xml @@ -0,0 +1,22 @@ + + + + + + sale.order.view.form.inherit.base.advanced.report.templates + sale.order + + + + + + + + + + + + + diff --git a/base_advanced_report_templates/views/sale_standrd_templates.xml b/base_advanced_report_templates/views/sale_standrd_templates.xml new file mode 100644 index 000000000..043371299 --- /dev/null +++ b/base_advanced_report_templates/views/sale_standrd_templates.xml @@ -0,0 +1,226 @@ + + + + + diff --git a/base_advanced_report_templates/views/sale_traditional_templates.xml b/base_advanced_report_templates/views/sale_traditional_templates.xml new file mode 100644 index 000000000..e9e39953a --- /dev/null +++ b/base_advanced_report_templates/views/sale_traditional_templates.xml @@ -0,0 +1,213 @@ + + + + Quotation / Order + sale.order + qweb-pdf + base_advanced_report_templates.report_saleorder_custom + base_advanced_report_templates.report_saleorder + (object.state in ('draft', 'sent') and 'Quotation - %s' % (object.name)) or 'Order - %s' % (object.name) + + + report + + + + + + diff --git a/base_advanced_report_templates/views/stock_attractive_templates.xml b/base_advanced_report_templates/views/stock_attractive_templates.xml new file mode 100644 index 000000000..5ca2ab11c --- /dev/null +++ b/base_advanced_report_templates/views/stock_attractive_templates.xml @@ -0,0 +1,263 @@ + + + + + diff --git a/base_advanced_report_templates/views/stock_modern_templates.xml b/base_advanced_report_templates/views/stock_modern_templates.xml new file mode 100644 index 000000000..33af3a250 --- /dev/null +++ b/base_advanced_report_templates/views/stock_modern_templates.xml @@ -0,0 +1,285 @@ + + + + + diff --git a/base_advanced_report_templates/views/stock_picking_views.xml b/base_advanced_report_templates/views/stock_picking_views.xml new file mode 100644 index 000000000..c40e570aa --- /dev/null +++ b/base_advanced_report_templates/views/stock_picking_views.xml @@ -0,0 +1,20 @@ + + + + + + stock.picking.view.form.inherit.base.advanced.report.templates + stock.picking + + + + + + + + + + + + diff --git a/base_advanced_report_templates/views/stock_standard_templates.xml b/base_advanced_report_templates/views/stock_standard_templates.xml new file mode 100644 index 000000000..bcf660668 --- /dev/null +++ b/base_advanced_report_templates/views/stock_standard_templates.xml @@ -0,0 +1,273 @@ + + + + + diff --git a/base_advanced_report_templates/views/stock_traditional_templates.xml b/base_advanced_report_templates/views/stock_traditional_templates.xml new file mode 100644 index 000000000..45e161564 --- /dev/null +++ b/base_advanced_report_templates/views/stock_traditional_templates.xml @@ -0,0 +1,314 @@ + + + + Delivery Slip + stock.picking + qweb-pdf + base_advanced_report_templates.report_deliveryslip_custom + base_advanced_report_templates.report_deliveryslip_custom + 'Delivery Slip - %s - %s' % (object.partner_id.name or '', object.name) + report + + + + +