diff --git a/custom_pivot_report/README.rst b/custom_pivot_report/README.rst new file mode 100755 index 000000000..dfad40577 --- /dev/null +++ b/custom_pivot_report/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Custom Pivot Report +=================== +This module Create Custom Pivot Report For Any Model Without Coding + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +Developer:(V18) SAFA FAHEEM PE @cybrosys, +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/custom_pivot_report/__init__.py b/custom_pivot_report/__init__.py new file mode 100644 index 000000000..7e411053f --- /dev/null +++ b/custom_pivot_report/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 models +from .hooks import report_uninstall_hook diff --git a/custom_pivot_report/__manifest__.py b/custom_pivot_report/__manifest__.py new file mode 100644 index 000000000..e1d0d9148 --- /dev/null +++ b/custom_pivot_report/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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': 'Custom Pivot Report', + 'version': '18.0.1.0.0', + "category": "Extra Tools", + "summary": """Create Custom Pivot Report For Any Model Without Coding""", + "description": """Create Custom Pivot Report For Any Model Without Coding, + Dynamic Pivot Report, Custom Pivot Report, Dynamic Report, Pivot View""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base'], + 'data': [ + 'security/ir.model.access.csv', + 'views/custom_report_views.xml', + ], + 'images': ['static/description/banner.gif'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False, + 'uninstall_hook': 'report_uninstall_hook' +} diff --git a/custom_pivot_report/doc/RELEASE_NOTES.md b/custom_pivot_report/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..1ba9d7299 --- /dev/null +++ b/custom_pivot_report/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 20.01.2025 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Custom Pivot Report diff --git a/custom_pivot_report/hooks.py b/custom_pivot_report/hooks.py new file mode 100644 index 000000000..d4d58abf2 --- /dev/null +++ b/custom_pivot_report/hooks.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 . +# +############################################################################# + +def report_uninstall_hook(env): + # Uninstall hook to delete all the custom pivot reports + records = env['custom.report'].search([]) + for record in records: + record.unlink() diff --git a/custom_pivot_report/models/__init__.py b/custom_pivot_report/models/__init__.py new file mode 100644 index 000000000..011dec960 --- /dev/null +++ b/custom_pivot_report/models/__init__.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 ir_actions_act_window +from . import ir_ui_menu +from . import ir_ui_view +from . import custom_report +from . import custom_report_fields diff --git a/custom_pivot_report/models/custom_report.py b/custom_pivot_report/models/custom_report.py new file mode 100644 index 000000000..c3b4bd9c6 --- /dev/null +++ b/custom_pivot_report/models/custom_report.py @@ -0,0 +1,134 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 api, fields, models, _ + + +class CustomReport(models.Model): + """Custom report model for creating pivot view and adding required + fields for the model""" + _name = 'custom.report' + _description = 'Custom Report' + + name = fields.Char(string='Name', help="Name of the pivot report") + model_id = fields.Many2one('ir.model', string='Model', + required=True, + domain="[('transient', '=', False),]", + ondelete='cascade', + help="Select the model for the report") + fields_ids = fields.One2many('custom.report.fields', + 'report_id', string='Fields', + required=True, + help="Select the field that is added to the custom report.") + menu_id = fields.Many2one('ir.ui.menu', string='Menu', + required=True, ondelete='cascade', + help="The menu where you want to create a new menu item.") + menu_group_id = fields.Many2many('res.groups', + string='Menu Group', required=True, + ondelete='cascade', + help="Set the user group who hav access to the report menu") + view_type = fields.Selection([('pivot', 'Pivot'), + ('graph', 'Graph')], string='View Type', + help="Select the type of report") + + def unlink(self): + """Customized unlink method to clean up related records.""" + for rec in self: + # Searching the view + view = self.env['ir.ui.view'].search( + [('custom_report', '=', str(rec.id) + '_' + rec.model_id.model + '_' + rec.menu_id.complete_name)]) + # search the action + action = self.env['ir.actions.act_window'].search( + [('custom_report', '=', str(rec.id) + '_' + 'pivot' + '_' + '_' + 'current',)]) + # search the menu + menu = self.env['ir.ui.menu'].search( + [('custom_report', '=', str(rec.id) + '_' + rec.menu_id.complete_name + '_' + rec.model_id.model)]) + view.sudo().unlink() + action.sudo().unlink() + menu.sudo().unlink() + return super().unlink() + + @api.constrains('menu_id', 'fields_ids', 'model_id', 'name', 'menu_group_id') + def _create_menu_id(self): + """Customized constraint method to create or update menu, action, and + view""" + view_id = self.env['ir.ui.view'].search( + [('custom_report', '=', str(self.id) + '_' + self.model_id.model + '_' + self.menu_id.complete_name)]) + arch_base = '''\n''' % (self.name) + for rec in self.fields_ids: + if rec.row: + arch_base += ''' + \n''' % (rec.custom_field_id.name, rec.label) + elif rec.measure: + arch_base += ''' + \n''' % (rec.custom_field_id.name, rec.label) + else: + arch_base += '''\n''' % (rec.custom_field_id.name, rec.label) + + arch_base += '''\n''' + view_value = { + 'name': _(self.name), + 'type': 'pivot', + 'custom_report': str(self.id) + '_' + self.model_id.model + '_' + self.menu_id.complete_name, + 'model': self.model_id.model, + 'mode': 'primary', + 'active': True, + 'arch_base': arch_base, + 'groups_id': [(6, 0, [self.menu_group_id.id])], + } + if not view_id: + # Creating the view + view_obj = self.env['ir.ui.view'].create(view_value) + else: + view_id.sudo().write(view_value) + view_obj = view_id + value = { + 'type': 'ir.actions.act_window', + 'name': _(self.name), + 'res_model': self.model_id.model, + 'custom_report': str(self.id) + '_' + 'pivot' + '_' + '_' + 'current', + 'view_mode': 'pivot', + 'view_id': view_obj.id, + 'target': 'current', + } + action_id = self.env['ir.actions.act_window'].search( + [('custom_report', '=', str(self.id) + '_' + 'pivot' + '_' + '_' + 'current')]) + if not action_id: + # Creating the action + action = self.env['ir.actions.act_window'].create(value) + else: + action_id.sudo().write(value) + action = action_id + value = { + 'name': self.name, + 'complete_name': self.menu_id.complete_name + '/' + self.name, + 'action': 'ir.actions.act_window,%s' % (action.id), + 'parent_id': self.menu_id.id, + 'custom_report': str(self.id) + '_' + self.menu_id.complete_name + '_' + self.model_id.model, + 'groups_id': [(6, 0, [self.menu_group_id.id])], + } + menu_id = self.env['ir.ui.menu'].search( + [('custom_report', '=', str(self.id) + '_' + self.menu_id.complete_name + '_' + self.model_id.model)]) + if not menu_id: + # Creating the menu + menu = self.env['ir.ui.menu'].create(value) + else: + menu_id.sudo().write(value) diff --git a/custom_pivot_report/models/custom_report_fields.py b/custom_pivot_report/models/custom_report_fields.py new file mode 100644 index 000000000..498b1aa0b --- /dev/null +++ b/custom_pivot_report/models/custom_report_fields.py @@ -0,0 +1,59 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 api, fields, models + + +class CustomReportFields(models.Model): + """Custom report fields model. + Used to define custom fields associated with custom reports.""" + _name = 'custom.report.fields' + _description = 'Custom Report Fields' + + custom_field_id = fields.Many2one('ir.model.fields', + string='Custom Report', + required=True, ondelete='cascade', + domain="[('model_id', '=', model_id)]", + help="Field adding to the report") + report_id = fields.Many2one('custom.report', string='Parent', + ondelete='cascade') + model_id = fields.Many2one('ir.model', + related='report_id.model_id', + help="Model for the report") + label = fields.Char(string='Label', + help="Label of the column in the report") + row = fields.Boolean(string='Row', default=0, + help="Define is the field is row") + measure = fields.Boolean(string='Measure', default=0, + help="Define is the field is measure") + measurable = fields.Boolean(string='Measurable', default=0, + help="Define is the field is row") + rowable = fields.Boolean(string='Row able', default=0, + help="Define is the field is measure") + + @api.onchange('custom_field_id') + def onchange_custom_field_id(self): + """Update field values based on the selected custom field.""" + self.label = self.custom_field_id.field_description + if self.custom_field_id.ttype in ['float', 'integer', 'many2one', 'monetary']: + self.measurable = True + if self.custom_field_id.ttype in ['many2many', 'one2many']: + self.rowable = True diff --git a/custom_pivot_report/models/ir_actions_act_window.py b/custom_pivot_report/models/ir_actions_act_window.py new file mode 100644 index 000000000..b72af2dc5 --- /dev/null +++ b/custom_pivot_report/models/ir_actions_act_window.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 IrActionsActWindow(models.Model): + """Inheriting the 'ir.action.act.window' model.""" + _inherit = 'ir.actions.act_window' + + custom_report = fields.Char(string='Custom ID', help="Custom report") diff --git a/custom_pivot_report/models/ir_ui_menu.py b/custom_pivot_report/models/ir_ui_menu.py new file mode 100644 index 000000000..a30df585e --- /dev/null +++ b/custom_pivot_report/models/ir_ui_menu.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 IrUiMenu(models.Model): + """Inheriting the 'ir.ui.menu' model.""" + _inherit = 'ir.ui.menu' + + custom_report = fields.Char(string='Custom ID', help="Custom report") diff --git a/custom_pivot_report/models/ir_ui_view.py b/custom_pivot_report/models/ir_ui_view.py new file mode 100644 index 000000000..190b9ac54 --- /dev/null +++ b/custom_pivot_report/models/ir_ui_view.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2025-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 IrUiView(models.Model): + """Inheriting the 'ir.ui.view' model.""" + _inherit = 'ir.ui.view' + + custom_report = fields.Char(string='Custom ID', help="Custom report") diff --git a/custom_pivot_report/security/ir.model.access.csv b/custom_pivot_report/security/ir.model.access.csv new file mode 100755 index 000000000..5e890b721 --- /dev/null +++ b/custom_pivot_report/security/ir.model.access.csv @@ -0,0 +1,3 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +custom_report,custom.report,model_custom_report,base.group_user,1,1,1,1, +custom_report_fields,custom.report.field,model_custom_report_fields,base.group_user,1,1,1,1, diff --git a/custom_pivot_report/static/description/assets/cybro-icon.png b/custom_pivot_report/static/description/assets/cybro-icon.png new file mode 100644 index 000000000..06e73e11d Binary files /dev/null and b/custom_pivot_report/static/description/assets/cybro-icon.png differ diff --git a/custom_pivot_report/static/description/assets/cybro-odoo.png b/custom_pivot_report/static/description/assets/cybro-odoo.png new file mode 100644 index 000000000..ed02e07a4 Binary files /dev/null and b/custom_pivot_report/static/description/assets/cybro-odoo.png differ diff --git a/custom_pivot_report/static/description/assets/h2.png b/custom_pivot_report/static/description/assets/h2.png new file mode 100644 index 000000000..0bfc4707d Binary files /dev/null and b/custom_pivot_report/static/description/assets/h2.png differ diff --git a/custom_pivot_report/static/description/assets/icons/arrows-repeat.svg b/custom_pivot_report/static/description/assets/icons/arrows-repeat.svg new file mode 100644 index 000000000..1d7efabc5 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-1.png b/custom_pivot_report/static/description/assets/icons/banner-1.png new file mode 100644 index 000000000..c180db172 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/banner-1.png differ diff --git a/custom_pivot_report/static/description/assets/icons/banner-2.svg b/custom_pivot_report/static/description/assets/icons/banner-2.svg new file mode 100644 index 000000000..e606d97d9 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-bg.png b/custom_pivot_report/static/description/assets/icons/banner-bg.png new file mode 100644 index 000000000..a8238d3c0 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/banner-bg.png differ diff --git a/custom_pivot_report/static/description/assets/icons/banner-bg.svg b/custom_pivot_report/static/description/assets/icons/banner-bg.svg new file mode 100644 index 000000000..b1378103e --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-call.svg b/custom_pivot_report/static/description/assets/icons/banner-call.svg new file mode 100644 index 000000000..96c687e81 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-mail.svg b/custom_pivot_report/static/description/assets/icons/banner-mail.svg new file mode 100644 index 000000000..cbf0d158d --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-pattern.svg b/custom_pivot_report/static/description/assets/icons/banner-pattern.svg new file mode 100644 index 000000000..9c1c7e101 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/banner-promo.svg b/custom_pivot_report/static/description/assets/icons/banner-promo.svg new file mode 100644 index 000000000..d52791b11 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/brand-pair.svg b/custom_pivot_report/static/description/assets/icons/brand-pair.svg new file mode 100644 index 000000000..d8db7fc1e --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/check.png b/custom_pivot_report/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/check.png differ diff --git a/custom_pivot_report/static/description/assets/icons/chevron.png b/custom_pivot_report/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/chevron.png differ diff --git a/custom_pivot_report/static/description/assets/icons/close-icon.svg b/custom_pivot_report/static/description/assets/icons/close-icon.svg new file mode 100644 index 000000000..df8cce37a --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/cogs.png b/custom_pivot_report/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/cogs.png differ diff --git a/custom_pivot_report/static/description/assets/icons/collabarate-icon.svg b/custom_pivot_report/static/description/assets/icons/collabarate-icon.svg new file mode 100644 index 000000000..dd4e10518 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/custom_pivot_report/static/description/assets/icons/consultation.png b/custom_pivot_report/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/consultation.png differ diff --git a/custom_pivot_report/static/description/assets/icons/cybro-logo.png b/custom_pivot_report/static/description/assets/icons/cybro-logo.png new file mode 100644 index 000000000..ff4b78220 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/cybro-logo.png differ diff --git a/custom_pivot_report/static/description/assets/icons/down.svg b/custom_pivot_report/static/description/assets/icons/down.svg new file mode 100644 index 000000000..f21c36271 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/custom_pivot_report/static/description/assets/icons/ecom-black.png b/custom_pivot_report/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/ecom-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/education-black.png b/custom_pivot_report/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/education-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/faq.png b/custom_pivot_report/static/description/assets/icons/faq.png new file mode 100644 index 000000000..4250b5b81 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/faq.png differ diff --git a/custom_pivot_report/static/description/assets/icons/feature-icon.svg b/custom_pivot_report/static/description/assets/icons/feature-icon.svg new file mode 100644 index 000000000..fa0ea6850 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/feature.png b/custom_pivot_report/static/description/assets/icons/feature.png new file mode 100644 index 000000000..ac7a785c0 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/feature.png differ diff --git a/custom_pivot_report/static/description/assets/icons/gear.svg b/custom_pivot_report/static/description/assets/icons/gear.svg new file mode 100644 index 000000000..0cc66b6ea --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/hero.gif b/custom_pivot_report/static/description/assets/icons/hero.gif new file mode 100644 index 000000000..3093e4092 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/hero.gif differ diff --git a/custom_pivot_report/static/description/assets/icons/hire-odoo.svg b/custom_pivot_report/static/description/assets/icons/hire-odoo.svg new file mode 100644 index 000000000..e1ac089b0 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/hotel-black.png b/custom_pivot_report/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/hotel-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/license.png b/custom_pivot_report/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/license.png differ diff --git a/custom_pivot_report/static/description/assets/icons/life-ring-icon.svg b/custom_pivot_report/static/description/assets/icons/life-ring-icon.svg new file mode 100644 index 000000000..3ae6e1d89 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/lifebuoy.png b/custom_pivot_report/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/lifebuoy.png differ diff --git a/custom_pivot_report/static/description/assets/icons/mail.svg b/custom_pivot_report/static/description/assets/icons/mail.svg new file mode 100644 index 000000000..1eedde695 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/custom_pivot_report/static/description/assets/icons/manufacturing-black.png b/custom_pivot_report/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/manufacturing-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/notes.png b/custom_pivot_report/static/description/assets/icons/notes.png new file mode 100644 index 000000000..ee5e95404 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/notes.png differ diff --git a/custom_pivot_report/static/description/assets/icons/notification icon.svg b/custom_pivot_report/static/description/assets/icons/notification icon.svg new file mode 100644 index 000000000..053189973 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/odoo-consultancy.svg b/custom_pivot_report/static/description/assets/icons/odoo-consultancy.svg new file mode 100644 index 000000000..e05f65bde --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/custom_pivot_report/static/description/assets/icons/odoo-licencing.svg b/custom_pivot_report/static/description/assets/icons/odoo-licencing.svg new file mode 100644 index 000000000..2606c88b0 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/custom_pivot_report/static/description/assets/icons/odoo-logo.png b/custom_pivot_report/static/description/assets/icons/odoo-logo.png new file mode 100644 index 000000000..0e4d0eb5a Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/odoo-logo.png differ diff --git a/custom_pivot_report/static/description/assets/icons/patter.svg b/custom_pivot_report/static/description/assets/icons/patter.svg new file mode 100644 index 000000000..25c9c0a8f --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/pattern1.png b/custom_pivot_report/static/description/assets/icons/pattern1.png new file mode 100644 index 000000000..09ab0fb2d Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/pattern1.png differ diff --git a/custom_pivot_report/static/description/assets/icons/pos-black.png b/custom_pivot_report/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/pos-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/puzzle-piece-icon.svg b/custom_pivot_report/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100644 index 000000000..3e9ad9373 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/puzzle.png b/custom_pivot_report/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/puzzle.png differ diff --git a/custom_pivot_report/static/description/assets/icons/replace-icon.svg b/custom_pivot_report/static/description/assets/icons/replace-icon.svg new file mode 100644 index 000000000..d0e3a7af1 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/restaurant-black.png b/custom_pivot_report/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/restaurant-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/screenshot-main.png b/custom_pivot_report/static/description/assets/icons/screenshot-main.png new file mode 100644 index 000000000..575f8e676 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/screenshot-main.png differ diff --git a/custom_pivot_report/static/description/assets/icons/screenshot.png b/custom_pivot_report/static/description/assets/icons/screenshot.png new file mode 100644 index 000000000..cef272529 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/screenshot.png differ diff --git a/custom_pivot_report/static/description/assets/icons/service-black.png b/custom_pivot_report/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/service-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/skype-fill.svg b/custom_pivot_report/static/description/assets/icons/skype-fill.svg new file mode 100644 index 000000000..c17423639 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/skype.png b/custom_pivot_report/static/description/assets/icons/skype.png new file mode 100644 index 000000000..51b409fb3 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/skype.png differ diff --git a/custom_pivot_report/static/description/assets/icons/skype.svg b/custom_pivot_report/static/description/assets/icons/skype.svg new file mode 100644 index 000000000..df3dad39b --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/custom_pivot_report/static/description/assets/icons/star-1.svg b/custom_pivot_report/static/description/assets/icons/star-1.svg new file mode 100644 index 000000000..7e55ab162 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/star-2.svg b/custom_pivot_report/static/description/assets/icons/star-2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/support.png b/custom_pivot_report/static/description/assets/icons/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/support.png differ diff --git a/custom_pivot_report/static/description/assets/icons/test-1 - Copy.png b/custom_pivot_report/static/description/assets/icons/test-1 - Copy.png new file mode 100644 index 000000000..f6a902663 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/test-1 - Copy.png differ diff --git a/custom_pivot_report/static/description/assets/icons/test-1.png b/custom_pivot_report/static/description/assets/icons/test-1.png new file mode 100644 index 000000000..0908add2b Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/test-1.png differ diff --git a/custom_pivot_report/static/description/assets/icons/test-2.png b/custom_pivot_report/static/description/assets/icons/test-2.png new file mode 100644 index 000000000..4671fe91e Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/test-2.png differ diff --git a/custom_pivot_report/static/description/assets/icons/trading-black.png b/custom_pivot_report/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/trading-black.png differ diff --git a/custom_pivot_report/static/description/assets/icons/training.png b/custom_pivot_report/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/training.png differ diff --git a/custom_pivot_report/static/description/assets/icons/translate.svg b/custom_pivot_report/static/description/assets/icons/translate.svg new file mode 100644 index 000000000..af9c8a1aa --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/update.png b/custom_pivot_report/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/update.png differ diff --git a/custom_pivot_report/static/description/assets/icons/user.png b/custom_pivot_report/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/user.png differ diff --git a/custom_pivot_report/static/description/assets/icons/video.png b/custom_pivot_report/static/description/assets/icons/video.png new file mode 100644 index 000000000..576705b17 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/video.png differ diff --git a/custom_pivot_report/static/description/assets/icons/whatsapp.png b/custom_pivot_report/static/description/assets/icons/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/whatsapp.png differ diff --git a/custom_pivot_report/static/description/assets/icons/wrench-icon.svg b/custom_pivot_report/static/description/assets/icons/wrench-icon.svg new file mode 100644 index 000000000..174b5a465 --- /dev/null +++ b/custom_pivot_report/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/custom_pivot_report/static/description/assets/icons/wrench.png b/custom_pivot_report/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/wrench.png differ diff --git a/custom_pivot_report/static/description/assets/modules/1.gif b/custom_pivot_report/static/description/assets/modules/1.gif new file mode 100644 index 000000000..ae3a880a2 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/1.gif differ diff --git a/custom_pivot_report/static/description/assets/modules/2.gif b/custom_pivot_report/static/description/assets/modules/2.gif new file mode 100644 index 000000000..d19e2b352 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/2.gif differ diff --git a/custom_pivot_report/static/description/assets/modules/3.png b/custom_pivot_report/static/description/assets/modules/3.png new file mode 100644 index 000000000..8513873ea Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/3.png differ diff --git a/custom_pivot_report/static/description/assets/modules/4.png b/custom_pivot_report/static/description/assets/modules/4.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/4.png differ diff --git a/custom_pivot_report/static/description/assets/modules/5.png b/custom_pivot_report/static/description/assets/modules/5.png new file mode 100644 index 000000000..0e311ca87 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/5.png differ diff --git a/custom_pivot_report/static/description/assets/modules/6.jpg b/custom_pivot_report/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/6.jpg differ diff --git a/custom_pivot_report/static/description/assets/screenshots/1.png b/custom_pivot_report/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..4fc854025 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/1.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/2.png b/custom_pivot_report/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..352c04368 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/2.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/3.png b/custom_pivot_report/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..fbeb07bce Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/3.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/4.png b/custom_pivot_report/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..fb9e75a9d Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/4.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/5.png b/custom_pivot_report/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..dd1849e56 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/5.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/6.png b/custom_pivot_report/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..51ff68e64 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/6.png differ diff --git a/custom_pivot_report/static/description/assets/y18.jpg b/custom_pivot_report/static/description/assets/y18.jpg new file mode 100644 index 000000000..eea1714f2 Binary files /dev/null and b/custom_pivot_report/static/description/assets/y18.jpg differ diff --git a/custom_pivot_report/static/description/banner.gif b/custom_pivot_report/static/description/banner.gif new file mode 100644 index 000000000..9b201274b Binary files /dev/null and b/custom_pivot_report/static/description/banner.gif differ diff --git a/custom_pivot_report/static/description/icon.png b/custom_pivot_report/static/description/icon.png new file mode 100644 index 000000000..44f6b242b Binary files /dev/null and b/custom_pivot_report/static/description/icon.png differ diff --git a/custom_pivot_report/static/description/index.html b/custom_pivot_report/static/description/index.html new file mode 100644 index 000000000..584566d29 --- /dev/null +++ b/custom_pivot_report/static/description/index.html @@ -0,0 +1,1105 @@ + + + + + + Custom Pivot Report + + + + + + + + + + +
+
+ + + +
+
+ Community +
+
+ Enterprise +
+
+
+ +
+
+
+
+

