Skip to content

Commit

Permalink
Merge PR #581 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by max3903
  • Loading branch information
OCA-git-bot committed Sep 23, 2024
2 parents 4bdbc89 + a36af16 commit e33b0cd
Show file tree
Hide file tree
Showing 24 changed files with 1,059 additions and 0 deletions.
103 changes: 103 additions & 0 deletions document_page_environmental_aspect/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
=====================
Environmental Aspects
=====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:e518c704e083b29a2845ee90d6f1c60bb93d875788e0b3bdbb8808345875f557
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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/document_page_environmental_aspect
: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-document_page_environmental_aspect
: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 extends the functionality of the Environment Management
System and adds a template for environmental aspects.

**Table of contents**

.. contents::
:local:

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

To configure this module, you need to:

- go to Management Systems > Configuration > Categories
- select the Environmental Aspect category and customize it

Usage
=====

To create environmental aspects, you need to:

- go to Management Systems > Documentation > Environmental Aspects
- click on Create and select the Environmental Aspect category
- enter your content

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:%20document_page_environmental_aspect%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 <[email protected]>
- Gervais Naoussi <[email protected]>
- `Guadaltech <https://www.guadaltech.es>`__:

- Fernando La Chica <[email protected]>

- Yvan Dotet <[email protected]>
- `Binhex <https://binhex.cloud//com>`__:

- David Luis Mora <[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/17.0/document_page_environmental_aspect>`_ 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 document_page_environmental_aspect/__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 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/>.
#
##############################################################################
31 changes: 31 additions & 0 deletions document_page_environmental_aspect/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
#
# 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": "Environmental Aspects",
"version": "17.0.1.0.0",
"author": "Savoir-faire Linux, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/management-system",
"license": "AGPL-3",
"category": "Generic Modules/Others",
"depends": ["document_page", "mgmtsystem"],
"data": ["data/document_page.xml", "views/document_page.xml"],
"installable": True,
}
26 changes: 26 additions & 0 deletions document_page_environmental_aspect/data/document_page.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo noupdate="1">
<record id="document_page_group_environmental_aspect" model="document.page">
<field name="name">Environmental Aspect</field>
<field name="type">category</field>
<field name="template">
<![CDATA[
<h1>Activity</h1>
<h1>Environmental Aspect</h1>
<h1>Environmental Impact</h1>
<h1>Laws and Regulations</h1>
<h1>Operational Control</h1>
<h1>Responsibilities</h1>
<h1>Objectives</h1>
<h1>Programs</h1>
]]>
</field>
</record>
</odoo>
32 changes: 32 additions & 0 deletions document_page_environmental_aspect/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
# Translators:
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012
# Rudolf Schnapka <[email protected]>, 2016
msgid ""
msgstr ""
"Project-Id-Version: management-system (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-03-07 01:44+0000\n"
"PO-Revision-Date: 2016-03-11 15:53+0000\n"
"Last-Translator: Rudolf Schnapka <[email protected]>\n"
"Language-Team: German (http://www.transifex.com/oca/OCA-management-"
"system-9-0/language/de/)\n"
"Language: de\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"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr "Umweltaspekte"

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr "Umweltaspekte Ihres Management-Systems."
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.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"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr ""

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr ""
28 changes: 28 additions & 0 deletions document_page_environmental_aspect/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-07-07 14:10+0000\n"
"Last-Translator: Ivorra78 <[email protected]>\n"
"Language-Team: none\n"
"Language: es\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"
"X-Generator: Weblate 4.17\n"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr "Aspectos medioambientales"

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr "Aspectos medioambientales de su sistema de gestión."
31 changes: 31 additions & 0 deletions document_page_environmental_aspect/i18n/es_CL.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
# Translators:
# GABRIELA STEGEN <[email protected]>, 2016
msgid ""
msgstr ""
"Project-Id-Version: management-system (9.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-07 06:43+0000\n"
"PO-Revision-Date: 2016-09-14 21:32+0000\n"
"Last-Translator: GABRIELA STEGEN <[email protected]>\n"
"Language-Team: Spanish (Chile) (http://www.transifex.com/oca/OCA-management-"
"system-9-0/language/es_CL/)\n"
"Language: es_CL\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"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr "Aspectos medio ambientales"

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr "Aspectos medio ambientales de tu sistema de administración"
32 changes: 32 additions & 0 deletions document_page_environmental_aspect/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
# Translators:
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012
# Maxime Chambreuil <[email protected]>, 2015
msgid ""
msgstr ""
"Project-Id-Version: management-system (8.0)\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-08-07 14:27+0000\n"
"PO-Revision-Date: 2015-05-26 18:45+0000\n"
"Last-Translator: Maxime Chambreuil <[email protected]>\n"
"Language-Team: French (http://www.transifex.com/oca/OCA-management-"
"system-8-0/language/fr/)\n"
"Language: fr\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"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr "Aspects environnementaux"

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr "Aspects environnementaux de votre système de gestion."
28 changes: 28 additions & 0 deletions document_page_environmental_aspect/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * document_page_environmental_aspect
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2022-11-03 13:44+0000\n"
"Last-Translator: mymage <[email protected]>\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"
"X-Generator: Weblate 4.14.1\n"

#. module: document_page_environmental_aspect
#: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects
#: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects
msgid "Environmental Aspects"
msgstr "Aspetti ambientali"

#. module: document_page_environmental_aspect
#: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects
msgid "Environmental aspects of your management system."
msgstr "Aspetti ambientali per il tuo sistema di gestione."
Loading

0 comments on commit e33b0cd

Please sign in to comment.