diff --git a/module_activity/README.rst b/module_activity/README.rst new file mode 100644 index 000000000..1afcd26d6 --- /dev/null +++ b/module_activity/README.rst @@ -0,0 +1,47 @@ +.. image:: https://img.shields.io/badge/license-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Module Activation Details +========================= +This module helps to understand the history of activities like upgrade install and uninstall + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +Affero General Public License, Version 3 (AGPL v3). +(http://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Credits +------- +* Developer: (V17) Gayathri V +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/module_activity/__init__.py b/module_activity/__init__.py new file mode 100644 index 000000000..fbb7a50df --- /dev/null +++ b/module_activity/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 models diff --git a/module_activity/__manifest__.py b/module_activity/__manifest__.py new file mode 100644 index 000000000..9d7c5bedd --- /dev/null +++ b/module_activity/__manifest__.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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': 'Module Activation Details', + 'version': '17.0.1.0.0', + 'category': 'Extra Tools', + 'summary': """This module helps to understand the history of activities + like upgrade install and uninstall""", + 'description': """This imodule is used to record the module activity of each + users, the activities like upgrade install and uninstall.While installing a + module record will be created to record the activity.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base'], + 'data': { + 'security/module_activity_groups.xml', + 'security/ir.model.access.csv', + 'views/module_activity_views.xml', + }, + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/module_activity/doc/RELEASE_NOTES.md b/module_activity/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..20d6c9ab4 --- /dev/null +++ b/module_activity/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 29.08.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Module Activation Details diff --git a/module_activity/models/__init__.py b/module_activity/models/__init__.py new file mode 100644 index 000000000..39d0197a8 --- /dev/null +++ b/module_activity/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 ir_module +from . import module_activity diff --git a/module_activity/models/ir_module.py b/module_activity/models/ir_module.py new file mode 100644 index 000000000..8a46ac82b --- /dev/null +++ b/module_activity/models/ir_module.py @@ -0,0 +1,99 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 +from odoo.addons.base.models.ir_module import assert_log_admin_access + + +class IrModule(models.Model): + """This is used get the activities history for the module""" + _inherit = 'ir.module.module' + + @assert_log_admin_access + def button_immediate_install(self): + """This is used to get the installation history of the modules""" + res = super(IrModule, self).button_immediate_install() + module = self.env['ir.module.module'].search( + [('name', '=', 'module_activity')]) + if module.state == 'installed': + module_activity = self.env['module.activity'].search( + [('modules_id', '=', self.id)]) + if not module_activity: + self.env['module.activity'].create({ + 'modules_id': self.id, + 'installed_history_ids': [ + (0, 0, { + 'installed_module_id': self.id, + 'technical_name': self.display_name, + 'user_id': self.env.user.id, + 'installed_date': fields.Date.today() + + })] + }) + else: + module_activity.write({ + 'installed_history_ids': [ + (0, 0, { + 'installed_module_id': self.id, + 'technical_name': self.display_name, + 'user_id': self.env.user.id, + 'installed_date': fields.Date.today() + + })] + }) + return res + + @assert_log_admin_access + def module_uninstall(self): + """This is used to get the uninstallation history of the modules""" + res = super(IrModule, self).module_uninstall() + for rec in self: + module_un = self.env["module.activity"].search( + [('modules_id', '=', rec.id)]) + + if module_un: + for ric in self: + module_un.write({ + 'uninstalled_history_ids': [(0, 0, { + 'uninstalled_module_id': ric.id, + 'technical_name': ric.display_name, + 'user_id': self.env.user.id, + 'uninstalled_date': fields.Date.today() + })] + }) + return res + + @assert_log_admin_access + def button_immediate_upgrade(self): + """This is used to get the upgrade history of the modules""" + res = super(IrModule, self).button_immediate_upgrade() + module_un = self.env["module.activity"].search( + [('modules_id', '=', self.id)]) + if module_un: + module_un.write({ + 'upgrade_history_ids': [(0, 0, { + 'upgrade_module_id': self.id, + 'technical_name': self.display_name, + 'user_id': self.env.user.id, + 'upgrade_date': fields.Date.today() + })] + }) + return res diff --git a/module_activity/models/module_activity.py b/module_activity/models/module_activity.py new file mode 100644 index 000000000..375be2f3c --- /dev/null +++ b/module_activity/models/module_activity.py @@ -0,0 +1,105 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Gayathri V () +# +# 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 ModuleActivity(models.Model): + """Creating a new record to specify the histories""" + _name = "module.activity" + _description = "Module activity" + + modules_id = fields.Many2one('ir.module.module', string="Module", + help="Module identifier") + technical_name = fields.Char(string="Technical Name", + related="modules_id.name", + help="Technical name of the module") + status = fields.Selection([('uninstallable', 'Uninstallable'), + ('uninstalled', 'Not Installed'), + ('installed', 'Installed'), + ('to upgrade', 'To be upgraded'), + ('to remove', 'To be removed'), + ('to install', 'To be installed')], + related="modules_id.state", string="Status", + help="Status of the module") + uninstalled_history_ids = fields.One2many('uninstall.history', + 'uninstall_id', + string='Uninstalled History', + help="History of uninstallation " + "of the module") + installed_history_ids = fields.One2many('install.history', 'install_id', + string="Installed History", + help="History of installation of " + "the module") + upgrade_history_ids = fields.One2many('upgrade.history', 'upgrade_id', + string='Upgrade History', + help="History of upgrade of the " + "module") + + +class InstalledHistory(models.Model): + _name = 'install.history' + _description = "Installation History" + + installed_module_id = fields.Many2one('ir.module.module', + string='Installed', help="Installed " + "Module " + "Identifier") + technical_name = fields.Char(string="Technical Name", + help="Technical name of the module") + user_id = fields.Many2one('res.users', string="Responsible User", + help="Responsible") + installed_date = fields.Datetime(string="Installed On", + help="Installed date") + install_id = fields.Many2one('module.activity', string="Inverse Install") + + +class UninstalledHistory(models.Model): + _name = 'uninstall.history' + _description = "Uninstallation history" + + uninstalled_module_id = fields.Many2one('ir.module.module', + string="Uninstalled module", + help="Uninstalled module name") + technical_name = fields.Char(string="Technical Name", + help="Technical name of the module") + user_id = fields.Many2one('res.users', string="Responsible User", + help="Responsible user for the uninstallation") + uninstalled_date = fields.Datetime(string="Last Uninstalled On", + help="Uninstalled date") + uninstall_id = fields.Many2one('module.activity', string="Uninstalled", + help="Uninstalled inverse of module.activity") + + +class UpgradeHistory(models.Model): + _name = 'upgrade.history' + _description = "Upgrade History" + + upgrade_module_id = fields.Many2one('ir.module.module', + string="Upgrade module name", + help="Upgrade module identifier using name") + technical_name = fields.Char(string="Technical Name", + help="Technical name of the module") + user_id = fields.Many2one('res.users', string="Responsible user", + help="Responsible user to upgrade") + upgrade_date = fields.Datetime(string="Upgrade On", help="Upgrade date") + upgrade_id = fields.Many2one('module.activity', string="Upgrade", + help="Upgrade inverse of module.activity") diff --git a/module_activity/security/ir.model.access.csv b/module_activity/security/ir.model.access.csv new file mode 100644 index 000000000..26dde46df --- /dev/null +++ b/module_activity/security/ir.model.access.csv @@ -0,0 +1,5 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_module_activity,access.module.activity,model_module_activity,base.group_user,1,1,1,1 +access_uninstall_history,access.uninstall.history,model_uninstall_history,base.group_user,1,1,1,1 +access_install_history,access.install.history,model_install_history,base.group_user,1,1,1,1 +access_upgrade_history,access.upgrade.history,model_upgrade_history,base.group_user,1,1,1,1 diff --git a/module_activity/security/module_activity_groups.xml b/module_activity/security/module_activity_groups.xml new file mode 100644 index 000000000..93b05ac09 --- /dev/null +++ b/module_activity/security/module_activity_groups.xml @@ -0,0 +1,7 @@ + + + + + Module Activity + + \ No newline at end of file diff --git a/module_activity/static/description/assets/icons/capture (1).png b/module_activity/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/module_activity/static/description/assets/icons/capture (1).png differ diff --git a/module_activity/static/description/assets/icons/check.png b/module_activity/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/module_activity/static/description/assets/icons/check.png differ diff --git a/module_activity/static/description/assets/icons/chevron.png b/module_activity/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/module_activity/static/description/assets/icons/chevron.png differ diff --git a/module_activity/static/description/assets/icons/cogs.png b/module_activity/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/module_activity/static/description/assets/icons/cogs.png differ diff --git a/module_activity/static/description/assets/icons/consultation.png b/module_activity/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/module_activity/static/description/assets/icons/consultation.png differ diff --git a/module_activity/static/description/assets/icons/ecom-black.png b/module_activity/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/module_activity/static/description/assets/icons/ecom-black.png differ diff --git a/module_activity/static/description/assets/icons/education-black.png b/module_activity/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/module_activity/static/description/assets/icons/education-black.png differ diff --git a/module_activity/static/description/assets/icons/hotel-black.png b/module_activity/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/module_activity/static/description/assets/icons/hotel-black.png differ diff --git a/module_activity/static/description/assets/icons/img.png b/module_activity/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/module_activity/static/description/assets/icons/img.png differ diff --git a/module_activity/static/description/assets/icons/license.png b/module_activity/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/module_activity/static/description/assets/icons/license.png differ diff --git a/module_activity/static/description/assets/icons/lifebuoy.png b/module_activity/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/module_activity/static/description/assets/icons/lifebuoy.png differ diff --git a/module_activity/static/description/assets/icons/logo.png b/module_activity/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/module_activity/static/description/assets/icons/logo.png differ diff --git a/module_activity/static/description/assets/icons/manufacturing-black.png b/module_activity/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/module_activity/static/description/assets/icons/manufacturing-black.png differ diff --git a/module_activity/static/description/assets/icons/photo-capture.png b/module_activity/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/module_activity/static/description/assets/icons/photo-capture.png differ diff --git a/module_activity/static/description/assets/icons/pos-black.png b/module_activity/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/module_activity/static/description/assets/icons/pos-black.png differ diff --git a/module_activity/static/description/assets/icons/puzzle.png b/module_activity/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/module_activity/static/description/assets/icons/puzzle.png differ diff --git a/module_activity/static/description/assets/icons/restaurant-black.png b/module_activity/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/module_activity/static/description/assets/icons/restaurant-black.png differ diff --git a/module_activity/static/description/assets/icons/service-black.png b/module_activity/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/module_activity/static/description/assets/icons/service-black.png differ diff --git a/module_activity/static/description/assets/icons/trading-black.png b/module_activity/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/module_activity/static/description/assets/icons/trading-black.png differ diff --git a/module_activity/static/description/assets/icons/training.png b/module_activity/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/module_activity/static/description/assets/icons/training.png differ diff --git a/module_activity/static/description/assets/icons/update.png b/module_activity/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/module_activity/static/description/assets/icons/update.png differ diff --git a/module_activity/static/description/assets/icons/user.png b/module_activity/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/module_activity/static/description/assets/icons/user.png differ diff --git a/module_activity/static/description/assets/icons/wrench.png b/module_activity/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/module_activity/static/description/assets/icons/wrench.png differ diff --git a/module_activity/static/description/assets/misc/Cybrosys R.png b/module_activity/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/module_activity/static/description/assets/misc/Cybrosys R.png differ diff --git a/module_activity/static/description/assets/misc/categories.png b/module_activity/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/module_activity/static/description/assets/misc/categories.png differ diff --git a/module_activity/static/description/assets/misc/check-box.png b/module_activity/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/module_activity/static/description/assets/misc/check-box.png differ diff --git a/module_activity/static/description/assets/misc/compass.png b/module_activity/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/module_activity/static/description/assets/misc/compass.png differ diff --git a/module_activity/static/description/assets/misc/corporate.png b/module_activity/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/module_activity/static/description/assets/misc/corporate.png differ diff --git a/module_activity/static/description/assets/misc/customer-support.png b/module_activity/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/module_activity/static/description/assets/misc/customer-support.png differ diff --git a/module_activity/static/description/assets/misc/cybrosys-logo.png b/module_activity/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/module_activity/static/description/assets/misc/cybrosys-logo.png differ diff --git a/module_activity/static/description/assets/misc/email.svg b/module_activity/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/module_activity/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/module_activity/static/description/assets/misc/features.png b/module_activity/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/module_activity/static/description/assets/misc/features.png differ diff --git a/module_activity/static/description/assets/misc/logo.png b/module_activity/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/module_activity/static/description/assets/misc/logo.png differ diff --git a/module_activity/static/description/assets/misc/phone.svg b/module_activity/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/module_activity/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/module_activity/static/description/assets/misc/pictures.png b/module_activity/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/module_activity/static/description/assets/misc/pictures.png differ diff --git a/module_activity/static/description/assets/misc/pie-chart.png b/module_activity/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/module_activity/static/description/assets/misc/pie-chart.png differ diff --git a/module_activity/static/description/assets/misc/right-arrow.png b/module_activity/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/module_activity/static/description/assets/misc/right-arrow.png differ diff --git a/module_activity/static/description/assets/misc/star (1) 2.svg b/module_activity/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/module_activity/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/module_activity/static/description/assets/misc/star.png b/module_activity/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/module_activity/static/description/assets/misc/star.png differ diff --git a/module_activity/static/description/assets/misc/support (1) 1.svg b/module_activity/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/module_activity/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/module_activity/static/description/assets/misc/support-email.svg b/module_activity/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/module_activity/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/module_activity/static/description/assets/misc/support.png b/module_activity/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/module_activity/static/description/assets/misc/support.png differ diff --git a/module_activity/static/description/assets/misc/tick-mark.svg b/module_activity/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/module_activity/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/module_activity/static/description/assets/misc/whatsapp 1.svg b/module_activity/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/module_activity/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/module_activity/static/description/assets/misc/whatsapp.png b/module_activity/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/module_activity/static/description/assets/misc/whatsapp.png differ diff --git a/module_activity/static/description/assets/misc/whatsapp.svg b/module_activity/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/module_activity/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/module_activity/static/description/assets/modules/1.gif b/module_activity/static/description/assets/modules/1.gif new file mode 100644 index 000000000..8ac32db03 Binary files /dev/null and b/module_activity/static/description/assets/modules/1.gif differ diff --git a/module_activity/static/description/assets/modules/1.png b/module_activity/static/description/assets/modules/1.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/module_activity/static/description/assets/modules/1.png differ diff --git a/module_activity/static/description/assets/modules/2.jpg b/module_activity/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..a1dc39c89 Binary files /dev/null and b/module_activity/static/description/assets/modules/2.jpg differ diff --git a/module_activity/static/description/assets/modules/2.png b/module_activity/static/description/assets/modules/2.png new file mode 100644 index 000000000..164eb62c7 Binary files /dev/null and b/module_activity/static/description/assets/modules/2.png differ diff --git a/module_activity/static/description/assets/modules/3.png b/module_activity/static/description/assets/modules/3.png new file mode 100644 index 000000000..25ed3e0b6 Binary files /dev/null and b/module_activity/static/description/assets/modules/3.png differ diff --git a/module_activity/static/description/assets/modules/5.gif b/module_activity/static/description/assets/modules/5.gif new file mode 100644 index 000000000..2a5f8e659 Binary files /dev/null and b/module_activity/static/description/assets/modules/5.gif differ diff --git a/module_activity/static/description/assets/modules/5.png b/module_activity/static/description/assets/modules/5.png new file mode 100644 index 000000000..a80a0d9dc Binary files /dev/null and b/module_activity/static/description/assets/modules/5.png differ diff --git a/module_activity/static/description/assets/modules/banner.jpg b/module_activity/static/description/assets/modules/banner.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/module_activity/static/description/assets/modules/banner.jpg differ diff --git a/module_activity/static/description/assets/screenshots/1.png b/module_activity/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..5288bee09 Binary files /dev/null and b/module_activity/static/description/assets/screenshots/1.png differ diff --git a/module_activity/static/description/assets/screenshots/2.png b/module_activity/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..af54149be Binary files /dev/null and b/module_activity/static/description/assets/screenshots/2.png differ diff --git a/module_activity/static/description/assets/screenshots/3.png b/module_activity/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..870a0381a Binary files /dev/null and b/module_activity/static/description/assets/screenshots/3.png differ diff --git a/module_activity/static/description/assets/screenshots/4.png b/module_activity/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..7a9667a53 Binary files /dev/null and b/module_activity/static/description/assets/screenshots/4.png differ diff --git a/module_activity/static/description/assets/screenshots/5.png b/module_activity/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..b1e22f915 Binary files /dev/null and b/module_activity/static/description/assets/screenshots/5.png differ diff --git a/module_activity/static/description/assets/screenshots/6.png b/module_activity/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..28a064afd Binary files /dev/null and b/module_activity/static/description/assets/screenshots/6.png differ diff --git a/module_activity/static/description/assets/screenshots/7.png b/module_activity/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..8256a028f Binary files /dev/null and b/module_activity/static/description/assets/screenshots/7.png differ diff --git a/module_activity/static/description/assets/screenshots/8.png b/module_activity/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..b1317c429 Binary files /dev/null and b/module_activity/static/description/assets/screenshots/8.png differ diff --git a/module_activity/static/description/assets/screenshots/hero.gif b/module_activity/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..f388d9ded Binary files /dev/null and b/module_activity/static/description/assets/screenshots/hero.gif differ diff --git a/module_activity/static/description/banner.jpg b/module_activity/static/description/banner.jpg new file mode 100644 index 000000000..c285f0fa1 Binary files /dev/null and b/module_activity/static/description/banner.jpg differ diff --git a/module_activity/static/description/icon.png b/module_activity/static/description/icon.png new file mode 100644 index 000000000..79cebcc25 Binary files /dev/null and b/module_activity/static/description/icon.png differ diff --git a/module_activity/static/description/index.html b/module_activity/static/description/index.html new file mode 100644 index 000000000..94350d995 --- /dev/null +++ b/module_activity/static/description/index.html @@ -0,0 +1,746 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Module Activation Details

