diff --git a/project_task_risk_management_odoo/README.rst b/project_task_risk_management_odoo/README.rst new file mode 100644 index 000000000..1e209df2f --- /dev/null +++ b/project_task_risk_management_odoo/README.rst @@ -0,0 +1,48 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Project Task Risk Management Odoo +================================= +* Project Task Risk Management Odoo. + +Configuration +============= +* No additional configurations needed. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL-3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +* Developer: (V18) Ranjith R + (V17) Ashwin A +* 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/project_task_risk_management_odoo/__init__.py b/project_task_risk_management_odoo/__init__.py new file mode 100644 index 000000000..480605969 --- /dev/null +++ b/project_task_risk_management_odoo/__init__.py @@ -0,0 +1,33 @@ +# -*- 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 . import wizard +from odoo import fields + + +def _post_init_hook(env): + """ While Installing the module linking users into Group Named Technical/Use Stages on Project""" + project_stage_group = env.ref('project.group_project_stages') + users = env['res.users'].search([('share', '=', False)]) + for i in users: + if i not in project_stage_group.users: + project_stage_group.write({'users': [(fields.Command.link(i.id))]}) diff --git a/project_task_risk_management_odoo/__manifest__.py b/project_task_risk_management_odoo/__manifest__.py new file mode 100644 index 000000000..218cab455 --- /dev/null +++ b/project_task_risk_management_odoo/__manifest__.py @@ -0,0 +1,58 @@ +# -*- 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': 'Project Task Risk Management Odoo', + 'version': '18.0.1.0.0', + 'category': 'Extra Tools', + 'summary': 'Risk Management For Project & Tasks', + 'description': """This module allows project manager and users to + manage risk on the project and tasks with risk incident creation from + project and tasks.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['project','project_sms'], + 'data': [ + 'security/project_task_risk_management_odoo_groups.xml', + 'security/ir.model.access.csv', + 'views/project_risk_incident_line_views.xml', + 'views/task_risk_incident_line_views.xml', + 'views/menu_actions.xml', + 'views/menuitems.xml', + 'views/project_project_views.xml', + 'views/risks_project_views.xml', + 'views/risk_type_views.xml', + 'views/risk_category_views.xml', + 'views/risk_response_views.xml', + 'views/risk_tag_views.xml', + 'views/risk_incident_views.xml', + 'views/project_task_views.xml', + 'wizard/risk_incident_simplified_views.xml', + ], + 'post_init_hook': '_post_init_hook', + 'images': ['static/description/banner.jpg'], + 'license': 'LGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} diff --git a/project_task_risk_management_odoo/doc/RELEASE_NOTES.md b/project_task_risk_management_odoo/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..82abefb92 --- /dev/null +++ b/project_task_risk_management_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 21.01.2025 +#### Version 18.0.1.0.0 +#### ADD +- Initial commit for Project Task Risk Management Odoo diff --git a/project_task_risk_management_odoo/models/__init__.py b/project_task_risk_management_odoo/models/__init__.py new file mode 100644 index 000000000..70b2ceeae --- /dev/null +++ b/project_task_risk_management_odoo/models/__init__.py @@ -0,0 +1,31 @@ +# -*- 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 project_project +from . import project_risk_incident_line +from . import project_task +from . import risk_category +from . import risk_incidents +from . import risks_project +from . import risk_response +from . import risk_tags +from . import risk_type +from . import task_risk_incident_line diff --git a/project_task_risk_management_odoo/models/project_project.py b/project_task_risk_management_odoo/models/project_project.py new file mode 100644 index 000000000..1888b4264 --- /dev/null +++ b/project_task_risk_management_odoo/models/project_project.py @@ -0,0 +1,45 @@ +# -*- 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 ProjectIncident(models.Model): + """ Inherits project. project and add fields""" + _inherit = 'project.project' + + risk_incident_line = fields.One2many('project.risk.incident.line', + 'incident_order_id', + string='Risk Incident Lines', + help='Risk Incident Lines') + + def create_incident_wiz(self): + """ Returns Wizard""" + return { + 'name': _('Create Incident'), + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'risk.incident.simplified', + 'target': 'new', + 'context': ( + {'default_user_id': self.user_id.id, + 'default_project_id': self.id}) + } diff --git a/project_task_risk_management_odoo/models/project_risk_incident_line.py b/project_task_risk_management_odoo/models/project_risk_incident_line.py new file mode 100644 index 000000000..7e430c922 --- /dev/null +++ b/project_task_risk_management_odoo/models/project_risk_incident_line.py @@ -0,0 +1,42 @@ +# -*- 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 RiskIncident(models.Model): + """ Model for Project Risk Incident Line""" + _name = 'project.risk.incident.line' + + incident_order_id = fields.Many2one('project.project', + string='Risk Reference', + help='Reference of the Risk') + risk = fields.Many2one('risks.project', string='Risk', + help='Select Risk', required=True) + des = fields.Char(string="Description", help='Description of the project risk') + category = fields.Many2one('risk.category', string='Category', + required=True, help='Category of the risk') + risk_response = fields.Many2one('risk.response', string='Risk Response', + required=True, help='Response of the risk') + risk_type = fields.Many2one('risk.type', string='Risk Type', required=True, + help='Type of the risk') + probability = fields.Float(string='Probability(%)', help='Probability of the risk incident in percentage') + tag_ids = fields.Many2many('risk.tag', string='Tags', help='Risk Tag') diff --git a/project_task_risk_management_odoo/models/project_task.py b/project_task_risk_management_odoo/models/project_task.py new file mode 100644 index 000000000..b320b6484 --- /dev/null +++ b/project_task_risk_management_odoo/models/project_task.py @@ -0,0 +1,45 @@ +# -*- 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 ProjectTasksRisk(models.Model): + """ Inherits project task and adding fields """ + _inherit = 'project.task' + + task_risk_incident_line = fields.One2many('task.risk.incident.line', + 'task_incident_order_id', + string='Risk Incident Lines', + help='Risk Incident Lines') + + def task_create_incident_wiz(self): + """ Returns Wizard""" + return { + 'name': _('Create Incident'), + 'type': 'ir.actions.act_window', + 'view_mode': 'form', + 'res_model': 'risk.incident.simplified', + 'target': 'new', + 'context': ( + {'default_user_id': self.project_id.user_id.id, + 'default_project_id': self.project_id.id}) + } diff --git a/project_task_risk_management_odoo/models/risk_category.py b/project_task_risk_management_odoo/models/risk_category.py new file mode 100644 index 000000000..329d3fda1 --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_category.py @@ -0,0 +1,30 @@ +# -*- 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 RiskCategory(models.Model): + """ Risk Category Model """ + _name = 'risk.category' + + name = fields.Char(string='Name', help='Name of Risk Category') + code = fields.Char(string='Code', help='Code of Risk Category') diff --git a/project_task_risk_management_odoo/models/risk_incidents.py b/project_task_risk_management_odoo/models/risk_incidents.py new file mode 100644 index 000000000..d30fd61e5 --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_incidents.py @@ -0,0 +1,52 @@ +# -*- 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 RiskIncidents(models.Model): + """ Risk Incident """ + _name = 'risk.incident' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'risk_incident' + + risk_incident = fields.Char(string='Title', tracking=True, required=True, help='Risk Incident Name') + project_id = fields.Many2one('project.project', string='Project', + tracking=True, help='Project of the Risk Incident') + user_id = fields.Many2one('res.users', string='Assigned to', + help='Select user', + tracking=True, default=lambda self: self.env.user) + deadline = fields.Date(string='Deadline', tracking=True, help='Deadline of the Risk Incident') + tag_ids = fields.Many2many('risk.tag', string='Tags', tracking=True, help='Risk Tag') + partner_id = fields.Many2one('res.partner', string='Customer', + tracking=True, help='Partner of the Risk Incident') + state = fields.Selection( + [('new', 'New'), ('to_do', 'To Do'), + ('advanced', 'Advanced'), ('progress', 'In Progress'), + ('done', 'Done'), ('cancel', 'Cancelled')], + string='Status', default='new', tracking=True, help='states', + group_expand='_group_expand_states') + note = fields.Text(string='Description', help='Description') + incident_image = fields.Binary(string='Incident Image', help='Image') + + def _group_expand_states(self, state, domain): + return [key for + key, val in type(self).state.selection] diff --git a/project_task_risk_management_odoo/models/risk_response.py b/project_task_risk_management_odoo/models/risk_response.py new file mode 100644 index 000000000..20683d14a --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_response.py @@ -0,0 +1,30 @@ +# -*- 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 RiskResponse(models.Model): + """Model for Risk Response """ + _name = 'risk.response' + + name = fields.Char(string='Name', help='Name of Risk Response') + code = fields.Char(string='Code', help='Code of Risk Response') diff --git a/project_task_risk_management_odoo/models/risk_tags.py b/project_task_risk_management_odoo/models/risk_tags.py new file mode 100644 index 000000000..0288f59c6 --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_tags.py @@ -0,0 +1,42 @@ +# -*- 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 random import randint +from odoo import fields, models + + +class RiskTags(models.Model): + """ Model for Risk Tag """ + _name = "risk.tag" + _description = "Risk Tags" + + def _get_default_color(self): + """ Selecting Color for Tags""" + return randint(1, 11) + + name = fields.Char('Tag Name', required=True, translate=True, + help='Name of Risk tag') + color = fields.Integer('Color', default=_get_default_color, + help='Select Color of Risk Tag') + + _sql_constraints = [ + ('name_uniq', 'unique (name)', "Tag name already exists !"), + ] diff --git a/project_task_risk_management_odoo/models/risk_type.py b/project_task_risk_management_odoo/models/risk_type.py new file mode 100644 index 000000000..634a1abe8 --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_type.py @@ -0,0 +1,30 @@ +# -*- 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 RiskTypes(models.Model): + """Model for Risk Type """ + _name = 'risk.type' + + name = fields.Char(string='Name', help='Name of Risk Type') + code = fields.Char(string='Code', help='Code of Risk Type') diff --git a/project_task_risk_management_odoo/models/risks_project.py b/project_task_risk_management_odoo/models/risks_project.py new file mode 100644 index 000000000..5ca73bf21 --- /dev/null +++ b/project_task_risk_management_odoo/models/risks_project.py @@ -0,0 +1,48 @@ +# -*- 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 Risks(models.Model): + """ Model for Risk Projects """ + _name = 'risks.project' + _inherit = ['mail.thread', 'mail.activity.mixin'] + _rec_name = 'risk_name' + + risk_name = fields.Char(string='Name', tracking=True, help='Risk Name') + code = fields.Char(string='Code', tracking=True, help='Risk code') + risk_quantification = fields.Selection([ + ('low', 'Low'), + ('medium', 'Medium'), + ('high', 'High')], default='low', string='Risk Quantification', + help='Risk qualification types', + tracking=True) + category_id = fields.Many2one('risk.category', string='Category', + help='Select Category', + tracking=True) + risk_type = fields.Many2one('risk.type', string='Risk Type', tracking=True, + help='Risk Type') + risk_response = fields.Many2one('risk.response', string='Risk Response', + help='Risk response', + tracking=True) + tag_ids = fields.Many2many('risk.tag', string='Tags', help='Risk tags') + note = fields.Text(string='Internal Notes', tracking=True, help='Risk Note') diff --git a/project_task_risk_management_odoo/models/task_risk_incident_line.py b/project_task_risk_management_odoo/models/task_risk_incident_line.py new file mode 100644 index 000000000..f59da9be6 --- /dev/null +++ b/project_task_risk_management_odoo/models/task_risk_incident_line.py @@ -0,0 +1,43 @@ +# -*- 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 RiskIncident(models.Model): + """ model for task_risk_incident_line """ + _name = 'task.risk.incident.line' + + task_incident_order_id = fields.Many2one('project.task', + string='Risk Reference', + help='Reference of the risk') + risk = fields.Many2one('risks.project', string='Risk', required=True, + help='Select Risk') + des = fields.Char(string="Description", help='Description of the Task Risk') + category = fields.Many2one('risk.category', string='Category', + required=True, help='Category of the risk') + risk_response = fields.Many2one('risk.response', string='Risk Response', + required=True, help='Response of the risk') + risk_type = fields.Many2one('risk.type', string='Risk Type', required=True, + help='Type of the risk') + probability = fields.Float(string='Probability(%)', + help='Probability of the risk incident in percentage') + tag_ids = fields.Many2many('risk.tag', string='Tags', help='Risk tags') diff --git a/project_task_risk_management_odoo/security/ir.model.access.csv b/project_task_risk_management_odoo/security/ir.model.access.csv new file mode 100644 index 000000000..c9a79df3c --- /dev/null +++ b/project_task_risk_management_odoo/security/ir.model.access.csv @@ -0,0 +1,10 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_project_risk_incident_line,access.project.risk.incident.line,model_project_risk_incident_line,base.group_user,1,1,1,1 +access_risks_project,access.risks.project,model_risks_project,base.group_user,1,1,1,1 +access_risk_type,access.risk.type,model_risk_type,base.group_user,1,1,1,1 +access_risk_category,access.risk.category,model_risk_category,base.group_user,1,1,1,1 +access_risk_response,access.risk.response,model_risk_response,base.group_user,1,1,1,1 +access_risk_tag,access.risk.tag,model_risk_tag,base.group_user,1,1,1,1 +access_risk_incident_simplified,access.risk.incident.simplified,model_risk_incident_simplified,base.group_user,1,1,1,1 +access_risk_incident,access.risk.incident,model_risk_incident,base.group_user,1,1,1,1 +access_task_risk_incident_line,access.task.risk.incident.line,model_task_risk_incident_line,base.group_user,1,1,1,1 diff --git a/project_task_risk_management_odoo/security/project_task_risk_management_odoo_groups.xml b/project_task_risk_management_odoo/security/project_task_risk_management_odoo_groups.xml new file mode 100644 index 000000000..2b20c86e4 --- /dev/null +++ b/project_task_risk_management_odoo/security/project_task_risk_management_odoo_groups.xml @@ -0,0 +1,36 @@ + + + + Project & Tasks Risk Management + Category for Risk Management + + + + User + + + + + Manager + + + + + + View Own Docs + + [('create_uid', + '=', user.id)] + + + + + + View All Docs + + [(1, '=', 1)] + + + \ No newline at end of file diff --git a/project_task_risk_management_odoo/static/description/assets/cybro-icon.png b/project_task_risk_management_odoo/static/description/assets/cybro-icon.png new file mode 100755 index 000000000..06e73e11d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/cybro-icon.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/cybro-odoo.png b/project_task_risk_management_odoo/static/description/assets/cybro-odoo.png new file mode 100755 index 000000000..ed02e07a4 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/cybro-odoo.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/h2.png b/project_task_risk_management_odoo/static/description/assets/h2.png new file mode 100755 index 000000000..0bfc4707d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/h2.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/arrows-repeat.svg b/project_task_risk_management_odoo/static/description/assets/icons/arrows-repeat.svg new file mode 100755 index 000000000..1d7efabc5 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/arrows-repeat.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-1.png b/project_task_risk_management_odoo/static/description/assets/icons/banner-1.png new file mode 100755 index 000000000..c180db172 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/banner-1.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-2.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-2.svg new file mode 100755 index 000000000..e606d97d9 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-2.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.png b/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.png new file mode 100755 index 000000000..a8238d3c0 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.svg new file mode 100755 index 000000000..b1378103e --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-bg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-call.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-call.svg new file mode 100755 index 000000000..96c687e81 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-call.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-mail.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-mail.svg new file mode 100755 index 000000000..cbf0d158d --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-mail.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-pattern.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-pattern.svg new file mode 100755 index 000000000..9c1c7e101 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-pattern.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/banner-promo.svg b/project_task_risk_management_odoo/static/description/assets/icons/banner-promo.svg new file mode 100755 index 000000000..d52791b11 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/banner-promo.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/brand-pair.svg b/project_task_risk_management_odoo/static/description/assets/icons/brand-pair.svg new file mode 100755 index 000000000..d8db7fc1e --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/brand-pair.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/check.png b/project_task_risk_management_odoo/static/description/assets/icons/check.png new file mode 100755 index 000000000..c8e85f51d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/check.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/chevron.png b/project_task_risk_management_odoo/static/description/assets/icons/chevron.png new file mode 100755 index 000000000..2089293d6 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/chevron.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/close-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/close-icon.svg new file mode 100755 index 000000000..df8cce37a --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/close-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/cogs.png b/project_task_risk_management_odoo/static/description/assets/icons/cogs.png new file mode 100755 index 000000000..95d0bad62 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/cogs.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/collabarate-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/collabarate-icon.svg new file mode 100755 index 000000000..dd4e10518 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/collabarate-icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/consultation.png b/project_task_risk_management_odoo/static/description/assets/icons/consultation.png new file mode 100755 index 000000000..8319d4baa Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/consultation.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/cybro-logo.png b/project_task_risk_management_odoo/static/description/assets/icons/cybro-logo.png new file mode 100755 index 000000000..ff4b78220 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/cybro-logo.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/down.svg b/project_task_risk_management_odoo/static/description/assets/icons/down.svg new file mode 100755 index 000000000..f21c36271 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/project_task_risk_management_odoo/static/description/assets/icons/ecom-black.png b/project_task_risk_management_odoo/static/description/assets/icons/ecom-black.png new file mode 100755 index 000000000..a9385ff13 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/ecom-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/education-black.png b/project_task_risk_management_odoo/static/description/assets/icons/education-black.png new file mode 100755 index 000000000..3eb09b27b Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/education-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/faq.png b/project_task_risk_management_odoo/static/description/assets/icons/faq.png new file mode 100755 index 000000000..4250b5b81 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/faq.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/feature-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/feature-icon.svg new file mode 100755 index 000000000..fa0ea6850 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/feature-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/feature.png b/project_task_risk_management_odoo/static/description/assets/icons/feature.png new file mode 100755 index 000000000..ac7a785c0 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/feature.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/gear.svg b/project_task_risk_management_odoo/static/description/assets/icons/gear.svg new file mode 100755 index 000000000..0cc66b6ea --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/gear.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/hero.gif b/project_task_risk_management_odoo/static/description/assets/icons/hero.gif new file mode 100755 index 000000000..380654dfe Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/hero.gif differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/hire-odoo.svg b/project_task_risk_management_odoo/static/description/assets/icons/hire-odoo.svg new file mode 100755 index 000000000..e1ac089b0 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/hire-odoo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/hotel-black.png b/project_task_risk_management_odoo/static/description/assets/icons/hotel-black.png new file mode 100755 index 000000000..130f613be Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/hotel-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/license.png b/project_task_risk_management_odoo/static/description/assets/icons/license.png new file mode 100755 index 000000000..a5869797e Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/license.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/life-ring-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/life-ring-icon.svg new file mode 100755 index 000000000..3ae6e1d89 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/life-ring-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/lifebuoy.png b/project_task_risk_management_odoo/static/description/assets/icons/lifebuoy.png new file mode 100755 index 000000000..658d56ccc Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/lifebuoy.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/mail.svg b/project_task_risk_management_odoo/static/description/assets/icons/mail.svg new file mode 100755 index 000000000..1eedde695 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/mail.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/manufacturing-black.png b/project_task_risk_management_odoo/static/description/assets/icons/manufacturing-black.png new file mode 100755 index 000000000..697eb0e9f Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/manufacturing-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/notes.png b/project_task_risk_management_odoo/static/description/assets/icons/notes.png new file mode 100755 index 000000000..ee5e95404 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/notes.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/notification icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/notification icon.svg new file mode 100755 index 000000000..053189973 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/notification icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/odoo-consultancy.svg b/project_task_risk_management_odoo/static/description/assets/icons/odoo-consultancy.svg new file mode 100755 index 000000000..e05f65bde --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/odoo-consultancy.svg @@ -0,0 +1,4 @@ + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/odoo-licencing.svg b/project_task_risk_management_odoo/static/description/assets/icons/odoo-licencing.svg new file mode 100755 index 000000000..2606c88b0 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/odoo-licencing.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/odoo-logo.png b/project_task_risk_management_odoo/static/description/assets/icons/odoo-logo.png new file mode 100755 index 000000000..0e4d0eb5a Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/odoo-logo.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/patter.svg b/project_task_risk_management_odoo/static/description/assets/icons/patter.svg new file mode 100755 index 000000000..25c9c0a8f --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/patter.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/pattern1.png b/project_task_risk_management_odoo/static/description/assets/icons/pattern1.png new file mode 100755 index 000000000..09ab0fb2d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/pattern1.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/pos-black.png b/project_task_risk_management_odoo/static/description/assets/icons/pos-black.png new file mode 100755 index 000000000..97c0f90c1 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/pos-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/puzzle-piece-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/puzzle-piece-icon.svg new file mode 100755 index 000000000..3e9ad9373 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/puzzle-piece-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/puzzle.png b/project_task_risk_management_odoo/static/description/assets/icons/puzzle.png new file mode 100755 index 000000000..65cf854e7 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/puzzle.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/replace-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/replace-icon.svg new file mode 100755 index 000000000..d0e3a7af1 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/replace-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/restaurant-black.png b/project_task_risk_management_odoo/static/description/assets/icons/restaurant-black.png new file mode 100755 index 000000000..4a35eb939 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/restaurant-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/screenshot-main.png b/project_task_risk_management_odoo/static/description/assets/icons/screenshot-main.png new file mode 100755 index 000000000..575f8e676 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/screenshot-main.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/screenshot.png b/project_task_risk_management_odoo/static/description/assets/icons/screenshot.png new file mode 100755 index 000000000..cef272529 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/screenshot.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/service-black.png b/project_task_risk_management_odoo/static/description/assets/icons/service-black.png new file mode 100755 index 000000000..301ab51cb Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/service-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/skype-fill.svg b/project_task_risk_management_odoo/static/description/assets/icons/skype-fill.svg new file mode 100755 index 000000000..c17423639 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/skype-fill.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/skype.png b/project_task_risk_management_odoo/static/description/assets/icons/skype.png new file mode 100755 index 000000000..51b409fb3 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/skype.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/skype.svg b/project_task_risk_management_odoo/static/description/assets/icons/skype.svg new file mode 100755 index 000000000..df3dad39b --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/skype.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/star-1.svg b/project_task_risk_management_odoo/static/description/assets/icons/star-1.svg new file mode 100755 index 000000000..7e55ab162 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/star-1.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/star-2.svg b/project_task_risk_management_odoo/static/description/assets/icons/star-2.svg new file mode 100755 index 000000000..5ae9f507a --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/star-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/support.png b/project_task_risk_management_odoo/static/description/assets/icons/support.png new file mode 100755 index 000000000..4f18b8b82 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/support.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/test-1 - Copy.png b/project_task_risk_management_odoo/static/description/assets/icons/test-1 - Copy.png new file mode 100755 index 000000000..f6a902663 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/test-1 - Copy.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/test-1.png b/project_task_risk_management_odoo/static/description/assets/icons/test-1.png new file mode 100755 index 000000000..0908add2b Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/test-1.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/test-2.png b/project_task_risk_management_odoo/static/description/assets/icons/test-2.png new file mode 100755 index 000000000..4671fe91e Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/test-2.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/trading-black.png b/project_task_risk_management_odoo/static/description/assets/icons/trading-black.png new file mode 100755 index 000000000..9398ba2f1 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/trading-black.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/training.png b/project_task_risk_management_odoo/static/description/assets/icons/training.png new file mode 100755 index 000000000..884ca024d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/training.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/translate.svg b/project_task_risk_management_odoo/static/description/assets/icons/translate.svg new file mode 100755 index 000000000..af9c8a1aa --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/translate.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/update.png b/project_task_risk_management_odoo/static/description/assets/icons/update.png new file mode 100755 index 000000000..ecbc5a01a Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/update.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/user.png b/project_task_risk_management_odoo/static/description/assets/icons/user.png new file mode 100755 index 000000000..6ffb23d9f Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/user.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/video.png b/project_task_risk_management_odoo/static/description/assets/icons/video.png new file mode 100755 index 000000000..576705b17 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/video.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/whatsapp.png b/project_task_risk_management_odoo/static/description/assets/icons/whatsapp.png new file mode 100755 index 000000000..d513a5356 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/whatsapp.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/icons/wrench-icon.svg b/project_task_risk_management_odoo/static/description/assets/icons/wrench-icon.svg new file mode 100755 index 000000000..174b5a465 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/icons/wrench-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/icons/wrench.png b/project_task_risk_management_odoo/static/description/assets/icons/wrench.png new file mode 100755 index 000000000..6c04dea0f Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/wrench.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/1.jpg b/project_task_risk_management_odoo/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..3cb15fe01 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/1.jpg differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/2.jpg b/project_task_risk_management_odoo/static/description/assets/modules/2.jpg new file mode 100644 index 000000000..662cadcc3 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/2.jpg differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/3.jpg b/project_task_risk_management_odoo/static/description/assets/modules/3.jpg new file mode 100644 index 000000000..717a00443 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/3.jpg differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/4.png b/project_task_risk_management_odoo/static/description/assets/modules/4.png new file mode 100644 index 000000000..00ebf54ad Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/4.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/5.jpg b/project_task_risk_management_odoo/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..7c67e2eec Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/5.jpg differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/6.gif b/project_task_risk_management_odoo/static/description/assets/modules/6.gif new file mode 100644 index 000000000..a35ece8df Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/6.gif differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/1.png b/project_task_risk_management_odoo/static/description/assets/screenshots/1.png new file mode 100644 index 000000000..862d38f87 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/1.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/10.png b/project_task_risk_management_odoo/static/description/assets/screenshots/10.png new file mode 100644 index 000000000..d53f7a9af Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/10.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/11.png b/project_task_risk_management_odoo/static/description/assets/screenshots/11.png new file mode 100644 index 000000000..73de0c620 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/11.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/12.png b/project_task_risk_management_odoo/static/description/assets/screenshots/12.png new file mode 100644 index 000000000..141c8175a Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/12.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/13.png b/project_task_risk_management_odoo/static/description/assets/screenshots/13.png new file mode 100644 index 000000000..c4f448b98 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/13.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/14.png b/project_task_risk_management_odoo/static/description/assets/screenshots/14.png new file mode 100644 index 000000000..808940bcd Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/14.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/15.png b/project_task_risk_management_odoo/static/description/assets/screenshots/15.png new file mode 100644 index 000000000..3c6bebadc Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/15.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/16.png b/project_task_risk_management_odoo/static/description/assets/screenshots/16.png new file mode 100644 index 000000000..5c2223cd1 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/16.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/17.png b/project_task_risk_management_odoo/static/description/assets/screenshots/17.png new file mode 100644 index 000000000..ebebbe1a3 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/17.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/18.png b/project_task_risk_management_odoo/static/description/assets/screenshots/18.png new file mode 100644 index 000000000..6e581bb36 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/18.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/19.png b/project_task_risk_management_odoo/static/description/assets/screenshots/19.png new file mode 100644 index 000000000..5965729ab Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/19.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/2.png b/project_task_risk_management_odoo/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..cd63151ae Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/2.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/20.png b/project_task_risk_management_odoo/static/description/assets/screenshots/20.png new file mode 100644 index 000000000..34a57f212 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/20.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/21.png b/project_task_risk_management_odoo/static/description/assets/screenshots/21.png new file mode 100644 index 000000000..f0da3b068 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/21.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/22.png b/project_task_risk_management_odoo/static/description/assets/screenshots/22.png new file mode 100644 index 000000000..8e7030433 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/22.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/23.png b/project_task_risk_management_odoo/static/description/assets/screenshots/23.png new file mode 100644 index 000000000..e5e66e95e Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/23.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/3.png b/project_task_risk_management_odoo/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..212af9da4 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/3.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/4.png b/project_task_risk_management_odoo/static/description/assets/screenshots/4.png new file mode 100644 index 000000000..2ef58c20c Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/4.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/5.png b/project_task_risk_management_odoo/static/description/assets/screenshots/5.png new file mode 100644 index 000000000..e399c625e Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/5.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/6.png b/project_task_risk_management_odoo/static/description/assets/screenshots/6.png new file mode 100644 index 000000000..99b6ebd41 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/6.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/7.png b/project_task_risk_management_odoo/static/description/assets/screenshots/7.png new file mode 100644 index 000000000..05cd634d3 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/7.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/8.png b/project_task_risk_management_odoo/static/description/assets/screenshots/8.png new file mode 100644 index 000000000..bd399c2ab Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/8.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/9.png b/project_task_risk_management_odoo/static/description/assets/screenshots/9.png new file mode 100644 index 000000000..f7f99d560 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/9.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/screenshots/hero.gif b/project_task_risk_management_odoo/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..f6ebebe3a Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/hero.gif differ diff --git a/project_task_risk_management_odoo/static/description/assets/y18.jpg b/project_task_risk_management_odoo/static/description/assets/y18.jpg new file mode 100755 index 000000000..eea1714f2 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/y18.jpg differ diff --git a/project_task_risk_management_odoo/static/description/banner.jpg b/project_task_risk_management_odoo/static/description/banner.jpg new file mode 100644 index 000000000..10cebc67d Binary files /dev/null and b/project_task_risk_management_odoo/static/description/banner.jpg differ diff --git a/project_task_risk_management_odoo/static/description/icon.png b/project_task_risk_management_odoo/static/description/icon.png new file mode 100644 index 000000000..741b7c0dc Binary files /dev/null and b/project_task_risk_management_odoo/static/description/icon.png differ diff --git a/project_task_risk_management_odoo/static/description/index.html b/project_task_risk_management_odoo/static/description/index.html new file mode 100644 index 000000000..8b968dff2 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/index.html @@ -0,0 +1,1488 @@ + + + + + + Risk Management For Project & Tasks + + + + + + + + + + +
+
+ + + +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+
+

