Skip to content

Commit

Permalink
Merge PR #251 into 12.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Aug 12, 2019
2 parents 9884dbd + cec9dce commit d502c0c
Show file tree
Hide file tree
Showing 51 changed files with 9,548 additions and 1 deletion.
90 changes: 90 additions & 0 deletions mgmtsystem_review/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
==========================
Management System - Review
==========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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/12.0/mgmtsystem_review
: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-12-0/management-system-12-0-mgmtsystem_review
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/128/12.0
:alt: Try me on Runbot

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

This module was written to help you manage the top management reviews of your systems.

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

* go to Management Systems / Reviews
* create a new review with the date, the persons, the policies of your systems, the KPI and survey results
* Discuss each problems and log your decision in the review lines with an action or nonconformity
* Conclude your review with the date of the next one and save it
* Print the report

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 smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/management-system/issues/new?body=module:%20mgmtsystem_review%0Aversion:%2012.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
~~~~~~~~~~~~

* Maxime Chambreuil <[email protected]>
* Loïc Faure-Lacroix <[email protected]>
* Gervais Naoussi <[email protected]>
* Luk Vermeylen <[email protected]>
* Eugen Don <[email protected]>
* Jose Maria Alzaga <[email protected]>
* Julien Coux <[email protected]>

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/12.0/mgmtsystem_review>`_ 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_review/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
25 changes: 25 additions & 0 deletions mgmtsystem_review/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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 - Review",
"version": "12.0.1.0.0",
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
"website": "http://www.savoirfairelinux.com",
"license": "AGPL-3",
"category": "Management System",
"depends": [
'mgmtsystem_nonconformity',
'mgmtsystem_survey',
],
"data": [
'security/ir.model.access.csv',
'security/mgmtsystem_review_security.xml',
'data/ir_sequence.xml',
'views/mgmtsystem_review.xml',
'views/res_users.xml',
'report/review.xml',
'report/report.xml',
],
'installable': True,
}
9 changes: 9 additions & 0 deletions mgmtsystem_review/data/ir_sequence.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">
<record id="seq_mgmtsystem_review" model="ir.sequence">
<field name="name">Management System Review</field>
<field name="code">mgmtsystem.review</field>
<field name="prefix">MSR</field>
<field name="padding">3</field>
</record>
</odoo>
Loading

0 comments on commit d502c0c

Please sign in to comment.