Skip to content

Commit

Permalink
Merge PR #14 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by andhit-r
  • Loading branch information
ssi-bot committed Oct 11, 2023
2 parents 258f071 + e6f005b commit aaef015
Show file tree
Hide file tree
Showing 7 changed files with 109 additions and 0 deletions.
46 changes: 46 additions & 0 deletions ssi_risk_analysis_work_log/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3

====================================
Risk Analysis + Work Log Integration
====================================


Installation
============

To install this module, you need to:

1. Clone the branch 14.0 of the repository https://github.com/open-synergy/ssi-risk-analysis
2. Add the path to this repository in your configuration (addons-path)
3. Update the module list (Must be on developer mode)
4. Go to menu *Apps -> Apps -> Main Apps*
5. Search For *Lead + Work Log Integration*
6. Install the module

Bug Tracker
===========

Bugs are tracked on `GitHub Issues
<https://github.com/open-synergy/ssi-risk-analysis/issues>`_. In case of trouble, please
check there if your issue has already been reported. If you spotted it first,
help us smash it by providing detailed and welcomed feedback.


Credits
=======

Contributors
------------

* Andhitia Rama <andhitia.r@gmail.com>

Maintainer
----------

.. image:: https://simetri-sinergi.id/logo.png
:alt: PT. Simetri Sinergi Indonesia
:target: https://simetri-sinergi.id

This module is maintained by the PT. Simetri Sinergi Indonesia.
7 changes: 7 additions & 0 deletions ssi_risk_analysis_work_log/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright 2022 OpenSynergy Indonesia
# Copyright 2022 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html).

from . import (
models,
)
18 changes: 18 additions & 0 deletions ssi_risk_analysis_work_log/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2022 OpenSynergy Indonesia
# Copyright 2022 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html).
{
"name": "Risk Analysis + Work Log Integration",
"version": "14.0.1.0.0",
"website": "https://simetri-sinergi.id",
"author": "OpenSynergy Indonesia, PT. Simetri Sinergi Indonesia",
"license": "AGPL-3",
"installable": True,
"depends": [
"ssi_risk_analysis",
"ssi_work_log_mixin",
],
"data": [],
"demo": [],
"images": [],
}
8 changes: 8 additions & 0 deletions ssi_risk_analysis_work_log/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright 2022 OpenSynergy Indonesia
# Copyright 2022 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html).

from . import (
risk_analysis,
risk_analysis_worksheet,
)
15 changes: 15 additions & 0 deletions ssi_risk_analysis_work_log/models/risk_analysis.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2022 OpenSynergy Indonesia
# Copyright 2022 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html).

from odoo import models


class RiskAnalysis(models.Model):
_name = "risk_analysis"
_inherit = [
"risk_analysis",
"mixin.work_object",
]

_work_log_create_page = True
15 changes: 15 additions & 0 deletions ssi_risk_analysis_work_log/models/risk_analysis_worksheet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2022 OpenSynergy Indonesia
# Copyright 2022 PT. Simetri Sinergi Indonesia
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl-3.0-standalone.html).

from odoo import models


class RiskAnalysisWorksheet(models.Model):
_name = "risk_analysis_worksheet"
_inherit = [
"risk_analysis_worksheet",
"mixin.work_object",
]

_work_log_create_page = True
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit aaef015

Please sign in to comment.