+ Project Task Risk Management Odoo +

+

Risk Management For Project & Tasks. +

+
+
+ +
+ +
+ +
+
+
+ +
+
+ +
+
+
+
+
+ +
+
+ Module helps to manage risk level of the + task and project. +
+
+
+
+ +
+
+
+

Key + Highlights

+
+
+
+
+ +
+
+ User Can Create Risks From Project +
+
+
+
+
+
+ +
+
+ User Can Create Risks From Tasks
+
+
+
+
+
+ +
+
+ Create Risk Incidents for Project And + Task
+
+
+
+
+
+ +
+
+ Analyse Report Of The Risk Created
+
+
+
+
+ +
+
+
+ Project Task Risk Management Odoo +

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

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

+ + Provide User Access. + +

+

+ In Settings, User Can Have + Manager Access Which Is + Overall Access And Another + One Is User Access.

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

+ + Configuration. + +

+

+ Manager Can Create Risk Types Used For Creating Risks

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

+ Create Risk Categories Used For Creating Risks.

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

+ Create Risk Response Used For Creating Risks +

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

+ Create Risk Tags Used For Creating Risks +

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

+ User Can Create Risks Using Values Created In Configuration +

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

+ User Can Create Incident And Also Can Register Risk in Project Form View +

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

+ Form View For Creating Incident +

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

