diff --git a/project_task_risk_management_odoo/README.rst b/project_task_risk_management_odoo/README.rst new file mode 100644 index 000000000..2bc5308e3 --- /dev/null +++ b/project_task_risk_management_odoo/README.rst @@ -0,0 +1,47 @@ +.. 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: (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..a4cd0e539 --- /dev/null +++ b/project_task_risk_management_odoo/__init__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..2a17e02dc --- /dev/null +++ b/project_task_risk_management_odoo/__manifest__.py @@ -0,0 +1,58 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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': '17.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'], + 'data': [ + 'security/project_task_risk_management_odoo.xml', + 'security/ir.model.access.csv', + 'wizard/risk_incident_wiz.xml', + 'views/project_risk_analysis.xml', + 'views/task_risk_analysis.xml', + 'views/menu_actions.xml', + 'views/menuitems.xml', + 'views/project_project.xml', + 'views/risks_project.xml', + 'views/risk_type.xml', + 'views/risk_category.xml', + 'views/risk_response.xml', + 'views/risk_tags.xml', + 'views/risk_incident.xml', + 'views/project_task.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..3db1d7a15 --- /dev/null +++ b/project_task_risk_management_odoo/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 22.01.2024 +#### Version 17.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..c0ca4677e --- /dev/null +++ b/project_task_risk_management_odoo/models/__init__.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..f162213ef --- /dev/null +++ b/project_task_risk_management_odoo/models/project_project.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..c7120d1cb --- /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) 2024-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..fb2ff78d4 --- /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) 2024-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..2773df99f --- /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) 2024-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..d78560e9f --- /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) 2024-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, order): + 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..04c65552d --- /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) 2024-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..93b7c7e05 --- /dev/null +++ b/project_task_risk_management_odoo/models/risk_tags.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-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..be7034bf1 --- /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) 2024-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..0d7119806 --- /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) 2024-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..1d6866626 --- /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) 2024-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.xml b/project_task_risk_management_odoo/security/project_task_risk_management_odoo.xml new file mode 100644 index 000000000..6abd65886 --- /dev/null +++ b/project_task_risk_management_odoo/security/project_task_risk_management_odoo.xml @@ -0,0 +1,36 @@ + + + + Project & Tasks Risk Management + Category for Risk Management + + + + User + + + + + Manager + + + + + + View Own Docs + + ['|',('user_id', '=', user.id),('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/icons/capture (1).png b/project_task_risk_management_odoo/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/capture (1).png differ 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 100644 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 100644 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/cogs.png b/project_task_risk_management_odoo/static/description/assets/icons/cogs.png new file mode 100644 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/consultation.png b/project_task_risk_management_odoo/static/description/assets/icons/consultation.png new file mode 100644 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/ecom-black.png b/project_task_risk_management_odoo/static/description/assets/icons/ecom-black.png new file mode 100644 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 100644 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/hotel-black.png b/project_task_risk_management_odoo/static/description/assets/icons/hotel-black.png new file mode 100644 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/img.png b/project_task_risk_management_odoo/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/img.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 100644 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/lifebuoy.png b/project_task_risk_management_odoo/static/description/assets/icons/lifebuoy.png new file mode 100644 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/manufacturing-black.png b/project_task_risk_management_odoo/static/description/assets/icons/manufacturing-black.png new file mode 100644 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/photo-capture.png b/project_task_risk_management_odoo/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/icons/photo-capture.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 100644 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.png b/project_task_risk_management_odoo/static/description/assets/icons/puzzle.png new file mode 100644 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/restaurant-black.png b/project_task_risk_management_odoo/static/description/assets/icons/restaurant-black.png new file mode 100644 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/service-black.png b/project_task_risk_management_odoo/static/description/assets/icons/service-black.png new file mode 100644 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/trading-black.png b/project_task_risk_management_odoo/static/description/assets/icons/trading-black.png new file mode 100644 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 100644 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/update.png b/project_task_risk_management_odoo/static/description/assets/icons/update.png new file mode 100644 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 100644 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/wrench.png b/project_task_risk_management_odoo/static/description/assets/icons/wrench.png new file mode 100644 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/misc/Cybrosys R.png b/project_task_risk_management_odoo/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/Cybrosys R.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/categories.png b/project_task_risk_management_odoo/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/categories.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/check-box.png b/project_task_risk_management_odoo/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/check-box.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/compass.png b/project_task_risk_management_odoo/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/compass.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/corporate.png b/project_task_risk_management_odoo/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/corporate.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/customer-support.png b/project_task_risk_management_odoo/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/customer-support.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/cybrosys-logo.png b/project_task_risk_management_odoo/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/cybrosys-logo.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/email.svg b/project_task_risk_management_odoo/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/features.png b/project_task_risk_management_odoo/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/features.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/logo.png b/project_task_risk_management_odoo/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/logo.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/phone.svg b/project_task_risk_management_odoo/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/pictures.png b/project_task_risk_management_odoo/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/pictures.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/pie-chart.png b/project_task_risk_management_odoo/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/pie-chart.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/right-arrow.png b/project_task_risk_management_odoo/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/right-arrow.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/star (1) 2.svg b/project_task_risk_management_odoo/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/star.png b/project_task_risk_management_odoo/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/star.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/support (1) 1.svg b/project_task_risk_management_odoo/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/support-email.svg b/project_task_risk_management_odoo/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/support.png b/project_task_risk_management_odoo/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/support.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/tick-mark.svg b/project_task_risk_management_odoo/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/whatsapp 1.svg b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.png b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.svg b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/project_task_risk_management_odoo/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/project_task_risk_management_odoo/static/description/assets/modules/1.png b/project_task_risk_management_odoo/static/description/assets/modules/1.png new file mode 100644 index 000000000..e64a5b55c Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/1.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/2.png b/project_task_risk_management_odoo/static/description/assets/modules/2.png new file mode 100644 index 000000000..2a27948da Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/2.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/3.png b/project_task_risk_management_odoo/static/description/assets/modules/3.png new file mode 100644 index 000000000..d1d3775d6 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/3.png 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 100755 index 000000000..a77027978 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.png b/project_task_risk_management_odoo/static/description/assets/modules/5.png new file mode 100644 index 000000000..1714d7462 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/5.png differ diff --git a/project_task_risk_management_odoo/static/description/assets/modules/6.jpg b/project_task_risk_management_odoo/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..d79685570 Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/modules/6.jpg 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..b772ef9cc 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..97bdf24b5 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..0eb22bd75 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..a839c5eab 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..3c11ce3a7 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..3f66c91c9 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..dc72002ff 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..af2666e6a 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..c309256d9 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..281fd505f 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..dd260d2e4 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..aab184691 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..1de3b306b 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..14e71e55a 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..dc9ec376d 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..20a1131b7 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..bc8266458 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..393ee3316 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..196713425 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..7cd41f829 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..33bd6652e 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..c222423e0 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..d01a88e82 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.png b/project_task_risk_management_odoo/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..6309801bd Binary files /dev/null and b/project_task_risk_management_odoo/static/description/assets/screenshots/hero.png 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..d3c201230 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..4144ba672 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..f318d2521 --- /dev/null +++ b/project_task_risk_management_odoo/static/description/index.html @@ -0,0 +1,1026 @@ + + + + + + + Odoo App 3 Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+

+ Project Task Risk Management Odoo

+

+ Risk Management For Project & Tasks In Odoo17. +

+
+ +
+
+
+
+
+

+ 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

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

+ 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

+
+
+ +
+
+
+ +
+
+
+
    +
  • + Set the Manager and User in settings +
  • +
  • + Project Users can create Risks From Risk Menu under Configuration +
  • +
  • + Project Managers can analyse Risk of the project and tasks for reporting purpose +
  • +
  • + Available in Odoo 17.0 Community and Enterprise +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on: 22th January 2024 +
+

+ Initial Commit for Project Task Risk Management Odoo.

+
+
+
+
+
+
+
+

+ 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/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..d9e6c91f3 --- /dev/null +++ b/project_task_risk_management_odoo/views/menu_actions.xml @@ -0,0 +1,109 @@ + + + + + Risks + ir.actions.act_window + risks.project + tree,form + {'search_default_available':1} + +

+ Create Your First Project Risk Incident +

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

+ Create Your First Project Risk Type +

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

+ Create Your First Project Risk Categories +

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

+ Create Your First Project Risk Response +

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

+ Create Your First Project Risk Tags +

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

+ Create Your First Project Risk Incidents +

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

+ Create First Project Risk Analysis +

+
+
+ + + Task Risk Analysis + ir.actions.act_window + task.risk.incident.line + tree,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.xml b/project_task_risk_management_odoo/views/project_project.xml new file mode 100644 index 000000000..f3cde73a0 --- /dev/null +++ b/project_task_risk_management_odoo/views/project_project.xml @@ -0,0 +1,38 @@ + + + + + + project.project.view.form.inherit.project.task.risk.management.odoo + project.project + + + +