+ Create Custom Pivot Report For Any Model Without Coding. +

+

Custom Pivot Report +

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

Key + Highlights

+
+
+
+
+ +
+
+ Create custom pivot report for any module +
+
+
+
+
+
+ +
+
+ Set custom row and measure for pivot +
+
+
+
+
+
+ +
+
+ Place your custom report under any menu +
+
+
+
+
+
+ +
+
+ Set security group for report. +
+
+
+
+
+ +
+
+
+ Custom Pivot Report +

+ Are you ready to make your business more + organized? +
Improve now! +

+ +
+
+ +
+
+
+ + + + +
+
+ +
+
+
+
+ acc_bg +
+ +
+
+
+
+

+ User can create custom pivot + + report +

+
+
+

+ User can create custom pivot report for any module and specify the + report menu position. Along with this, user can provide security group + and select custom fields for the report. +

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

+ +User added report + + menu +

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

+ +Custom created pivot + + report +

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

+ +User can create custom pivot + + report +

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

+ +User added report + + + menu +

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

+ +Custom created pivot + + report +

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

+ Create custom pivot report for any module

+
+ +
+
+
+
+
+
+ +
+

+ Set custom row and measure for pivot +

+
+
+
+
+
+
+
+ +
+

+ Place your custom report under any menu + .