+ Kanban View For Viewing Created Incidents In Project +

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

+ Form View Of Created Risk Incidents +

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

+ Tree View Of Created Risk Incidents +

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

+ Different Chart View Of Created Risk Incidents

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

+ Pivot View Of Created Risk Incidents

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

+ In Report Menu We Can Analyse Project Risks.Tree View Of Project Risk Analysis Which Are Created In Risk Register Of Project +

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

+ Chart View Of Project Risk Analysis +

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

+ Pivot View Of Project Risk Analysis +

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

+ User Can Create Incident And Also Can Register Risk in Task Form View +

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

+ Form View For Create Incident From Tasks +

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

+ Created Risk Incidents Are Show In The Menu Risk Incident +

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

+ In Report Menu We Can Analyse Task Risks.Tree View Of Tasks Risk Analysis Which Are Created In Risk Register Of Tasks +

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

+ Chart View Of Task Risk Analysis +

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

+ Pivot View Of Task Risk Analysis +

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

+ User Can Create Risks From Project +

+
+
+
+
+
+
+
+ +
+

+ User Can Create Risks From Tasks

+
+
+
+
+
+
+
+ +
+

+ Create Risk Incidents for Project And Task

+
+
+
+
+
+
+
+ +
+

+ Analyse Report Of The Risk Created

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