+

+ This module helps to understand the history of activities + like upgrade install and uninstall +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Install History

+
+
+
+
+
+
+ +
+
+

+ Uninstall History

+
+
+
+
+
+
+ +
+
+

+ Upgrade History

+
+
+
+
+
+
+ +
+
+

+ Community and Enterprise Support.

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

+ Enable access rights for users.

+
+
+
+
+
+
+ +
+
+

+ After installing the module, the tree view will appear as follows. +

+
+
+
+
+
+
+ +
+
+

Install the Sales module. +

+
+
+
+
+
+
+ +
+
+

+ A new record is created in the form view to capture the installation, upgrade, and uninstall histories.

+
+
+
+
+
+
+ +
+
+

+ The form view displays the installation, upgrade, and uninstall histories for the relevant actions.

+
+
+
+
+
+
+
    +
  • + + Upgrade History +
  • +
  • + + Community and Enterprise Support. +
  • +
  • + + Uninstall History +
  • +
  • + + Install History +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:29th Aug 2024 +
+

+ Initial Commit for Module Activation + Details.

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

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

Odoo + Customization

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

Odoo + Implementation

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

Odoo + Support

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

Hire + Odoo Developer

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

Odoo + Integration

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

Odoo + Migration

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

Odoo + Consultancy

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

Odoo + Implementation

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

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

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

Got + questions or need help? Get in touch.

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

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/module_activity/views/module_activity_views.xml b/module_activity/views/module_activity_views.xml new file mode 100644 index 000000000..9736a1c37 --- /dev/null +++ b/module_activity/views/module_activity_views.xml @@ -0,0 +1,83 @@ + + + + Module Activity + module.activity + tree,form + + + + module.activity.view.tree + module.activity + + + + + + + + + + module.activity.view.form + module.activity + +
+ +
+ +
+
+
+
+
+ + + +
\ No newline at end of file