diff --git a/custom_pivot_report/README.rst b/custom_pivot_report/README.rst new file mode 100755 index 000000000..3e8edd6b6 --- /dev/null +++ b/custom_pivot_report/README.rst @@ -0,0 +1,40 @@ +Custom Pivot Report +=================== +* Custom Pivot Report module for Odoo 15 + +Installation +============ + - www.odoo.com/documentation/15.0/setup/install.html + - Install our custom addon + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.odoo.com/documentation/user/15.0/legal/licenses/licenses.html) + +Company +------- +* 'Cybrosys Techno Solutions '__ + +Credits +------- +* 'Cybrosys Techno Solutions '__ + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com + +Bug Tracker +----------- +Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. + +Maintainer +========== +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com + +Further information +=================== +HTML Description: ``__ + diff --git a/custom_pivot_report/__init__.py b/custom_pivot_report/__init__.py new file mode 100644 index 000000000..db4ddb8ad --- /dev/null +++ b/custom_pivot_report/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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..6dd287316 --- /dev/null +++ b/custom_pivot_report/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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', + "description": """Create Custom Pivot Report For Any Model Without Coding, Dynamic Pivot Report, Custom Pivot Report, Dynamic Report, Pivot View""", + "summary": """Create Custom Pivot Report For Any Model Without Coding""", + "category": "Tools", + 'version': '15.0.1.0.0', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base'], + 'images': ['static/description/banner.png'], + 'data': [ + 'security/ir.model.access.csv', + 'views/custom_report.xml', + ], + 'license': 'LGPL-3', + 'installable': True, + 'application': False, + 'auto_install': 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..d2958516d --- /dev/null +++ b/custom_pivot_report/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 28.04.2022 +#### Version 15.0.1.0.0 +#### ADD +- Initial commit for custom_pivot_report \ No newline at end of file diff --git a/custom_pivot_report/hooks.py b/custom_pivot_report/hooks.py new file mode 100644 index 000000000..0e7ba31b0 --- /dev/null +++ b/custom_pivot_report/hooks.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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, SUPERUSER_ID + + +def report_uninstall_hook(cr, registry): + # Uninstall hook to delete all the custom pivot reports + env = api.Environment(cr, SUPERUSER_ID, {}) + 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..1f672a5b7 --- /dev/null +++ b/custom_pivot_report/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-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 custom_report \ No newline at end of file diff --git a/custom_pivot_report/models/custom_report.py b/custom_pivot_report/models/custom_report.py new file mode 100644 index 000000000..04294fcc9 --- /dev/null +++ b/custom_pivot_report/models/custom_report.py @@ -0,0 +1,161 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2022-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL v3), Version 3. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# + +from odoo import models, fields, api, _ + + +class IrUiView(models.Model): + _inherit = 'ir.ui.view' + + custom_id = fields.Char(string='Custom ID') + + +class IrUiMenu(models.Model): + _inherit = 'ir.ui.menu' + + custom_id = fields.Char(string='Custom ID') + + +class IrActionsActWindow(models.Model): + _inherit = 'ir.actions.act_window' + + custom_id = fields.Char(string='Custom ID') + + +class CustomReport(models.Model): + _name = 'custom.report' + _description = 'Custom Report' + + name = fields.Char(string='Name') + model_id = fields.Many2one('ir.model', string='Model', required=True, domain="[('transient', '=', False),]", + ondelete='cascade') + fields_ids = fields.One2many('custom.report.fields', 'report_id', string='Fields', required=True) + 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') + view_type = fields.Selection([('pivot', 'Pivot'), ('graph', 'Graph')], string='View Type') + + def unlink(self): + for rec in self: + # Searching the view + view = self.env['ir.ui.view'].search( + [('custom_id', '=', str(rec.id) + '_' + rec.model_id.model + '_' + rec.menu_id.complete_name)]) + # search the action + action = self.env['ir.actions.act_window'].search( + [('custom_id', '=', str(rec.id) + '_' + 'pivot' + '_' + '_' + 'current',)]) + # search the menu + menu = self.env['ir.ui.menu'].search( + [('custom_id', '=', 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): + view_id = self.env['ir.ui.view'].search( + [('custom_id', '=', 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_id': 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_id': 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_id', '=', 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_id': 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_id', '=', 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) + + +class CustomReportFields(models.Model): + _name = 'custom.report.fields' + _description = 'Custom Report Fields' + + custom_field_id = fields.Many2one('ir.model.fields', string='Custom Report', + required=True, ondelete='cascade') + report_id = fields.Many2one('custom.report', string='Parent ', ondelete='cascade') + label = fields.Char(string='Label') + row = fields.Boolean(string='Row', default=0) + measure = fields.Boolean(string='Mesure', default=0) + measurable = fields.Boolean(string='Measurable', default=0) + rowable = fields.Boolean(string='Row able', default=0) + + @api.onchange('custom_field_id') + def onchange_custom_field_id(self): + model_id = self.env.context.get('parent_id') + self.label = self.custom_field_id.field_description + self.report_id = model_id + 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 + return {'domain': {'custom_field_id': [('model_id.id', '=', model_id)]}} 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..4268a401d --- /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/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/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/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/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/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/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/logo.png b/custom_pivot_report/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/custom_pivot_report/static/description/assets/icons/logo.png differ 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/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.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/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/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/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/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/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/budget_image.png b/custom_pivot_report/static/description/assets/modules/budget_image.png new file mode 100644 index 000000000..b50130c7d Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/budget_image.png differ diff --git a/custom_pivot_report/static/description/assets/modules/credit_image.png b/custom_pivot_report/static/description/assets/modules/credit_image.png new file mode 100644 index 000000000..3ad04ecfd Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/credit_image.png differ diff --git a/custom_pivot_report/static/description/assets/modules/employee_image.png b/custom_pivot_report/static/description/assets/modules/employee_image.png new file mode 100644 index 000000000..30ad58232 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/employee_image.png differ diff --git a/custom_pivot_report/static/description/assets/modules/export_image.png b/custom_pivot_report/static/description/assets/modules/export_image.png new file mode 100644 index 000000000..492980ad0 Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/export_image.png differ diff --git a/custom_pivot_report/static/description/assets/modules/gantt_image.png b/custom_pivot_report/static/description/assets/modules/gantt_image.png new file mode 100644 index 000000000..1ae7cfe3b Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/gantt_image.png differ diff --git a/custom_pivot_report/static/description/assets/modules/quotation_image.png b/custom_pivot_report/static/description/assets/modules/quotation_image.png new file mode 100644 index 000000000..499b1a72f Binary files /dev/null and b/custom_pivot_report/static/description/assets/modules/quotation_image.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/hero.gif b/custom_pivot_report/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..f67a8f151 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/hero.gif differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img1.png b/custom_pivot_report/static/description/assets/screenshots/img1.png new file mode 100644 index 000000000..5af0d6fcd Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img1.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img2.1.png b/custom_pivot_report/static/description/assets/screenshots/img2.1.png new file mode 100644 index 000000000..c51799d5c Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img2.1.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img2.png b/custom_pivot_report/static/description/assets/screenshots/img2.png new file mode 100644 index 000000000..247ce1302 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img2.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img3.png b/custom_pivot_report/static/description/assets/screenshots/img3.png new file mode 100644 index 000000000..fd5631e17 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img3.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img4.1.png b/custom_pivot_report/static/description/assets/screenshots/img4.1.png new file mode 100644 index 000000000..955a8cb2a Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img4.1.png differ diff --git a/custom_pivot_report/static/description/assets/screenshots/img4.png b/custom_pivot_report/static/description/assets/screenshots/img4.png new file mode 100644 index 000000000..62bb964c9 Binary files /dev/null and b/custom_pivot_report/static/description/assets/screenshots/img4.png differ diff --git a/custom_pivot_report/static/description/banner.png b/custom_pivot_report/static/description/banner.png new file mode 100644 index 000000000..7f9694507 Binary files /dev/null and b/custom_pivot_report/static/description/banner.png 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..655443177 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..0de854339 --- /dev/null +++ b/custom_pivot_report/static/description/index.html @@ -0,0 +1,631 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+ +
+
+
+
+ +
+
+
+

+ Custom Pivot Report

+

+ Create Custom Pivot Report For Any Model Without Coding +

+ +
+
+ + + +
+
+

+ Overview +

+
+ +
+

+ In the Custom Pivot Report App, user can configure the menu, fields, and security for pivot reports. A + user can easily set rows and measures for the pivot report. +

+
+

+ +
+ + +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Create custom pivot report for any module +

+
+
+ +
+
+ +
+
+

+ Place your custom report under any menu +

+
+
+ +
+
+ +
+
+

+ Set custom row and measure for pivot +

+
+
+ +
+
+ +
+
+

+ Set security group for report +

+
+
+ + +
+ +
+
+

+ Screenshots +

+
+
+

+ Custom Report Creation +

+

+ 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 +

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

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/custom_pivot_report/views/custom_report.xml b/custom_pivot_report/views/custom_report.xml new file mode 100644 index 000000000..e338fa5e5 --- /dev/null +++ b/custom_pivot_report/views/custom_report.xml @@ -0,0 +1,67 @@ + + + + + Custom Reports + ir.actions.act_window + custom.report + tree,form + +

+ Create record +

+
+
+ + Custom Report + custom.report + tree + + + + + + + + + + Custom Report + custom.report + form + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + +
+
\ No newline at end of file