+ Yes, users can create risks directly from a project. +

+
+
+ +
+ +
+

+ Yes, users can create risks directly from tasks. +

+
+
+ +
+ +
+

+ Yes, the module allows creating risk incidents for both projects and tasks. +

+
+
+ +
+ +
+

+ Yes, users can analyze reports of the risks created. +

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

+ Latest Release 18.0.1.0.0 +

+ + 21st January, 2025 + +
+
+
+
+
+ Add +
+
+
+
    +
  • Initial Commit for + Project Task Risk Management Odoo +
  • +
+
+
+
+
+
+
+
+
+
+ + + +
+

+ Related Products +

+ +
+ + +
+

+ Our Services

+ +
+
+ +
+
+ .... +
+
+ +
+
+ +
+
+ + + + + + diff --git a/project_task_risk_management_odoo/views/menu_actions.xml b/project_task_risk_management_odoo/views/menu_actions.xml new file mode 100644 index 000000000..13076922b --- /dev/null +++ b/project_task_risk_management_odoo/views/menu_actions.xml @@ -0,0 +1,109 @@ + + + + + Risks + ir.actions.act_window + risks.project + list,form + {'search_default_available':1} + +

+ Create Your First Project Risk Incident +

+
+
+ + + Risk Types + ir.actions.act_window + risk.type + list + {'search_default_available':1} + +

