Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG] mgmtsystem_environment: Migration to 12.0 #505

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 109 additions & 0 deletions mgmtsystem_environment/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
=============================
Environment Management System
=============================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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_environment
: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_environment
: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 enables you to manage your environment management system, including:

* Environment Manual
* Reviews
* Audits
* Environmental Aspects
* Nonconformities
* Actions
* Employee Training

**Table of contents**

.. contents::
:local:

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

* Go to Management Systems / Manuals
* Write your Environment Manual
* Based on your environment analysis, create environmment aspects

Usage
=====

To use this module, you need to:

* Go to Management Systems
* Schedule and drive your management reviews
* Schedule and drive your internal audits
* Log your nonconformities, analyse them and prepare an action plan
* Perform your immediate, corrective and preventive actions
* Work on your improvement oppotunities

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_environment%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]>

* `Guadaltech <https://www.guadaltech.es>`_:

* Fernando La Chica <[email protected]>

* `Trey Kilobytes de Soluciones SL <https://www.trey.es>`__:

* Vicent Cubells

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_environment>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
19 changes: 19 additions & 0 deletions mgmtsystem_environment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
37 changes: 37 additions & 0 deletions mgmtsystem_environment/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
"name": "Environment Management System",
"version": "12.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": [
"mgmtsystem_audit",
"mgmtsystem_review",
"document_page_environment_manual",
"document_page_environmental_aspect",
],
"data": ["data/environment.xml"],
"demo": [],
"installable": True,
"application": True,
}
10 changes: 10 additions & 0 deletions mgmtsystem_environment/data/environment.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="system_environment" model="mgmtsystem.system">
<field name="name">Environment</field>
<field
name="manual_id"
ref="document_page_environment_manual.document_page_environment_manual"
/>
</record>
</odoo>
43 changes: 43 additions & 0 deletions mgmtsystem_environment/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# German translation for openerp-mgmtsystem
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openerp-mgmtsystem package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-mgmtsystem\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-02-22 20:37+0000\n"
"PO-Revision-Date: 2012-09-17 11:06+0000\n"
"Last-Translator: Rudolf Schnapka <[email protected]>\n"
"Language-Team: German <[email protected]>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n"
"X-Generator: Launchpad (build 16985)\n"

#~ msgid ""
#~ "\n"
#~ "\tThis module enables you to manage your environment management system, "
#~ "including :\n"
#~ " * Environment Manual\n"
#~ " * Audits\n"
#~ " * Procedures\n"
#~ " * Nonconformities\n"
#~ " * Actions\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "\tDieses Modul ermöglicht die Verwaltung Ihres Umwelt-Management-Systems "
#~ "(UMS), einschließlich:\n"
#~ " * Umwelt-Handbuch / Umweltbericht\n"
#~ " * Audits / Prüfungen\n"
#~ " * Abläufe\n"
#~ " * Nichteinhaltungen\n"
#~ " * Maßnahmen\n"
#~ " "

#~ msgid "Environment Management System"
#~ msgstr "Umwelt-Management-System"
44 changes: 44 additions & 0 deletions mgmtsystem_environment/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# French translation for openerp-mgmtsystem
# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
# This file is distributed under the same license as the openerp-mgmtsystem package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-mgmtsystem\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-02-22 20:37+0000\n"
"PO-Revision-Date: 2012-09-09 04:50+0000\n"
"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) <maxime."
"[email protected]>\n"
"Language-Team: French <[email protected]>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n"
"X-Generator: Launchpad (build 16985)\n"

#~ msgid ""
#~ "\n"
#~ "\tThis module enables you to manage your environment management system, "
#~ "including :\n"
#~ " * Environment Manual\n"
#~ " * Audits\n"
#~ " * Procedures\n"
#~ " * Nonconformities\n"
#~ " * Actions\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "\tCe module vous permet de gérer votre système de gestion "
#~ "environnementale, incluant :\n"
#~ " * Manuel environnemental\n"
#~ " * Audits\n"
#~ " * Aspects environnementaux\n"
#~ " * Nonconformités\n"
#~ " * Actions\n"
#~ " "

#~ msgid "Environment Management System"
#~ msgstr "Système de gestion environnementale"
14 changes: 14 additions & 0 deletions mgmtsystem_environment/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
13 changes: 13 additions & 0 deletions mgmtsystem_environment/i18n/mgmtsystem_environment.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
43 changes: 43 additions & 0 deletions mgmtsystem_environment/i18n/nb.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Norwegian Bokmal translation for openerp-mgmtsystem
# Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
# This file is distributed under the same license as the openerp-mgmtsystem package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-mgmtsystem\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-02-22 20:37+0000\n"
"PO-Revision-Date: 2014-01-22 17:45+0000\n"
"Last-Translator: Torvald Baade Bringsvor <[email protected]>\n"
"Language-Team: Norwegian Bokmal <[email protected]>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n"
"X-Generator: Launchpad (build 16985)\n"

#~ msgid ""
#~ "\n"
#~ "\tThis module enables you to manage your environment management system, "
#~ "including :\n"
#~ " * Environment Manual\n"
#~ " * Audits\n"
#~ " * Procedures\n"
#~ " * Nonconformities\n"
#~ " * Actions\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "\tDenne modulen hjelper deg med å håntere ditt miljøstyringssystem "
#~ "(ISO14001), inklusive:\n"
#~ " * Miljømanual\n"
#~ " * Revisjoner\n"
#~ " * Rutiner\n"
#~ " * Avvik\n"
#~ " * Tiltak\n"
#~ " "

#~ msgid "Environment Management System"
#~ msgstr "Miljøstyringssystem"
43 changes: 43 additions & 0 deletions mgmtsystem_environment/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Brazilian Portuguese translation for openerp-mgmtsystem
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
# This file is distributed under the same license as the openerp-mgmtsystem package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: openerp-mgmtsystem\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-02-22 20:37+0000\n"
"PO-Revision-Date: 2013-07-18 12:44+0000\n"
"Last-Translator: Claudio de Araujo Santos <[email protected]>\n"
"Language-Team: Brazilian Portuguese <[email protected]>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n"
"X-Generator: Launchpad (build 16985)\n"

#~ msgid ""
#~ "\n"
#~ "\tThis module enables you to manage your environment management system, "
#~ "including :\n"
#~ " * Environment Manual\n"
#~ " * Audits\n"
#~ " * Procedures\n"
#~ " * Nonconformities\n"
#~ " * Actions\n"
#~ " "
#~ msgstr ""
#~ "\n"
#~ "\tEste módulo lhe permite gerenciar o seu sistema de gestão de meio "
#~ "ambiente incluindo:\n"
#~ "* Manual do Meio ambiente\n"
#~ "* Auditorias\n"
#~ "* Procedimento\n"
#~ "* Não Conformidades\n"
#~ "* Ações\n"
#~ " "

#~ msgid "Environment Management System"
#~ msgstr "Sistema de Gestão do Meio Ambiente"
Loading