diff --git a/base_advanced_report_templates/README.rst b/base_advanced_report_templates/README.rst new file mode 100644 index 000000000..3a61d2b66 --- /dev/null +++ b/base_advanced_report_templates/README.rst @@ -0,0 +1,46 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Odoo Professional Report Templates +================================== +Change design of report of sale order, purchase order, invoice and stock + +Configuration +============= +* No additional configurations needed + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V14) Ammu Raj, 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..740308f8a --- /dev/null +++ b/base_advanced_report_templates/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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..853649dad --- /dev/null +++ b/base_advanced_report_templates/__manifest__.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +{ + 'name': 'Odoo Professional Report Templates', + 'version': '14.0.1.0.0', + 'category': 'Sales,Purchases,Accounting,Warehouse', + 'summary': "Change design of report of sale order, purchase order, " + "invoice and stock", + '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': [ + 'security/ir.model.access.csv', + 'data/doc_layout_data.xml', + 'report/account_move_reports.xml', + 'report/account_move_attractive_templates.xml', + 'report/account_move_modern_templates.xml', + 'report/account_move_standard_templates.xml', + 'report/account_move_traditional_templates.xml', + 'report/purchase_order_reports.xml', + 'report/purchase_attractive_templates.xml', + 'report/purchase_modern_templates.xml', + 'report/purchase_standard_templates.xml', + 'report/purchase_traditional_templates.xml', + 'report/sale_order_reports.xml', + 'report/sale_attractive_templates.xml', + 'report/sale_modern_templates.xml', + 'report/sale_standard_templates.xml', + 'report/sale_traditional_templates.xml', + 'report/stock_move_reports.xml', + 'report/stock_move_attractive_templates.xml', + 'report/stock_move_modern_templates.xml', + 'report/stock_move_standard_templates.xml', + 'report/stock_move_traditional_templates.xml', + 'views/res_company_views.xml', + 'views/sale_order_views.xml', + 'views/purchase_order_views.xml', + 'views/account_move_views.xml', + 'views/stock_move_views.xml', + 'views/doc_layout_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-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..1574efe07 --- /dev/null +++ b/base_advanced_report_templates/data/doc_layout_data.xml @@ -0,0 +1,49 @@ + + + + + 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 + + + \ No newline at end of file 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..460f434d2 --- /dev/null +++ b/base_advanced_report_templates/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 12.10.2023 +#### Version 14.0.1.0.0 +##### ADD +- Initial commit for Odoo Professional Report Templates Module diff --git a/base_advanced_report_templates/model/__init__.py b/base_advanced_report_templates/model/__init__.py new file mode 100644 index 000000000..d2ad085fc --- /dev/null +++ b/base_advanced_report_templates/model/__init__.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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 +from . import purchase_order_line +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..3161280ac --- /dev/null +++ b/base_advanced_report_templates/model/account_move.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class AccountMove(models.Model): + """Adding the feature advanced report template""" + _inherit = 'account.move' + + theme_id = fields.Many2one('doc.layout', string="Account Move Template", + related='company_id.account_document_layout_id', + help='The template to be used for this account ' + 'move.') 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..10092950c --- /dev/null +++ b/base_advanced_report_templates/model/account_move_line.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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="Image of product in 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..a9c102183 --- /dev/null +++ b/base_advanced_report_templates/model/base_document_layout.py @@ -0,0 +1,91 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import api, fields, models + + +class BaseDocumentLayout(models.TransientModel): + """Inherited base document layout for selecting layouts""" + _inherit = 'base.document.layout' + + sale_document_layout_id = fields.Many2one(string="Sale Template", + related='company_id.sale_document_layout_id', + help="selected layout for sale") + purchase_document_layout_id = fields.Many2one(string="Purchase Template", + related='company_id.purchase_document_layout_id', + help="Selected layout for purchase") + account_document_layout_id = fields.Many2one(string="Account Template", + related='company_id.account_document_layout_id', + help="Selected layout for Invoice") + stock_document_layout_id = fields.Many2one(string="Delivery Template", + related='company_id.stock_document_layout_id', + help="selected document for Delivery") + + @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() + + layout_mapping = { + 'sale': { + 'modern': 'report_saleorder_modern_document', + 'traditional': 'report_saleorder_traditional_document', + 'standard': 'report_saleorder_standard_document', + 'attractive': 'report_saleorder_attractive_document', + }, + 'purchase': { + 'modern': 'report_purchaseorder_modern_document', + 'traditional': 'report_purchaseorder_traditional_document', + 'standard': 'report_purchaseorder_standard_document', + 'attractive': 'report_purchaseorder_attractive_document', + }, + 'account': { + 'modern': 'report_account_modern_document', + 'traditional': 'report_account_traditional_document', + 'standard': 'report_account_standard_document', + 'attractive': 'report_account_attractive_document', + }, + 'stock': { + 'modern': 'report_stock_modern_document', + 'traditional': 'report_stock_traditional_document', + 'standard': 'report_stock_standard_document', + 'attractive': 'report_stock_attractive_document', + }, + } + ir_ui_view = self.env['ir.ui.view'] + for wizard in self: + for doc_type, layouts in layout_mapping.items(): + layout_id = getattr(wizard, f"{doc_type}_document_layout_id") + if layout_id and layout_id in layouts: + preview_css = self._get_css_for_preview(styles, wizard.id) + template_name = layouts[layout_id] + template = f'base_advanced_report_templates.{template_name}' + wizard.preview = ir_ui_view._render_template(template, { + 'company': wizard, 'preview_css': preview_css}) + break # Once a valid layout is found, exit the loop + else: + wizard.preview = False # If no valid layout is found + if not wizard.report_layout_id: + 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..19ee1f598 --- /dev/null +++ b/base_advanced_report_templates/model/doc_layout.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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' + _rec_name = 'name' + + name = fields.Char(string="Name", help="Name of the layout") + base_color = fields.Char(string="Base Color", + help="Background color for the invoice") + heading_text_color = fields.Char(string="Heading text Color", + help="Text color of the Heading") + text_color = fields.Char(string="Text Color", help="Text color of items") + customer_text_color = fields.Char(string="Text Color of the customer", + help="Text color of the customer address") + company_text_color = fields.Char(string="Company Text Color", + help="Text color of the company address") + logo_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Logo Position", + help="The position of the company logo") + customer_position = fields.Selection( + [('left', 'Left'), ('right', 'Right')], string="Customer position", + help="The position of the company address") + company_position = fields.Selection([('left', 'Left'), ('right', 'Right')], + string="Company Address Position", + help="The position of the company address") + company_id = fields.Many2one('res.company', string='Company', index=True, + default=lambda self: self.env.company, + help="Current company") 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..270e6397a --- /dev/null +++ b/base_advanced_report_templates/model/purchase_order.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class PurchaseOrder(models.Model): + """Adding the feature advanced templates""" + _inherit = 'purchase.order' + + theme_id = fields.Many2one('doc.layout', string="Purchase Template", + related='company_id.purchase_document_layout_id', + help='The template to be used for this purchase ' + 'order') 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..f4cc3cedf --- /dev/null +++ b/base_advanced_report_templates/model/purchase_order_line.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class PurchaseOrderLine(models.Model): + """purchase order line image""" + _inherit = 'purchase.order.line' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="The image product in 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..4f0402f56 --- /dev/null +++ b/base_advanced_report_templates/model/res_company.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class ResCompany(models.Model): + """Adding the layouts in company""" + _inherit = 'res.company' + + sale_document_layout_id = fields.Many2one("doc.layout", + string="Sale", + help="Select the required layout " + "for Sales") + purchase_document_layout_id = fields.Many2one("doc.layout", + string="Purchase", + help="Select the required " + "layout for Purchase") + account_document_layout_id = fields.Many2one("doc.layout", + string="Account", + help="Select the required " + "layout for Invoice") + stock_document_layout_id = fields.Many2one("doc.layout", + string="Stock", + help="Select the required " + "layout for Delivery") 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..ed5e8c8c8 --- /dev/null +++ b/base_advanced_report_templates/model/sale_order.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class SaleOrder(models.Model): + """Adding the feature advanced templates""" + _inherit = 'sale.order' + + theme_id = fields.Many2one('doc.layout', string="Sales Template", + related='company_id.sale_document_layout_id', + help='The template to be used for this sale ' + 'order') 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..c63a58a80 --- /dev/null +++ b/base_advanced_report_templates/model/sale_order_line.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL 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="The image of the product in 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..c77730a1e --- /dev/null +++ b/base_advanced_report_templates/model/stock_move.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class StockMove(models.Model): + """Delivery report image""" + _inherit = 'stock.move' + + order_line_image = fields.Binary(string="Image", + related="product_id.image_128", + help="The image of product in 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..0ecc414a2 --- /dev/null +++ b/base_advanced_report_templates/model/stock_picking.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Ammu Raj (odoo@cybrosys.com) +# +# You can modify it under the terms of the GNU AFFERO +# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. +# +# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE +# (AGPL v3) along with this program. +# If not, see . +# +################################################################################ +from odoo import fields, models + + +class StockPicking(models.Model): + """Adding the advanced templates""" + _inherit = 'stock.picking' + + theme_id = fields.Many2one('doc.layout', string="Delivery Template", + related='company_id.stock_document_layout_id', + help='The template to be used for this delivery') diff --git a/base_advanced_report_templates/report/account_move_attractive_templates.xml b/base_advanced_report_templates/report/account_move_attractive_templates.xml new file mode 100644 index 000000000..197842b73 --- /dev/null +++ b/base_advanced_report_templates/report/account_move_attractive_templates.xml @@ -0,0 +1,348 @@ + + + + + diff --git a/base_advanced_report_templates/report/account_move_modern_templates.xml b/base_advanced_report_templates/report/account_move_modern_templates.xml new file mode 100644 index 000000000..568f66367 --- /dev/null +++ b/base_advanced_report_templates/report/account_move_modern_templates.xml @@ -0,0 +1,324 @@ + + + + + diff --git a/base_advanced_report_templates/report/account_move_reports.xml b/base_advanced_report_templates/report/account_move_reports.xml new file mode 100644 index 000000000..5e64b6a98 --- /dev/null +++ b/base_advanced_report_templates/report/account_move_reports.xml @@ -0,0 +1,17 @@ + + + + + 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/report/account_move_standard_templates.xml b/base_advanced_report_templates/report/account_move_standard_templates.xml new file mode 100644 index 000000000..b731a3025 --- /dev/null +++ b/base_advanced_report_templates/report/account_move_standard_templates.xml @@ -0,0 +1,292 @@ + + + + + diff --git a/base_advanced_report_templates/report/account_move_traditional_templates.xml b/base_advanced_report_templates/report/account_move_traditional_templates.xml new file mode 100644 index 000000000..3751f7c36 --- /dev/null +++ b/base_advanced_report_templates/report/account_move_traditional_templates.xml @@ -0,0 +1,336 @@ + + + + + + diff --git a/base_advanced_report_templates/report/purchase_attractive_templates.xml b/base_advanced_report_templates/report/purchase_attractive_templates.xml new file mode 100644 index 000000000..acc0d17e0 --- /dev/null +++ b/base_advanced_report_templates/report/purchase_attractive_templates.xml @@ -0,0 +1,217 @@ + + + + + diff --git a/base_advanced_report_templates/report/purchase_modern_templates.xml b/base_advanced_report_templates/report/purchase_modern_templates.xml new file mode 100644 index 000000000..6030e2419 --- /dev/null +++ b/base_advanced_report_templates/report/purchase_modern_templates.xml @@ -0,0 +1,262 @@ + + + + + diff --git a/base_advanced_report_templates/report/purchase_order_reports.xml b/base_advanced_report_templates/report/purchase_order_reports.xml new file mode 100644 index 000000000..fe52e1f3a --- /dev/null +++ b/base_advanced_report_templates/report/purchase_order_reports.xml @@ -0,0 +1,26 @@ + + + + + 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/report/purchase_standard_templates.xml b/base_advanced_report_templates/report/purchase_standard_templates.xml new file mode 100644 index 000000000..360c1a81f --- /dev/null +++ b/base_advanced_report_templates/report/purchase_standard_templates.xml @@ -0,0 +1,191 @@ + + + + + diff --git a/base_advanced_report_templates/report/purchase_traditional_templates.xml b/base_advanced_report_templates/report/purchase_traditional_templates.xml new file mode 100644 index 000000000..5d842062c --- /dev/null +++ b/base_advanced_report_templates/report/purchase_traditional_templates.xml @@ -0,0 +1,249 @@ + + + + + + + diff --git a/base_advanced_report_templates/report/sale_attractive_templates.xml b/base_advanced_report_templates/report/sale_attractive_templates.xml new file mode 100644 index 000000000..aea0f3227 --- /dev/null +++ b/base_advanced_report_templates/report/sale_attractive_templates.xml @@ -0,0 +1,289 @@ + + + + + diff --git a/base_advanced_report_templates/report/sale_modern_templates.xml b/base_advanced_report_templates/report/sale_modern_templates.xml new file mode 100644 index 000000000..7b1c37eaf --- /dev/null +++ b/base_advanced_report_templates/report/sale_modern_templates.xml @@ -0,0 +1,299 @@ + + + + + diff --git a/base_advanced_report_templates/report/sale_order_reports.xml b/base_advanced_report_templates/report/sale_order_reports.xml new file mode 100644 index 000000000..907b0054e --- /dev/null +++ b/base_advanced_report_templates/report/sale_order_reports.xml @@ -0,0 +1,14 @@ + + + + + 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/report/sale_standard_templates.xml b/base_advanced_report_templates/report/sale_standard_templates.xml new file mode 100644 index 000000000..8cab5e1c1 --- /dev/null +++ b/base_advanced_report_templates/report/sale_standard_templates.xml @@ -0,0 +1,260 @@ + + + + + diff --git a/base_advanced_report_templates/report/sale_traditional_templates.xml b/base_advanced_report_templates/report/sale_traditional_templates.xml new file mode 100644 index 000000000..3e3559920 --- /dev/null +++ b/base_advanced_report_templates/report/sale_traditional_templates.xml @@ -0,0 +1,298 @@ + + + + + + diff --git a/base_advanced_report_templates/report/stock_move_attractive_templates.xml b/base_advanced_report_templates/report/stock_move_attractive_templates.xml new file mode 100644 index 000000000..0c0825ea6 --- /dev/null +++ b/base_advanced_report_templates/report/stock_move_attractive_templates.xml @@ -0,0 +1,283 @@ + + + + + diff --git a/base_advanced_report_templates/report/stock_move_modern_templates.xml b/base_advanced_report_templates/report/stock_move_modern_templates.xml new file mode 100644 index 000000000..6c46f8767 --- /dev/null +++ b/base_advanced_report_templates/report/stock_move_modern_templates.xml @@ -0,0 +1,303 @@ + + + + + diff --git a/base_advanced_report_templates/report/stock_move_reports.xml b/base_advanced_report_templates/report/stock_move_reports.xml new file mode 100644 index 000000000..9ebca510b --- /dev/null +++ b/base_advanced_report_templates/report/stock_move_reports.xml @@ -0,0 +1,13 @@ + + + + + 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 + + diff --git a/base_advanced_report_templates/report/stock_move_standard_templates.xml b/base_advanced_report_templates/report/stock_move_standard_templates.xml new file mode 100644 index 000000000..472616b75 --- /dev/null +++ b/base_advanced_report_templates/report/stock_move_standard_templates.xml @@ -0,0 +1,296 @@ + + + + + diff --git a/base_advanced_report_templates/report/stock_move_traditional_templates.xml b/base_advanced_report_templates/report/stock_move_traditional_templates.xml new file mode 100644 index 000000000..2b519efe7 --- /dev/null +++ b/base_advanced_report_templates/report/stock_move_traditional_templates.xml @@ -0,0 +1,327 @@ + + + + + + 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..f306374a0 --- /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,access.doc.layout,model_doc_layout,base.group_user,1,1,1,1 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/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/logo.png b/base_advanced_report_templates/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/icons/logo.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/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/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/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/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.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.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/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/modules/1.png b/base_advanced_report_templates/static/description/assets/modules/1.png new file mode 100644 index 000000000..d881f99c6 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..c6397ae09 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..e69de29bb 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..e69de29bb 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..e69de29bb 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..e69de29bb 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..0e747c744 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..def075fda 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..ba94ce453 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..d4f758fdc 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..eb7113d89 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..2206b46e0 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..c2fb3cce9 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..0e810a00f 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..153e99d0d 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..6eb67822b 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/image18.png b/base_advanced_report_templates/static/description/assets/screenshots/image18.png new file mode 100644 index 000000000..098e3d70d Binary files /dev/null and b/base_advanced_report_templates/static/description/assets/screenshots/image18.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..c010e65fa 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..40ebb483b 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..4344189c5 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..ba827bbe2 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..896c7a8ee 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..1ae65383a 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..6092b9e8e 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..286ed8c0e 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.png b/base_advanced_report_templates/static/description/banner.png new file mode 100644 index 000000000..7c9224290 Binary files /dev/null and b/base_advanced_report_templates/static/description/banner.png 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..8ee752727 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..d9eb8313a --- /dev/null +++ b/base_advanced_report_templates/static/description/index.html @@ -0,0 +1,678 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo SH +
+
+
+
+
+
+
+
+

+ Odoo Professional Report Templates

+

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

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ In the Odoo Professional Report Templates App, We can configure the report templates to our own need. + There we can have + 4 types of templates - Standard, Modern, Traditional, Attractive. We can also customize the + SO,PO,Invoices and Delivery.

+
+
+
+
+

+ Features +

+
+
+
+ +
+
+

+ Configure the layout

+
+
+
+
+ +
+
+

+ Configure the position of Text color,Heading,Background

+
+
+
+
+ +
+
+

+ Configure Layout In Each Module

+
+
+ +
+
+ +
+
+

+ Edit the theme

+
+
+
+
+
+

+ Screenshots +

+
+
+

+ 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

+ +
+
+ +
+
+

Suggested Products

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

Our Services

+
+
+ +
+
+ +
+
+ Odoo + Customization
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+ +
+
+ +
+
+ Odoo + Support
+
+
+
+ +
+
+ Hire + Odoo + Developer
+
+ +
+
+ +
+
+ Odoo + Integration
+
+ +
+
+ +
+
+ Odoo + Migration
+
+
+
+ +
+
+ Odoo + Consultancy
+
+ +
+
+ +
+
+ Odoo + Implementation
+
+
+
+ +
+
+ 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

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

Need Help?

+
+
+
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ +
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..e06e4e072 --- /dev/null +++ b/base_advanced_report_templates/views/account_move_views.xml @@ -0,0 +1,22 @@ + + + + + + account.move.view.form.inherit.base.advanced.report.templates + + account.move + + + + + + + + + + + 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..593806a4f --- /dev/null +++ b/base_advanced_report_templates/views/doc_layout_views.xml @@ -0,0 +1,35 @@ + + + + + doc.layout.view.form + doc.layout + +
+ +
+

+ +

+
+ + + + + + + + + + + + + +
+
+
+
+
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..8ed37c445 --- /dev/null +++ b/base_advanced_report_templates/views/purchase_order_views.xml @@ -0,0 +1,22 @@ + + + + + + purchase.order.view.form.inherit.base.advanced.report.templates + + purchase.order + + + + + + + + + + + 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..7d87a2a6e --- /dev/null +++ b/base_advanced_report_templates/views/res_company_views.xml @@ -0,0 +1,19 @@ + + + + + + res.company.view.form.inherit.base.advanced.report.templates + + res.company + + + + + + + + + + + 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..2e510b803 --- /dev/null +++ b/base_advanced_report_templates/views/sale_order_views.xml @@ -0,0 +1,19 @@ + + + + + + sale.order.view.form.inherit.base.advanced.report.templates + + sale.order + + + + + + + + diff --git a/base_advanced_report_templates/views/stock_move_views.xml b/base_advanced_report_templates/views/stock_move_views.xml new file mode 100644 index 000000000..a17cee6f0 --- /dev/null +++ b/base_advanced_report_templates/views/stock_move_views.xml @@ -0,0 +1,22 @@ + + + + + + stock.picking.view.form.inherit.base.advanced.report.templates + + stock.picking + + + + + + + + + + +