Skip to content

Commit

Permalink
Merge PR #602 into 18.0
Browse files Browse the repository at this point in the history
Signed-off-by max3903
  • Loading branch information
OCA-git-bot committed Oct 12, 2024
2 parents cdd9e71 + 2b5af73 commit 784f7b7
Show file tree
Hide file tree
Showing 65 changed files with 22,866 additions and 0 deletions.
124 changes: 124 additions & 0 deletions mgmtsystem/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
=================
Management System
=================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:e58fd045c6ddbfb55b80a6baba1ba7dc0c16310a94d224510dcbdba17bb35979
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanagement--system-lightgray.png?logo=github
:target: https://github.com/OCA/management-system/tree/17.0/mgmtsystem
:alt: OCA/management-system
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/management-system-17-0/management-system-17-0-mgmtsystem
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/management-system&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module is the basis of any management system applications:

- audit reports
- nonconformities
- immediate actions
- preventive actions
- corrective actions
- improvement opportunities

Videos and presentations from past OCA Days:

- 2022: `Using the Management Systems to drive your ISO norm
compliance <https://www.youtube.com/watch?v=w2nf_O9TajM>`__
- 2015: `Manage your ISO 27001-certified ISMS with
Odoo <https://es.slideshare.net/slideshow/manage-your-information-security-management-system-with-odoo/49101147>`__
- 2013: `ISO & Standards Management with
OpenERP <https://es.slideshare.net/slideshow/iso-anmanagement-systemswithopenerpen/23915296>`__
- 2012: `OpenERP Management System
Modules <https://es.slideshare.net/slideshow/openerp-management-system-modules/13058968#2>`__

**Table of contents**

.. contents::
:local:

Configuration
=============

**Manage systems**

Go to "Management System" app -> Configuration -> Systems

**Manage applications**

Go to "Management System" app -> Configuration -> Settings

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/management-system/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/management-system/issues/new?body=module:%20mgmtsystem%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Savoir-faire Linux

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

- Savoir-faire Linux <support@savoirfairelinux.com>
- Gervais Naoussi <gervaisnaoussi@gmail.com>
- Eugen Don <eugen.don@don-systems.de>
- Jose Maria Alzaga <jose.alzaga@aselcis.com>
- Iván Todorovich <ivan.todorovich@gmail.com>
- `Tecnativa <https://www.tecnativa.com>`__:

- Ernesto Tejeda

- `Trobz <https://trobz.com>`__:

- Dung Tran <dungtd@trobz.com>

- Yvan Dotet <yvan.dotet@logicasoft.eu>

Other credits
-------------

The migration of this module from 13.0 to 14.0 was financially supported
by Camptocamp.

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/management-system <https://github.com/OCA/management-system/tree/17.0/mgmtsystem>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions mgmtsystem/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
21 changes: 21 additions & 0 deletions mgmtsystem/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Management System",
"version": "18.0.1.0.0",
"author": "Savoir-faire Linux,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/management-system",
"license": "AGPL-3",
"category": "Management System",
"depends": ["base"],
"data": [
"security/mgmtsystem_security.xml",
"security/ir.model.access.csv",
"views/menus.xml",
"views/mgmtsystem_system.xml",
"views/res_config.xml",
],
"installable": True,
"application": True,
}
Loading

0 comments on commit 784f7b7

Please sign in to comment.