+
+
+
+
+
+
+
+ +
+

+ Set security group for report. + .

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

+ This module allows users to create custom pivot reports for + any module in Odoo. Users can define custom rows and + measures to tailor the report to their needs. +

+
+
+ +
+ +
+

+ You can easily set custom rows and measures for your pivot + report by selecting the appropriate fields, enabling you to + analyze data in a way that suits your business requirements. +

+
+
+ +
+ +
+

+ You can place your custom report under any menu in Odoo, + making it accessible from the desired section of your + application. +

+
+
+ +
+ +
+

+ Yes, you can assign specific security groups to the report, + ensuring that only authorized users can view or access the + pivot reports. +

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

+ Latest Release 18.0.1.0.0 +

+ + 26th September, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • + Initial Commit +
  • + +
+
+
+
+
+
+
+
+
+
+ + + + + + +
+

+ Our Services

+ +
+ +
+
+ .... +
+
+ +
+ + +
+
+ + + + + + diff --git a/custom_pivot_report/views/custom_report_views.xml b/custom_pivot_report/views/custom_report_views.xml new file mode 100644 index 000000000..a825feb22 --- /dev/null +++ b/custom_pivot_report/views/custom_report_views.xml @@ -0,0 +1,68 @@ + + + + + custom.report.view.list + custom.report + list + + + + + + + + + + + + custom.report.view.form + custom.report + form + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + Custom Report + ir.actions.act_window + custom.report + list,form + +

+ Create record +

+
+
+ + + +
\ No newline at end of file