+ Create Your First Project Risk Type +

+
+
+ + + Risk Categories + ir.actions.act_window + risk.category + list + {'search_default_available':1} + +

+ Create Your First Project Risk Categories +

+
+
+ + + Risk Response + ir.actions.act_window + risk.response + list + {'search_default_available':1} + +

+ Create Your First Project Risk Response +

+
+
+ + + Risk Tags + ir.actions.act_window + risk.tag + list + {'search_default_available':1} + +

+ Create Your First Project Risk Tags +

+
+
+ + + Risk Incidents + ir.actions.act_window + risk.incident + kanban,list,form,graph,pivot + {'search_default_available':1} + +

+ Create Your First Project Risk Incidents +

+
+
+ + + Project Risk Analysis + ir.actions.act_window + project.risk.incident.line + list,graph,pivot + + {'search_default_available':1} + +

+ Create First Project Risk Analysis +

+
+
+ + + Task Risk Analysis + ir.actions.act_window + task.risk.incident.line + list,graph,pivot + + {'search_default_available':1} + +

+ Create First Task Risk Analysis +

+
+
+
\ No newline at end of file diff --git a/project_task_risk_management_odoo/views/menuitems.xml b/project_task_risk_management_odoo/views/menuitems.xml new file mode 100644 index 000000000..cbbafe073 --- /dev/null +++ b/project_task_risk_management_odoo/views/menuitems.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/project_task_risk_management_odoo/views/project_project_views.xml b/project_task_risk_management_odoo/views/project_project_views.xml new file mode 100644 index 000000000..7cf86d447 --- /dev/null +++ b/project_task_risk_management_odoo/views/project_project_views.xml @@ -0,0 +1,38 @@ + + + + + + project.project.view.form.inherit.project.task.risk.management.odoo + project.project + + + +