├── mgmtsystem_quality ├── __init__.py ├── i18n │ ├── it.po │ ├── vi.po │ └── mgmtsystem_quality.pot ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── readme │ ├── ROADMAP.md │ ├── CONFIGURE.md │ ├── USAGE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── data │ └── mgmtsystem_system.xml └── __manifest__.py ├── document_page_procedure ├── __init__.py ├── checklog-odoo.cfg ├── pyproject.toml ├── readme │ ├── CREDITS.md │ ├── CONFIGURE.md │ ├── DESCRIPTION.md │ └── CONTRIBUTORS.md ├── static │ └── description │ │ └── icon.png ├── data │ └── document_page_procedure.xml ├── demo │ └── document_page_procedure.xml ├── __manifest__.py └── i18n │ └── document_page_procedure.pot ├── document_page_environment_manual ├── i18n │ ├── it.po │ ├── vi.po │ ├── document_page_environment_manual.pot │ ├── sl.po │ └── sv.po ├── __init__.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md └── static │ └── description │ └── icon.png ├── document_page_quality_manual ├── i18n │ ├── fa.po │ ├── vi.po │ ├── document_page_quality_manual.pot │ ├── hu.po │ ├── fr.po │ ├── de.po │ ├── mn.po │ ├── ro.po │ ├── da.po │ └── sv.po ├── pyproject.toml ├── readme │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── __init__.py ├── static │ └── description │ │ ├── icon.png │ │ └── quality_manual_form.png └── __manifest__.py ├── mgmtsystem_info_security_manual ├── i18n │ ├── it.po │ ├── sv.po │ └── mgmtsystem_info_security_manual.pot ├── readme │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png └── __init__.py ├── document_page_health_safety_manual ├── i18n │ ├── it.po │ └── document_page_health_safety_manual.pot ├── readme │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── data │ └── document_page.xml └── __init__.py ├── mgmtsystem ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_system.py ├── pyproject.toml ├── images │ ├── mgmtsystem.png │ └── mgmtsystem-hover.png ├── readme │ ├── CREDITS.md │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── static │ └── description │ │ └── icon.png ├── tests │ ├── __init__.py │ └── test_create_mgmtsystem.py ├── security │ └── ir.model.access.csv └── __manifest__.py ├── .gitattributes ├── mgmtsystem_nonconformity_mrp ├── readme │ ├── ROADMAP.md │ ├── INSTALL.md │ ├── HISTORY.md │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── USAGE.md │ └── DESCRIPTION.md ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_nonconformity_mrp.py ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── i18n │ ├── mgmtsystem_nonconformity_mrp.pot │ ├── es.po │ ├── fr.po │ └── it.po ├── __manifest__.py └── views │ └── mgmtsystem_nonconformity_views.xml ├── mgmtsystem_hazard ├── __init__.py ├── readme │ ├── ROADMAP.md │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── models │ ├── __init__.py │ ├── mgmtsystem_hazard_type.py │ ├── mgmtsystem_hazard_hazard.py │ ├── mgmtsystem_hazard_origin.py │ ├── mgmtsystem_hazard_usage.py │ ├── mgmtsystem_hazard_severity.py │ ├── mgmtsystem_hazard_probability.py │ ├── mgmtsystem_hazard_control_measure.py │ └── mgmtsystem_hazard_test.py └── demo │ ├── mgmtsystem_hazard_type.xml │ └── mgmtsystem_hazard_hazard.xml ├── mgmtsystem_objective ├── __init__.py ├── readme │ ├── ROADMAP.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── tests │ ├── __init__.py │ └── test_js.py ├── pyproject.toml ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── components │ │ └── objective_state_selection │ │ └── objective_state_selection.esm.js ├── models │ ├── __init__.py │ └── mgmtsystem_objective.py ├── demo │ └── mgmtsystem_objective.xml └── __manifest__.py ├── mgmtsystem_review ├── __init__.py ├── tests │ ├── __init__.py │ └── test_create_review.py ├── models │ ├── __init__.py │ └── mgmtsystem_review_line.py ├── pyproject.toml ├── readme │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── static │ └── description │ │ └── icon.png ├── security │ ├── ir.model.access.csv │ └── mgmtsystem_review_security.xml ├── data │ └── ir_sequence.xml ├── views │ └── res_users.xml ├── __manifest__.py └── report │ └── report.xml ├── mgmtsystem_action ├── __init__.py ├── tests │ └── __init__.py ├── reports │ └── __init__.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ ├── CREDITS.md │ ├── USAGE.md │ ├── INSTALL.md │ ├── CONFIGURE.md │ └── CONTRIBUTORS.md ├── static │ └── description │ │ └── icon.png ├── models │ ├── __init__.py │ ├── mgmtsystem_action_tag.py │ └── mgmtsystem_action_stage.py ├── data │ ├── action_sequence.xml │ └── automated_reminder.xml └── security │ └── mgmtsystem_action_security.xml ├── mgmtsystem_action_efficacy ├── __init__.py ├── models │ └── __init__.py ├── readme │ ├── HISTORY.md │ ├── USAGE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── pyproject.toml ├── tests │ ├── __init__.py │ └── test_efficacy.py ├── static │ └── description │ │ └── icon.png └── __manifest__.py ├── mgmtsystem_action_template ├── __init__.py ├── tests │ └── __init__.py ├── readme │ ├── HISTORY.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── pyproject.toml ├── models │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── security │ └── ir.model.access.csv ├── __manifest__.py └── views │ └── mgmtsystem_action_views.xml ├── mgmtsystem_review_survey ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_review.py ├── readme │ ├── DESCRIPTION.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png └── __manifest__.py ├── mgmtsystem_manual ├── readme │ ├── CONFIGURE.md │ ├── INSTALL.md │ ├── CREDITS.md │ ├── HISTORY.md │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── models │ ├── __init__.py │ └── mgmtsystem_manual.py ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── data │ └── mgmtsystem_manual.xml ├── views │ └── document_page.xml └── __manifest__.py ├── mgmtsystem_nonconformity_hazard ├── __init__.py ├── readme │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── models │ ├── __init__.py │ ├── mgmtsystem_nonconformity.py │ └── mgmtsystem_hazard.py ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── views │ └── mgmtsystem_hazard.xml ├── mgmtsystem_nonconformity_hr ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_nonconformity_hr.py ├── readme │ ├── HISTORY.md │ ├── USAGE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __manifest__.py ├── i18n │ ├── mgmtsystem_nonconformity_hr.pot │ ├── fa.po │ ├── pt.po │ ├── es.po │ ├── fr.po │ └── it.po └── views │ └── mgmtsystem_nonconformity_views.xml ├── mgmtsystem_nonconformity_repair ├── __init__.py ├── tests │ └── __init__.py ├── models │ ├── __init__.py │ ├── mgmtsystem_nonconformity.py │ └── repair_order.py ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── readme │ ├── USAGE.md │ ├── CONTRIBUTORS.md │ └── DESCRIPTION.md └── __manifest__.py ├── mgmtsystem_nonconformity_type ├── __init__.py ├── models │ └── __init__.py ├── tests │ └── __init__.py ├── readme │ ├── ROADMAP.md │ ├── HISTORY.md │ ├── CONTRIBUTORS.md │ ├── USAGE.md │ └── DESCRIPTION.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png └── __manifest__.py ├── mgmtsystem_partner ├── models │ ├── __init__.py │ └── res_partner.py ├── __init__.py ├── readme │ ├── HISTORY.md │ ├── CONTRIBUTORS.md │ ├── USAGE.md │ └── DESCRIPTION.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── i18n │ └── mgmtsystem_partner.pot ├── mgmtsystem_review_objective ├── __init__.py ├── models │ └── __init__.py ├── readme │ ├── DESCRIPTION.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __manifest__.py └── views │ └── mgmtsystem_indicator_value.xml ├── mgmtsystem_claim ├── tests │ └── __init__.py ├── pyproject.toml ├── readme │ ├── USAGE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── CONFIGURE.md ├── static │ └── description │ │ └── icon.png ├── views │ └── menus.xml ├── security │ ├── ir.model.access.csv │ └── mgmtsystem_claim_security.xml └── data │ ├── claim_sequence.xml │ └── automated_reminder.xml ├── mgmtsystem_nonconformity_product ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_nonconformity.py ├── readme │ ├── HISTORY.md │ ├── USAGE.md │ ├── DESCRIPTION.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __manifest__.py ├── i18n │ ├── mgmtsystem_nonconformity_product.pot │ ├── es.po │ ├── fa.po │ └── pt_BR.po └── views │ └── mgmtsystem_nonconformity_views.xml ├── mgmtsystem_nonconformity_maintenance_equipment ├── __init__.py ├── models │ ├── __init__.py │ └── mgmtsystem_nonconformity.py ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── static │ └── description │ │ └── icon.png └── __manifest__.py ├── checklog-odoo.cfg ├── mgmtsystem_survey ├── __init__.py ├── pyproject.toml ├── readme │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── static │ └── description │ │ └── icon.png ├── views │ └── survey_survey.xml ├── __manifest__.py └── i18n │ ├── mgmtsystem_survey.pot │ ├── vi.po │ ├── it.po │ ├── th.po │ ├── tr.po │ ├── fi.po │ ├── pt.po │ ├── hu.po │ ├── nn.po │ └── lv.po ├── document_page_work_instruction ├── readme │ ├── DESCRIPTION.md │ ├── CREDITS.md │ ├── CONFIGURE.md │ └── CONTRIBUTORS.md ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── __init__.py ├── data │ └── document_page.xml ├── __manifest__.py └── i18n │ └── document_page_work_instruction.pot ├── mgmtsystem_audit ├── pyproject.toml ├── readme │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── tests │ └── __init__.py ├── static │ └── description │ │ └── icon.png ├── wizard │ └── __init__.py ├── __init__.py ├── models │ ├── __init__.py │ ├── mgmtsystem_nonconformity.py │ └── mgmtsystem_verification_line.py ├── data │ └── audit_sequence.xml ├── views │ └── res_users.xml ├── security │ └── mgmtsystem_audit_security.xml └── __manifest__.py ├── mgmtsystem_hazard_risk ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ └── CONTRIBUTORS.md ├── __init__.py ├── tests │ └── __init__.py ├── models │ ├── res_config_settings.py │ ├── __init__.py │ ├── res_company.py │ ├── mgmtsystem_hazard_risk_type.py │ ├── mgmtsystem_hazard_risk_computation.py │ └── common.py ├── __manifest__.py └── data │ └── mgmtsystem_hazard_risk_type.xml ├── mgmtsystem_nonconformity ├── pyproject.toml ├── readme │ ├── CREDITS.md │ ├── CONFIGURE.md │ ├── ROADMAP.md │ ├── DESCRIPTION.md │ └── CONTRIBUTORS.md ├── static │ ├── description │ │ └── icon.png │ └── src │ │ └── components │ │ └── chatter_topbar │ │ └── chatter_topbar.esm.js ├── __init__.py ├── tests │ ├── __init__.py │ └── test_js.py ├── demo │ ├── mgmtsystem_nonconformity_origin.xml │ └── mgmtsystem_nonconformity_cause.xml ├── data │ ├── sequence.xml │ ├── mgmtsystem_nonconformity_severity.xml │ └── mail_message_subtype.xml ├── migrations │ └── 16.0.1.1.0 │ │ └── pre-migrate.py ├── models │ ├── __init__.py │ ├── mgmtsystem_action.py │ └── mgmtsystem_nonconformity_severity.py ├── security │ └── mgmtsystem_nonconformity_security.xml └── views │ └── mgmtsystem_action.xml ├── document_page_environmental_aspect ├── pyproject.toml ├── static │ └── description │ │ └── icon.png ├── readme │ ├── DESCRIPTION.md │ ├── CONFIGURE.md │ ├── USAGE.md │ └── CONTRIBUTORS.md ├── data │ └── document_page.xml ├── i18n │ └── document_page_environmental_aspect.pot └── __init__.py ├── prettier.config.cjs ├── .editorconfig ├── .ruff.toml └── .copier-answers.yml /mgmtsystem_quality/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgmtsystem_quality/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgmtsystem_quality/i18n/vi.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_procedure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_environment_manual/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_environment_manual/i18n/vi.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/fa.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/vi.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/i18n/sv.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/i18n/it.po: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mgmtsystem/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | test-requirements.txt merge=union 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_objective/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_review/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_action/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models, reports 2 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | No configuration required. 2 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/INSTALL.md: -------------------------------------------------------------------------------- 1 | No installation required. 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_partner/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_partner 2 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_action/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_create_action 2 | -------------------------------------------------------------------------------- /mgmtsystem_claim/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_create_claim 2 | -------------------------------------------------------------------------------- /mgmtsystem_manual/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_manual 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_partner/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | models, 3 | ) 4 | -------------------------------------------------------------------------------- /mgmtsystem_review/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_create_review 2 | -------------------------------------------------------------------------------- /mgmtsystem_action/reports/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_action_report 2 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_action 2 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_action_template 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | models, 3 | ) 4 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_review 2 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_review 2 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Add multi-system and multi-company support 2 | -------------------------------------------------------------------------------- /checklog-odoo.cfg: -------------------------------------------------------------------------------- 1 | [checklog-odoo] 2 | ignore= 3 | WARNING.* 0 failed, 0 error\(s\).* 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity_hr 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_nonconformity_repair 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_nonconformity_type 2 | -------------------------------------------------------------------------------- /mgmtsystem/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_system 2 | from . import res_config 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity_mrp 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/INSTALL.md: -------------------------------------------------------------------------------- 1 | This module will be automatically installed 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - manage Template Action on statistic analysis 2 | -------------------------------------------------------------------------------- /mgmtsystem_objective/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | The computation of the values is done manually by now. 2 | -------------------------------------------------------------------------------- /mgmtsystem_objective/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_objective 2 | from . import test_js 3 | -------------------------------------------------------------------------------- /mgmtsystem_survey/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | -------------------------------------------------------------------------------- /document_page_work_instruction/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module provides Work Instructions Template. 2 | -------------------------------------------------------------------------------- /mgmtsystem/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity 2 | -------------------------------------------------------------------------------- /mgmtsystem_objective/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - [Dixmit](https://www.dixmit.com) 2 | - Enric Tobella 3 | -------------------------------------------------------------------------------- /mgmtsystem_partner/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 12.0.1.0.0 (2020-07-11) 2 | 3 | - \[INI\] Initial development 4 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module allows to specify objectives on reviews. 2 | -------------------------------------------------------------------------------- /document_page_environment_manual/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 2 | -------------------------------------------------------------------------------- /document_page_procedure/checklog-odoo.cfg: -------------------------------------------------------------------------------- 1 | [checklog-odoo] 2 | ignore= 3 | WARNING.0 failed, 0 error\(s\). 4 | -------------------------------------------------------------------------------- /mgmtsystem_action/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module was written to manage Actions of your management system. 2 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 13.0.1.0.0 (2022-01-01) 2 | 3 | - \[INI\] Migration to 13.0 4 | -------------------------------------------------------------------------------- /mgmtsystem_audit/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_claim/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_manual/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_review/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_review_line 2 | from . import mgmtsystem_review 3 | -------------------------------------------------------------------------------- /mgmtsystem_review/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - [Dixmit](https://www.dixmit.com) 2 | - Enric Tobella 3 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module adds the possibility of Survey Answers to reviews. 2 | -------------------------------------------------------------------------------- /mgmtsystem_survey/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 12.0.1.0.0 (2020-07-01) 2 | 3 | - \[INI\] Initial development 4 | -------------------------------------------------------------------------------- /mgmtsystem_claim/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | - Go to new menu **Management System -\> Claims** and create a new 2 | claim. 3 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 13.0.1.0.0 (2020-04-01) 2 | 3 | - \[INI\] Initial development 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 11.0.1.0.0 (2019-04-01) 2 | 3 | - \[INI\] Initial development 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 13.0.1.0.0 (2022-01-01) 2 | 3 | - \[INI\] Porting to 13.0 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 12.0.1.0.0 (2020-07-01) 2 | 3 | - \[INI\] Initial development 4 | -------------------------------------------------------------------------------- /mgmtsystem_objective/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_partner/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_quality/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module provides an Health and Safety Manual template. 2 | -------------------------------------------------------------------------------- /document_page_procedure/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem/images/mgmtsystem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem/images/mgmtsystem.png -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module provides an Information Security Manual Template. 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module allows the user to relate hazards to a nonconformity. 2 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_review/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module from 17.0 to 18.0 was financially supported by Camptocamp. -------------------------------------------------------------------------------- /mgmtsystem_review_objective/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_environment_manual/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_quality_manual/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_work_instruction/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module from 13.0 to 14.0 was financially supported 2 | by Camptocamp. 3 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The development of this module has been financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | Go to "Management System -\> Management System -\> Actions" and create 2 | your actions. 3 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_action_template 2 | from . import mgmtsystem_action 3 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The development of this module has been financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity 2 | from . import repair_order 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /document_page_procedure/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module has been financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem/images/mgmtsystem-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem/images/mgmtsystem-hover.png -------------------------------------------------------------------------------- /mgmtsystem/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_nonconformity 2 | from . import mgmtsystem_hazard 3 | -------------------------------------------------------------------------------- /mgmtsystem_objective/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module allows to define objectives in the Management system for future tracking. 2 | -------------------------------------------------------------------------------- /mgmtsystem_audit/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module was written to manage audits and verifications lists of your 2 | management system. 3 | -------------------------------------------------------------------------------- /mgmtsystem_audit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import test_audit 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The development of this module has been financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem_review/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module was written to help you manage the top management reviews of 2 | your systems. 3 | -------------------------------------------------------------------------------- /mgmtsystem_survey/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module from 17.0 to 18.0 was financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem_survey/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module enables you to manage your customer satisfaction surveys and 2 | their answers. 3 | -------------------------------------------------------------------------------- /document_page_environment_manual/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module adds a menu Environment Manual and a wiki document page 2 | category. 3 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Report any issue or ideas to 2 | 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["whool"] 3 | build-backend = "whool.buildapi" 4 | -------------------------------------------------------------------------------- /mgmtsystem_action/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_action/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_audit/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_audit/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_claim/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_claim/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_hazard/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module enables you to manage the hazards and risks of your health 2 | and safety management system. 3 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_hazard/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_manual/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_manual/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_review/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_review/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_survey/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_survey/static/description/icon.png -------------------------------------------------------------------------------- /document_page_quality_manual/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module from 17.0 to 18.0 was financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /document_page_work_instruction/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | The migration of this module from 16.0 to 18.0 was financially supported by: 2 | 3 | - Camptocamp 4 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import test_efficacy 4 | -------------------------------------------------------------------------------- /mgmtsystem_audit/wizard/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import copy_verification_lines 4 | -------------------------------------------------------------------------------- /mgmtsystem_objective/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_objective/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_partner/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_partner/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_quality/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_quality/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_action/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_action 2 | from . import mgmtsystem_action_stage 3 | from . import mgmtsystem_action_tag 4 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/INSTALL.md: -------------------------------------------------------------------------------- 1 | - Go to "Management System -\> Configuration -\> Settings" 2 | - Under "Applications" enable "Actions" flag 3 | - Save 4 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_hazard_risk/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module allows the user to relate maintenance equipment to a 2 | nonconformity. 3 | -------------------------------------------------------------------------------- /document_page_procedure/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_procedure/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_objective/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mgmtsystem_objective 2 | from . import mgmtsystem_indicator 3 | from . import mgmtsystem_indicator_value 4 | -------------------------------------------------------------------------------- /mgmtsystem_quality/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - Images support in the documentation 2 | - Key Performance Indicators 3 | - Employee Training 4 | - Equipment Management 5 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_review_survey/static/description/icon.png -------------------------------------------------------------------------------- /document_page_quality_manual/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2004-2009 Tiny SPRL (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | -------------------------------------------------------------------------------- /document_page_quality_manual/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module provides a quality manual template. The template has the 2 | same structure as the ISO 9001 standard. 3 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | Action Efficacy 2 | 3 | - Go to Management System → Actions 4 | - Create new Action 5 | - Store data on Efficacy tab 6 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_action_efficacy/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_action_template/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_action_template/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_hr/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Product 2 | 3 | - Go to Management System → Nonconformity 4 | - Create new Nonconformity 5 | - Select a Product 6 | -------------------------------------------------------------------------------- /mgmtsystem_partner/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Stefano Consolaro \<\> 2 | - \[Heliconia Solutions Pvt. Ltd.\]() 3 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_review_objective/static/description/icon.png -------------------------------------------------------------------------------- /document_page_quality_manual/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_quality_manual/static/description/icon.png -------------------------------------------------------------------------------- /document_page_work_instruction/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_work_instruction/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_mrp/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_type/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_partner/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | Partner Quality E-mail 2 | 3 | - Go to Partner → Contacts & Addresses → create/select a contact → set 4 | type as Quality Address 5 | -------------------------------------------------------------------------------- /document_page_environment_manual/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_environment_manual/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_info_security_manual/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/HISTORY.md: -------------------------------------------------------------------------------- 1 | ## 13.0.1.0.0 (2019-11-08) 2 | 3 | - \[MIG\] migration to 13.0. 4 | 5 | ## 12.0.1.0.0 (2019-06-04) 6 | 7 | - \[MIG\] migration to 12.0. 8 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_hazard/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_product/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_repair/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Stefano Consolaro \<\> 2 | - [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io) 3 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_environmental_aspect/static/description/icon.png -------------------------------------------------------------------------------- /document_page_health_safety_manual/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_health_safety_manual/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is a bridge module between Management System and Product 2 | 3 | Add the product_id field to link a specific product. 4 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module extends the functionality of the Environment Management 2 | System and adds a template for environmental aspects. 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Maintenance 2 | 3 | - Go to Management System → Nonconformity 4 | - Create new Nonconformity 5 | - Select a Equipment 6 | -------------------------------------------------------------------------------- /document_page_work_instruction/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | - review and customize items of dropdown lists in Management Systems \> 4 | Configuration \> Hazard. 5 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module enables you to manage the risks of your health and safety 2 | management system. This is a sub module of management system hazard. 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | Users must be added to the appropriate groups within Odoo as follows: 2 | 3 | - Creators: Settings \> Users \> Groups \> Management System / User -------------------------------------------------------------------------------- /mgmtsystem_partner/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is a bridge module between Management System and Partner 2 | 3 | Partner 4 | 5 | - Adds a Quality Address option on Partner's Contacts form. 6 | -------------------------------------------------------------------------------- /document_page_procedure/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure your template of procedures: 2 | - Go to Knowledge \> Pages \> Categories 3 | - Select the Procedure category 4 | - Customize the content 5 | -------------------------------------------------------------------------------- /document_page_quality_manual/static/description/quality_manual_form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/document_page_quality_manual/static/description/quality_manual_form.png -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | - go to Settings \> Management System 4 | - in Risk computation group, select the risk computation formula 5 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | from . import models 4 | -------------------------------------------------------------------------------- /mgmtsystem_manual/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import models 5 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/management-system/HEAD/mgmtsystem_nonconformity_maintenance_equipment/static/description/icon.png -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | Workcenter has to be enabled: 2 | 3 | - Go to Settings → Users and select a user. 4 | - Go to Technical Settings and check Manage Work Order Operations 5 | -------------------------------------------------------------------------------- /document_page_environment_manual/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Manuals 4 | - Create a new page and select the environment category. 5 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Maintenance 2 | 3 | - Go to Management System → Nonconformity 4 | - Create new Nonconformity 5 | - Go to the "Hazards" tab. 6 | - Select the related hazards. 7 | -------------------------------------------------------------------------------- /mgmtsystem/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Savoir-faire Linux 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import test_create_mgmtsystem 5 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Marcelo Frare \<\> 2 | - Stefano Consolaro \<\> 3 | - [Heliconia Solutions Pvt. Ltd.\]() 4 | -------------------------------------------------------------------------------- /document_page_procedure/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module provides a Procedure template. 2 | - Go to Management Systems \> Documentation \> Procedures 3 | - Create a new Procedure 4 | - Fill in the title and the content 5 | -------------------------------------------------------------------------------- /document_page_quality_manual/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To edit the quality manual template: 2 | 3 | - Go to Management Systems \> Configuration \> Categories 4 | - Select the Quality Manual category 5 | - Edit the content 6 | -------------------------------------------------------------------------------- /mgmtsystem_claim/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux 2 | - [Guadaltech](https://www.guadaltech.es): 3 | - Fernando La Chica \<\> 4 | - Yvan Dotet \<\> 5 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module adds a menu item "Documentation" and is a dependency of: 2 | 3 | - document_page_environment_manual 4 | - document_page_health_safety_manual 5 | - mgmtsystem_quality. 6 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Manuals 4 | - Create a new page based on existing templates or create your own 5 | templates. 6 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | 5 | from . import models 6 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Marcelo Frare \<\> 2 | - Stefano Consolaro \<\> 3 | - \[Heliconia Solutions Pvt. Ltd.\]() 4 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Repair 2 | 3 | - Go to Repair → create a new one 4 | - Go to Management System → Nonconformity 5 | - Create new Nonconformity 6 | - Select a Repair Order on the list 7 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | - go to Management Systems \> Configuration \> Categories 4 | - select the Environmental Aspect category and customize it 5 | -------------------------------------------------------------------------------- /mgmtsystem/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | **Manage systems** 2 | 3 | Go to "Management System" app -\> Configuration -\> Systems 4 | 5 | **Manage applications** 6 | 7 | Go to "Management System" app -\> Configuration -\> Settings 8 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Marcelo Frare \<\> 2 | - Stefano Consolaro \<\> 3 | - \[Heliconia Solutions Pvt. Ltd.\]() 4 | -------------------------------------------------------------------------------- /mgmtsystem_claim/views/menus.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - [Escodoo](https://www.escodoo.com.br): 2 | - Marcel Savegnago \<\> 3 | - \[Heliconia Solutions Pvt. Ltd.\]() 4 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Marcelo Frare \<\> 2 | - Stefano Consolaro \<\> 3 | - Creu Blanca 4 | - [Heliconia Solutions Pvt. Ltd.\]() 5 | -------------------------------------------------------------------------------- /mgmtsystem_audit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | 5 | from . import models 6 | from . import wizard 7 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import test_mgmtsystem_hazard 5 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 2 | 3 | from . import test_cause 4 | from . import test_origin 5 | from . import test_nonconformity 6 | from . import test_js 7 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Department 2 | 3 | - Go to Employees → Department → create a new one 4 | - Go to Management System → Nonconformity 5 | - Create new Nonconformity 6 | - Select a Departament on the list 7 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | **Configure stages** 2 | 3 | Go to "Management System -\> Configuration -\> Actions -\> Stages" 4 | 5 | **Configure tags** 6 | 7 | Go to "Management System -\> Configuration -\> Actions -\> Tags" 8 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To enter your information security manual, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Manuals 4 | - Create a new page and select the Information Security category 5 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Workcenter 2 | 3 | - Go to Manufacturing → Work Centers → create a new one 4 | - Go to Management System → Nonconformity 5 | - Create new Nonconformity 6 | - Select a Workcenter on the list 7 | -------------------------------------------------------------------------------- /document_page_work_instruction/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To enter your work instruction template, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Work Instructions 4 | - select the Work Instructions category and edit the template 5 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module add efficacy information for Management System Actions. 2 | 3 | Action 4 | 5 | - new tab in the Action form view to evaluate the efficacy of the 6 | action. Changes are tracked. 7 | -------------------------------------------------------------------------------- /mgmtsystem_survey/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | 1. Go to Management System \> Configuration \> Surveys 4 | 2. Click on Create to create your customer satisfaction survey 5 | 3. Add pages and questions 6 | -------------------------------------------------------------------------------- /document_page_quality_manual/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To enter your quality manual: 2 | 3 | - Go to Management Systems \> Documentation \> Manuals 4 | - Create a new page 5 | - Enter a title 6 | - Select the Quality Manual category 7 | - Fill in the content 8 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module add management of template for Actions. 2 | 3 | - new Action Template model to set default values 4 | - new field to select an Action Template to fill predefined fields 5 | automatically 6 | -------------------------------------------------------------------------------- /mgmtsystem_claim/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This application allows you to track your customers/vendors claims and 2 | grievances. 3 | 4 | It is fully integrated with the email gateway so that you can create 5 | automatically new claims based on incoming emails. 6 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink 2 | access_mgmtsystem_action_template,access_mgmtsystem_action_template,model_mgmtsystem_action_template,base.group_user,1,1,1,1 3 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Marcelo Frare \<\> 2 | - Stefano Consolaro \<\> 3 | - Yvan Dotet \<\> 4 | - \[Heliconia Solutions Pvt. Ltd.\]() 5 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To create environmental aspects, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Environmental Aspects 4 | - click on Create and select the Environmental Aspect category 5 | - enter your content 6 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To enter your information security manual, you need to: 2 | 3 | - go to Management Systems \> Documentation \> Manuals 4 | - click on Create and select the Health and Safety Manual category 5 | - enter your content 6 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - go to Management Systems \> Manuals \> Hazard 4 | - create a new hazard to enter analysis information, risk evaluation, 5 | control measures, implementation tests and residual risks evaluation. 6 | -------------------------------------------------------------------------------- /mgmtsystem_survey/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | 1. Publish the survey on the web (using the website module) or 4 | 2. Print the survey and send it by email or 5 | 3. Call your customer and go through the list of questions over the 6 | phone 7 | -------------------------------------------------------------------------------- /mgmtsystem_audit/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | Users must be added to the appropriate groups within Odoo as follows: 2 | 3 | - Creators: Settings \> Users \> Groups \> Management System / User 4 | - Responsible Persons: Settings \> Users \> Groups \> Management System 5 | / Approving User 6 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - The custom emails should be replaced by Mail Tracking features and 2 | Subtypes (like in Project Tasks and Project Issues) 3 | - Automatically add responsible_user_id.\_uid, manager_user_id.\_uid, 4 | author_user_id.\_uid to chatter 5 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is a bridge module between Management System and Human Resource 2 | 3 | This module contains some new features for Management System modules. 4 | 5 | Nonconformity (NC) 6 | 7 | - Department: add a field to link a specific department. 8 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is a bridge module between Management System and Repair 2 | 3 | This module contains some new features for Management System modules. 4 | 5 | Nonconformity (NC) 6 | 7 | - Repair Order: add a field to link a specific repair order. 8 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module enables you to manage the nonconformities of your management 2 | systems: 3 | 4 | - Quality (ISO 9001) 5 | - Environment (ISO 14001) 6 | - Information Security (ISO 27001) 7 | - Health and Safety (ISO 45001) 8 | - IT Services (ISO 20000) 9 | -------------------------------------------------------------------------------- /mgmtsystem_audit/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import mgmtsystem_nonconformity 5 | from . import mgmtsystem_verification_line 6 | from . import mgmtsystem_audit 7 | -------------------------------------------------------------------------------- /mgmtsystem_claim/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | - Go to new menú **"Management System -\> Configuration -\> Claim -\> 4 | Stages** and create stages for claims. 5 | - Go to new menu **CRM \> Configuration \> Claim \> Categories** and 6 | create as many categories as you need. 7 | -------------------------------------------------------------------------------- /mgmtsystem_manual/data/mgmtsystem_manual.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Manuals 5 | category 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | [Escodoo](https://www.escodoo.com.br): 2 | 3 | - Marcel Savegnago \<\> 4 | - Kaynnan Lemes \<\> 5 | - Douglas Custodio \<\> 6 | - \[Heliconia Solutions Pvt. Ltd.\]() 7 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Gervais Naoussi \<\> 3 | - [Guadaltech](https://www.guadaltech.es): 4 | - Fernando La Chica \<\> 5 | - \[Heliconia Solutions Pvt. Ltd.\]() 6 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - [Escodoo](https://www.escodoo.com.br): 2 | - Marcel Savegnago \<\> 3 | - Kaynnan Lemes \<\> 4 | - Douglas Custodio \<\> 5 | - \[Heliconia Solutions Pvt. Ltd.\]() 6 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This is a bridge module between Management System and MRP 2 | 3 | This module contains some new features for Management System modules. 4 | 5 | Nonconformity (NC) 6 | 7 | - Workcenter: add a field to link a specific workcenter. Manage Work 8 | Order Operations option has to be checked to show the field. 9 | -------------------------------------------------------------------------------- /mgmtsystem_claim/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" 2 | "access_mgmtsystem_claim","mgmtsystem.claim.user","model_mgmtsystem_claim","base.group_user",1,1,1,0 3 | "access_mgmtsystem_claim_stage","access_mgmtsystem_claim_stage","model_mgmtsystem_claim_stage","base.group_user",1,0,0,0 4 | -------------------------------------------------------------------------------- /mgmtsystem_manual/models/mgmtsystem_manual.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Odoo Community Association 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtSystemManual(models.Model): 8 | _inherit = "mgmtsystem.system" 9 | 10 | manual_id = fields.Many2one("document.page", string="Manual") 11 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/demo/mgmtsystem_nonconformity_origin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Internal Audit 4 | The nonconformity was discovered during an internal audit. 7 | 8 | 9 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/demo/mgmtsystem_nonconformity_cause.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lack of expertise 4 | The cause of the nonconformity is a lack of expertise of the person. 7 | 8 | 9 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux \<\> 2 | - Gervais Naoussi \<\> 3 | - [Guadaltech](https://www.guadaltech.es): 4 | - Fernando La Chica \<\> 5 | - Yvan Dotet \<\> 6 | - \[Heliconia Solutions Pvt. Ltd.\]() 7 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/data/sequence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Management System Nonconformity 4 | mgmtsystem.nonconformity 5 | 3 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /mgmtsystem_action/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux 2 | - Simone Orsi \<\> 3 | - [Tecnativa](https://www.tecnativa.com): 4 | - Ernesto Tejeda 5 | 6 | Trobz 7 | 8 | - Dung Tran \<\> 9 | - Yvan Dotet \<\> 10 | 11 | TODO: many contribs to retrieve from history, we can open other PRs to 12 | update this list. 13 | -------------------------------------------------------------------------------- /mgmtsystem_objective/demo/mgmtsystem_objective.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /mgmtsystem_manual/views/document_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | -------------------------------------------------------------------------------- /mgmtsystem_quality/data/mgmtsystem_system.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Quality 4 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /document_page_environment_manual/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Odoo SA \<\> 2 | - Savoir-faire Linux \<\> 3 | - Gervais Naoussi \<\> 4 | - [Guadaltech](https://www.guadaltech.es): 5 | - Fernando La Chica \<\> 6 | - Yvan Dotet \<\> 7 | - \[Heliconia Solutions Pvt. Ltd.\]() 8 | -------------------------------------------------------------------------------- /mgmtsystem_claim/data/claim_sequence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Management System Claim 5 | mgmtsystem.claim 6 | 3 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/models/mgmtsystem_nonconformity.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 - TODAY, Marcel Savegnago - Escodoo 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformity(models.Model): 8 | _inherit = "mgmtsystem.nonconformity" 9 | 10 | repair_order_id = fields.Many2one("repair.order", "Repair Order") 11 | -------------------------------------------------------------------------------- /mgmtsystem_action/data/action_sequence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Management System Action 5 | mgmtsystem.action 6 | 3 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /mgmtsystem_quality/readme/CONFIGURE.md: -------------------------------------------------------------------------------- 1 | To configure this module, you need to: 2 | 3 | - Add users to the Management System groups (Manager, Auditor, NC 4 | Approver) 5 | - Import your documentation (manuals and procedures) 6 | - Review the data provided (i.e. NC origins and causes) 7 | - Customize the Customer Satisfaction survey 8 | - Customize email templates for reminders 9 | - Import your legacy data (NC, actions) 10 | -------------------------------------------------------------------------------- /mgmtsystem_quality/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - Schedule iand manage your audit calendars and top management reviews 4 | - Follow up with your colleagues on their actions 5 | - Analyze your NC and determine your action plan 6 | - Evaluate the effectiveness of your action plan before closing NC 7 | - Maintain your documentation by approving or refusing changes 8 | - Create improvement opportunities 9 | -------------------------------------------------------------------------------- /mgmtsystem_review/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" 2 | "access_mgmtsystem_review_manager","mgmtsystem.review.manager","model_mgmtsystem_review","mgmtsystem.group_mgmtsystem_manager",1,1,1,0 3 | "access_mgmtsystem_review_line_manager","mgmtsystem.review.line.manager","model_mgmtsystem_review_line","mgmtsystem.group_mgmtsystem_manager",1,1,1,0 4 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Loïc Faure-Lacroix \<\> 2 | - Gervais Naoussi \<\> 3 | - [Guadaltech](https://www.guadaltech.es): 4 | - Fernando La Chica \<\> 5 | - [Binhex](https://binhex.cloud//com): 6 | - David Luis Mora \<\> 7 | - [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io) 8 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/res_config_settings.py: -------------------------------------------------------------------------------- 1 | # Part of Odoo. See LICENSE file for full copyright and licensing details. 2 | 3 | from odoo import fields, models 4 | 5 | 6 | class ResConfigSettings(models.TransientModel): 7 | _inherit = "res.config.settings" 8 | 9 | risk_computation_id = fields.Many2one( 10 | related="company_id.risk_computation_id", string="Risk formula", readonly=False 11 | ) 12 | -------------------------------------------------------------------------------- /mgmtsystem_review/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - go to Management Systems / Reviews 4 | - create a new review with the date, the persons, the policies of your 5 | systems, the KPI and survey results 6 | - Discuss each problems and log your decision in the review lines with 7 | an action or nonconformity 8 | - Conclude your review with the date of the next one and save it 9 | - Print the report 10 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Loïc Lacroix \<\> 3 | - Nadège Grandjean \<\> 4 | - [Guadaltech](https://www.guadaltech.es): 5 | - Fernando La Chica \<\> 6 | - Yvan Dotet \<\> 7 | - [Heliconia Solutions Pvt. Ltd.](https://www.heliconia.io) 8 | -------------------------------------------------------------------------------- /mgmtsystem_quality/i18n/mgmtsystem_quality.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 18.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import mgmtsystem_hazard_risk_computation 5 | from . import mgmtsystem_hazard_residual_risk 6 | from . import mgmtsystem_hazard_risk_type 7 | from . import mgmtsystem_hazard 8 | from . import res_company 9 | from . import res_config_settings 10 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/models/mgmtsystem_nonconformity.py: -------------------------------------------------------------------------------- 1 | # Copyright 2024 - TODAY, Kaynnan Lemes 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformity(models.Model): 8 | _inherit = "mgmtsystem.nonconformity" 9 | 10 | hazard_ids = fields.Many2many("mgmtsystem.hazard", string="Risk Analysis") 11 | -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- 1 | /** @type {import('prettier').Config} */ 2 | 3 | const config = { 4 | // https://github.com/prettier/prettier/issues/15388#issuecomment-1717746872 5 | plugins: [require.resolve("@prettier/plugin-xml")], 6 | bracketSpacing: false, 7 | printWidth: 88, 8 | proseWrap: "always", 9 | semi: true, 10 | trailingComma: "es5", 11 | xmlWhitespaceSensitivity: "preserve", 12 | }; 13 | 14 | module.exports = config; 15 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/document_page_quality_manual.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 18.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/models/mgmtsystem_hazard.py: -------------------------------------------------------------------------------- 1 | # Copyright 2024 - TODAY, Kaynnan Lemes 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazard(models.Model): 8 | _inherit = "mgmtsystem.hazard" 9 | 10 | nonconformity_ids = fields.Many2many( 11 | "mgmtsystem.nonconformity", string="Nonconformity" 12 | ) 13 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/models/mgmtsystem_nonconformity.py: -------------------------------------------------------------------------------- 1 | # Copyright 2024 - TODAY, Kaynnan Lemes 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformity(models.Model): 8 | _inherit = "mgmtsystem.nonconformity" 9 | 10 | equipment_id = fields.Many2one("maintenance.equipment", string="Equipment") 11 | -------------------------------------------------------------------------------- /mgmtsystem_review/data/ir_sequence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Management System Review 5 | mgmtsystem.review 6 | MSR 7 | 3 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /document_page_environment_manual/i18n/document_page_environment_manual.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 18.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/i18n/mgmtsystem_info_security_manual.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 18.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/i18n/document_page_health_safety_manual.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # 4 | msgid "" 5 | msgstr "" 6 | "Project-Id-Version: Odoo Server 18.0\n" 7 | "Report-Msgid-Bugs-To: \n" 8 | "Last-Translator: \n" 9 | "Language-Team: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: \n" 13 | "Plural-Forms: \n" 14 | -------------------------------------------------------------------------------- /document_page_procedure/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux \<\> 2 | - Gervais Naoussi \<\> 3 | - Eugen Don \<\> 4 | - Jose Maria Alzaga \<\> 5 | - [Tecnativa](https://www.tecnativa.com): 6 | - Ernesto Tejeda 7 | 8 | Trobz 9 | 10 | - Dung Tran \<\> 11 | - Yvan Dotet \<\> 12 | - Tuan Nguyen \<\> -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/res_company.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2020 Guadaltech Soluciones Tecnológicas (). 2 | # Part of Odoo. See LICENSE file for full copyright and licensing details. 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class ResCompany(models.Model): 8 | _inherit = "res.company" 9 | 10 | risk_computation_id = fields.Many2one( 11 | "mgmtsystem.hazard.risk.computation", string="Risk Computation" 12 | ) 13 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | Action Template - Define 2 | 3 | - Go to Management System → Configuration → Action Templates 4 | - Create a new Template 5 | - Fill fields with predefined values 6 | 7 | Action Template - Use 8 | 9 | - Go to Management System → Actions 10 | - Create new Action 11 | - Select Reference Template: the fields Title (name), Type, Responsible, 12 | Tags and Description are filled with Template values 13 | - Procede with Action completion 14 | -------------------------------------------------------------------------------- /mgmtsystem/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux \<\> 2 | - Gervais Naoussi \<\> 3 | - Eugen Don \<\> 4 | - Jose Maria Alzaga \<\> 5 | - Iván Todorovich \<\> 6 | - [Tecnativa](https://www.tecnativa.com): 7 | - Ernesto Tejeda 8 | - [Trobz](https://trobz.com): 9 | - Dung Tran \<\> 10 | - Yvan Dotet \<\> 11 | -------------------------------------------------------------------------------- /mgmtsystem_audit/data/audit_sequence.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Management System Audit 6 | mgmtsystem.audit 7 | MSA 8 | 3 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /mgmtsystem_manual/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Odoo SA \<\> 2 | - Savoir-faire Linux \<\> 3 | - Gervais Naoussi \<\> 4 | - Eugen Don \<\> 5 | - Jose Maria Alzaga \<\> 6 | - [Tecnativa](https://www.tecnativa.com): 7 | - Ernesto Tejeda 8 | 9 | Trobz 10 | 11 | - Dung Tran \<\> 12 | - Tuan Nguyen \<\> 13 | - Yvan Dotet \<\> 14 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/migrations/16.0.1.1.0/pre-migrate.py: -------------------------------------------------------------------------------- 1 | # Copyright 2023 Camptocamp SA 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) 3 | 4 | 5 | def migrate(cr, version): 6 | """Set nonconformity stages from module data as noupdate.""" 7 | cr.execute( 8 | """ 9 | UPDATE ir_model_data 10 | SET noupdate = TRUE 11 | WHERE module = 'mgmtsystem_nonconformity' 12 | AND model = 'mgmtsystem.nonconformity.stage'; 13 | """ 14 | ) 15 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | 5 | from . import mgmtsystem_nonconformity_stage 6 | from . import mgmtsystem_nonconformity_cause 7 | from . import mgmtsystem_nonconformity_origin 8 | from . import mgmtsystem_nonconformity_severity 9 | from . import mgmtsystem_nonconformity 10 | from . import mgmtsystem_action 11 | from . import mail_thread 12 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | NC Type 2 | 3 | - Go to Management System → Management System → Nonconformities 4 | - Create new Nonconformity 5 | - Select a Nonconformity Type: default is Internal 6 | 7 | NC Partner Quality E-mail 8 | 9 | - Go to Contacts 10 | - Open a Partner 11 | - On tab Contacts & Adresses create/select a contact of type Quality 12 | Address 13 | - Go to Management System → Management System → Nonconformity 14 | - Create a new Nonconformity 15 | - Click «Send by Email» 16 | -------------------------------------------------------------------------------- /document_page_work_instruction/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Savoir-faire Linux \<\> 2 | - Gervais Naoussi \<\> 3 | - Eugen Don \<\> 4 | - Jose Maria Alzaga \<\> 5 | - [Tecnativa](https://www.tecnativa.com): 6 | - Ernesto Tejeda 7 | 8 | - [Trobz](https://www.trobz.com): 9 | - Dung Tran \<\> 10 | - Khoi (Kien Kim) \<\> 11 | 12 | - Yvan Dotet \<\> 13 | -------------------------------------------------------------------------------- /mgmtsystem_audit/models/mgmtsystem_nonconformity.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformity(models.Model): 8 | """Class use to add audit_ids association to MgmtsystemNonconformity.""" 9 | 10 | _inherit = "mgmtsystem.nonconformity" 11 | 12 | audit_ids = fields.Many2many("mgmtsystem.audit", string="Related Audits") 13 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Loïc Lacroix \<\> 3 | - Nadège Grandjean \<\> 4 | - [Tecnativa](https://www.tecnativa.com): 5 | - Ernesto Tejeda 6 | - [Guadaltech](https://www.guadaltech.es): 7 | - Fernando La Chica \<\> 8 | - Yvan Dotet \<\> 9 | - \[Heliconia Solutions Pvt. Ltd.\]() 10 | -------------------------------------------------------------------------------- /mgmtsystem/models/mgmtsystem_system.py: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Savoir-faire Linux 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtSystemSystem(models.Model): 8 | _name = "mgmtsystem.system" 9 | _description = "System" 10 | 11 | name = fields.Char("System", required=True) 12 | company_id = fields.Many2one( 13 | "res.company", "Company", default=lambda self: self.env.company 14 | ) 15 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/models/mgmtsystem_nonconformity_hr.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 4 | 5 | from odoo import fields, models 6 | 7 | 8 | class MgmtsystemMgmHR(models.Model): 9 | _inherit = ["mgmtsystem.nonconformity"] 10 | 11 | department_id = fields.Many2one("hr.department", "Department") 12 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from . import ( 5 | mgmtsystem_hazard_type, 6 | mgmtsystem_hazard_origin, 7 | mgmtsystem_hazard_hazard, 8 | mgmtsystem_hazard_probability, 9 | mgmtsystem_hazard_severity, 10 | mgmtsystem_hazard_usage, 11 | mgmtsystem_hazard_control_measure, 12 | mgmtsystem_hazard_test, 13 | mgmtsystem_hazard, 14 | ) 15 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/data/document_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Health and Safety Manual 5 | category 6 | 7 | 8 | TODO: Add the structure of the health and safety manual from the OHSAS 18001 standard. 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /mgmtsystem/tests/test_create_mgmtsystem.py: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Savoir-faire Linux 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo.tests import common 5 | 6 | 7 | class TestModelAction(common.TransactionCase): 8 | def test_create_system(self): 9 | record = self.env["mgmtsystem.system"].create({"name": "SampleSystem"}) 10 | 11 | self.assertEqual(record.name, "SampleSystem") 12 | self.assertEqual(record.company_id.id, self.env.company.id) 13 | -------------------------------------------------------------------------------- /mgmtsystem_partner/models/res_partner.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class ResPartner(models.Model): 8 | """ 9 | Extend res.partner with contact info for communications on quality 10 | """ 11 | 12 | _inherit = ["res.partner"] 13 | 14 | # type for manage quality contact 15 | type = fields.Selection(selection_add=[("quality", "Quality Address")]) 16 | -------------------------------------------------------------------------------- /document_page_work_instruction/data/document_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Work Instructions 5 | category 6 | 7 | 8 | Step 1 10 | 11 |

Step 2

12 | 13 |

Step 3

14 | ]]> 15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /document_page_quality_manual/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Odoo SA \<\> 2 | - Maxime Chambreuil \<\> 3 | - Gervais Naoussi \<\> 4 | - Eugen Don \<\> 5 | - Jose Maria Alzaga \<\> 6 | - [Tecnativa](https://www.tecnativa.com): 7 | - Ernesto Tejeda 8 | 9 | - [Trobz](https://www.trobz.com): 10 | - Dung Tran \<\> 11 | - Khoi (Kien Kim) \<\> 12 | 13 | - Yvan Dotet \<\> 14 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/models/mgmtsystem_review.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemReview(models.Model): 8 | _inherit = "mgmtsystem.review" 9 | 10 | response_ids = fields.Many2many( 11 | "survey.user_input", 12 | "mgmtsystem_review_response_rel", 13 | "response_id", 14 | "mgmtsystem_review_id", 15 | "Survey Answers", 16 | ) 17 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/security/mgmtsystem_nonconformity_security.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | mgmtsystem_nonconformity multi-company 6 | 7 | 8 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 11 | 12 | 13 | -------------------------------------------------------------------------------- /mgmtsystem_claim/security/mgmtsystem_claim_security.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | mgmtsystem_claim multi-company 7 | 8 | 9 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 12 | 13 | 14 | -------------------------------------------------------------------------------- /mgmtsystem_action/models/mgmtsystem_action_tag.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemActionTag(models.Model): 8 | _name = "mgmtsystem.action.tag" 9 | _description = "Action Tags" 10 | 11 | name = fields.Char(required=True) 12 | color = fields.Integer(string="Color Index", default=10) 13 | 14 | _sql_constraints = [("name_uniq", "unique (name)", "Tag name already exists !")] 15 | -------------------------------------------------------------------------------- /mgmtsystem_action/security/mgmtsystem_action_security.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | mgmtsystem_action multi-company 7 | 8 | 9 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 12 | 13 | 14 | -------------------------------------------------------------------------------- /mgmtsystem_quality/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Luk Vermeylen \<\> 2 | - Daniel Reis \<\> 3 | - Gervais Naoussi \<\> 4 | - Open Source Integrators \<\> 5 | - Maxime Chambreuil \<\> 6 | - Eugen Don \<\> 7 | - Jose Maria Alzaga \<\> 8 | - Guadaltech \<\> 9 | - Fernando La Chica \<\> 10 | - Yvan Dotet \<\> 11 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Daniel Reis \<\> 2 | - Glen Dromgoole \<\> 3 | - Loic Lacroix \<\> 4 | - Sandy Carter \<\> 5 | - Gervais Naoussi \<\> 6 | - Eugen Don \<\> 7 | - Jose Maria Alzaga \<\> 8 | - [Tecnativa](https://www.tecnativa.com): 9 | - Ernesto Tejeda 10 | 11 | Trobz 12 | 13 | - Dung Tran \<\> 14 | - Tuan Nguyen \<\> -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/models/mgmtsystem_nonconformity.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformity(models.Model): 8 | """ 9 | Extend nonconformity adding fields for product 10 | """ 11 | 12 | _inherit = ["mgmtsystem.nonconformity"] 13 | 14 | # new fields 15 | # product reference 16 | product_id = fields.Many2one("product.product", "Product") 17 | -------------------------------------------------------------------------------- /mgmtsystem_objective/tests/test_js.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 Dixmit 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | import odoo 4 | 5 | from odoo.addons.web.tests.test_js import WebSuite 6 | 7 | 8 | @odoo.tests.tagged("post_install", "-at_install") 9 | class TestMgmtSystemObjectiveSuite(WebSuite): 10 | """Test Automation OCA""" 11 | 12 | def get_hoot_filters(self): 13 | self._test_params = [("+", "@mgmtsystem_objective")] 14 | return super().get_hoot_filters() 15 | 16 | def test_mgmt_system_objective(self): 17 | self.test_unit_desktop() 18 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/tests/test_js.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 Dixmit 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | import odoo 4 | 5 | from odoo.addons.web.tests.test_js import WebSuite 6 | 7 | 8 | @odoo.tests.tagged("post_install", "-at_install") 9 | class TestNonConformityFrontend(WebSuite): 10 | """Test Non Conformity OCA Frontend""" 11 | 12 | def get_hoot_filters(self): 13 | self._test_params = [("+", "@mgmtsystem_nonconformity")] 14 | return super().get_hoot_filters() 15 | 16 | def test_non_conformity(self): 17 | self.test_unit_desktop() 18 | -------------------------------------------------------------------------------- /document_page_procedure/data/document_page_procedure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Procedure 5 | category 6 | 7 | 8 | Objective 10 | 11 |

Application Domain

12 | 13 |

Terms and Definitions

14 | 15 |

Responsibilities

16 | 17 |

Process

18 | ]]> 19 |
20 |
21 |
22 | -------------------------------------------------------------------------------- /document_page_procedure/demo/document_page_procedure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Procedure 5 | 6 | content 7 | 8 | Objective 10 | 11 |

Application Domain

12 | 13 |

Terms and Definitions

14 | 15 |

Responsibilities

16 | 17 |

Process

18 | ]]> 19 |
20 |
21 |
22 | -------------------------------------------------------------------------------- /mgmtsystem_audit/views/res_users.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | res.users 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_type.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardType(models.Model): 8 | _name = "mgmtsystem.hazard.type" 9 | _description = "Type of Hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Type", required=True, translate=True) 15 | description = fields.Text() 16 | -------------------------------------------------------------------------------- /mgmtsystem_quality/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module was written to allow you to manage your Quality Management 2 | System (QMS) within Odoo. It provides applications to manage: 3 | 4 | - Quality Manual 5 | - Procedures and Work Instructions 6 | - Top Management Reviews 7 | - Audits 8 | - Nonconformities (NC) 9 | - Immediate/Corrective/Preventive Actions 10 | - Improvement Opportunities 11 | - Satisfaction Survey 12 | 13 | For further information, please visit: 14 | 15 | - 16 | - 17 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Loïc Faure-Lacroix \<\> 3 | - Gervais Naoussi \<\> 4 | - Luk Vermeylen \<\> 5 | - Eugen Don \<\> 6 | - Jose Maria Alzaga \<\> 7 | - Julien Coux \<\> 8 | - [Tecnativa](https://www.tecnativa.com): 9 | - Ernesto Tejeda 10 | - Víctor Martínez 11 | 12 | Trobz 13 | 14 | - Dung Tran \<\> 15 | - Yvan Dotet \<\> 16 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_hazard.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardHazard(models.Model): 8 | _name = "mgmtsystem.hazard.hazard" 9 | _description = "Hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Hazard", required=True, translate=True) 15 | description = fields.Text(translate=True) 16 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_origin.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardOrigin(models.Model): 8 | _name = "mgmtsystem.hazard.origin" 9 | _description = "Origin of hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Origin", required=True, translate=True) 15 | description = fields.Text() 16 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_maintenance_equipment/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2024 - TODAY, Escodoo 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Nonconformity Maintenance Equipment", 6 | "version": "18.0.1.0.0", 7 | "author": "Escodoo, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["maintenance", "mgmtsystem_nonconformity"], 12 | "data": [ 13 | "views/mgmtsystem_nonconformity.xml", 14 | ], 15 | } 16 | -------------------------------------------------------------------------------- /mgmtsystem_claim/data/automated_reminder.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Email Claim Reminders 10 days before due date. 5 | 6 | 1 7 | days 8 | 9 | code 10 | model.process_reminder_queue() 11 | 12 | 13 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/mgmtsystem_hazard_risk_type.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardRiskType(models.Model): 8 | _name = "mgmtsystem.hazard.risk.type" 9 | _description = "Risk type of the hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Risk Type", required=True, translate=True) 15 | description = fields.Text() 16 | -------------------------------------------------------------------------------- /mgmtsystem_action/data/automated_reminder.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Email Action Reminders 10 days before due date. 5 | 6 | 1 7 | days 8 | 9 | code 10 | model.process_reminder_queue() 11 | 12 | 13 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/mgmtsystem_hazard_risk_computation.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardRiskComputation(models.Model): 8 | _name = "mgmtsystem.hazard.risk.computation" 9 | _description = "Computation Risk" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Computation Risk", required=True) 15 | description = fields.Text() 16 | -------------------------------------------------------------------------------- /mgmtsystem_survey/views/survey_survey.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Surveys 6 | survey.survey 7 | list,form 8 | 9 | 16 | 17 | -------------------------------------------------------------------------------- /mgmtsystem_audit/readme/USAGE.md: -------------------------------------------------------------------------------- 1 | To use this module, you need to: 2 | 3 | - go to Management Systems \> Audits 4 | - create a new audit 5 | - fill up its name, its auditors and schedule the date 6 | - prepare your questions with the verification list and print it 7 | - drive the audit and log answers in your verification list 8 | - finish your audit by writing the strong points, points to improve and 9 | creating improvements opportunities and nonconformities 10 | - print the audit report and close the audit 11 | 12 | For further information, please visit: 13 | 14 | - 15 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Configuration for known file extensions 2 | [*.{css,js,json,less,md,py,rst,sass,scss,xml,yaml,yml}] 3 | charset = utf-8 4 | end_of_line = lf 5 | indent_size = 4 6 | indent_style = space 7 | insert_final_newline = true 8 | trim_trailing_whitespace = true 9 | 10 | [*.{json,yml,yaml,rst,md}] 11 | indent_size = 2 12 | 13 | # Do not configure editor for libs and autogenerated content 14 | [{*/static/{lib,src/lib}/**,*/static/description/index.html,*/readme/../README.rst}] 15 | charset = unset 16 | end_of_line = unset 17 | indent_size = unset 18 | indent_style = unset 19 | insert_final_newline = false 20 | trim_trailing_whitespace = false 21 | -------------------------------------------------------------------------------- /mgmtsystem/security/ir.model.access.csv: -------------------------------------------------------------------------------- 1 | "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" 2 | "access_mgmtsystem_system_user","mgmtsystem.system.user","model_mgmtsystem_system","mgmtsystem.group_mgmtsystem_user",1,0,0,0 3 | "access_mgmtsystem_system_viewer","mgmtsystem.system.viewer","model_mgmtsystem_system","mgmtsystem.group_mgmtsystem_viewer",1,0,0,0 4 | "access_mgmtsystem_system_auditor","mgmtsystem.system.auditor","model_mgmtsystem_system","mgmtsystem.group_mgmtsystem_auditor",1,0,0,0 5 | "access_mgmtsystem_system_manager","mgmtsystem.system.manager","model_mgmtsystem_system","mgmtsystem.group_mgmtsystem_manager",1,1,1,1 6 | -------------------------------------------------------------------------------- /mgmtsystem_partner/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 2 | 3 | { 4 | "name": "Management System - Partner", 5 | "summary": "Add Management System reference on Partner's Contacts.", 6 | "version": "18.0.1.0.0", 7 | "development_status": "Beta", 8 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 9 | "website": "https://github.com/OCA/management-system", 10 | "license": "AGPL-3", 11 | "category": "Management System", 12 | "depends": [ 13 | "mail", 14 | "contacts", 15 | ], 16 | "installable": True, 17 | } 18 | -------------------------------------------------------------------------------- /mgmtsystem_review/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Loïc Faure-Lacroix \<\> 3 | - Gervais Naoussi \<\> 4 | - Luk Vermeylen \<\> 5 | - Eugen Don \<\> 6 | - Jose Maria Alzaga \<\> 7 | - Julien Coux \<\> 8 | - [Tecnativa](https://www.tecnativa.com): 9 | - Ernesto Tejeda 10 | - Yvan Dotet \<\> 11 | 12 | - [Trobz] (https://trobz.com/): 13 | - Dung Tran \<\> 14 | - Tuan Nguyen \<\> 15 | -------------------------------------------------------------------------------- /document_page_quality_manual/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2004-2009 Tiny SPRL (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Quality Manual", 6 | "version": "18.0.1.0.1", 7 | "category": "Management System", 8 | "author": "OpenERP SA, Odoo Community Association (OCA)", 9 | "website": "https://github.com/OCA/management-system", 10 | "license": "AGPL-3", 11 | "depends": ["mgmtsystem_manual"], 12 | "data": ["data/document_page.xml"], 13 | "installable": True, 14 | "auto_install": False, 15 | "images": ["static/description/quality_manual_form.png"], 16 | } 17 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/models/mgmtsystem_nonconformity_mrp.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 4 | 5 | from odoo import fields, models 6 | 7 | 8 | class MgmtsystemMgmMRP(models.Model): 9 | """ 10 | Extend nonconformity adding fields for workcenter 11 | """ 12 | 13 | _inherit = ["mgmtsystem.nonconformity"] 14 | 15 | # new fields 16 | # workcenter reference 17 | workcenter_id = fields.Many2one("mrp.workcenter", "Workcenter") 18 | -------------------------------------------------------------------------------- /mgmtsystem_survey/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Survey", 6 | "version": "18.0.1.0.0", 7 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["mgmtsystem", "survey"], 12 | "data": ["views/survey_survey.xml"], 13 | "installable": True, 14 | "development_status": "Beta", 15 | "maintainers": ["max3903"], 16 | } 17 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/mgmtsystem_survey.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: mgmtsystem_survey 17 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 18 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 19 | msgid "Surveys" 20 | msgstr "" 21 | -------------------------------------------------------------------------------- /document_page_work_instruction/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Document Management - Wiki - Work Instructions", 6 | "version": "18.0.1.0.1", 7 | "author": "Savoir-faire Linux,Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["document_page", "mgmtsystem"], 12 | "data": ["data/document_page.xml", "views/document_page_work_instructions.xml"], 13 | "installable": True, 14 | } 15 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2024 - TODAY, Escodoo 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Nonconformity Hazard", 6 | "version": "18.0.1.0.0", 7 | "author": "Escodoo, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["mgmtsystem_hazard", "mgmtsystem_nonconformity"], 12 | "data": [ 13 | "views/mgmtsystem_hazard.xml", 14 | "views/mgmtsystem_nonconformity.xml", 15 | ], 16 | "autoinstall": True, 17 | } 18 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_usage.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardUsage(models.Model): 8 | _name = "mgmtsystem.hazard.usage" 9 | _description = "Usage of hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Occupation / Usage", required=True, translate=True) 15 | value = fields.Integer(required=True) 16 | description = fields.Text() 17 | -------------------------------------------------------------------------------- /mgmtsystem_review/views/res_users.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mgmtsystem.review.res.users.x2m.form (in mgmtsystem_review) 7 | res.users 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 - TODAY, Escodoo 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Mgmtsystem Nonconformity Repair", 6 | "summary": """ 7 | Bridge module between Repair and Non Conformities""", 8 | "version": "18.0.1.0.0", 9 | "license": "AGPL-3", 10 | "author": "Escodoo,Odoo Community Association (OCA)", 11 | "website": "https://github.com/OCA/management-system", 12 | "depends": [ 13 | "mgmtsystem_nonconformity", 14 | "repair", 15 | ], 16 | "data": [ 17 | "views/mgmtsystem_nonconformity.xml", 18 | ], 19 | "demo": [], 20 | } 21 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 Dixmit 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Mgmtsystem Review Objective", 6 | "summary": """Integrate reviews and objectives""", 7 | "version": "18.0.1.0.1", 8 | "license": "AGPL-3", 9 | "author": "Dixmit,Odoo Community Association (OCA)", 10 | "website": "https://github.com/OCA/management-system", 11 | "depends": [ 12 | "mgmtsystem_review", 13 | "mgmtsystem_objective", 14 | ], 15 | "data": [ 16 | "views/mgmtsystem_indicator_value.xml", 17 | "views/mgmtsystem_review.xml", 18 | ], 19 | "demo": [], 20 | } 21 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/models/mgmtsystem_action.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemAction(models.Model): 8 | _inherit = "mgmtsystem.action" 9 | 10 | nonconformity_immediate_id = fields.One2many( 11 | "mgmtsystem.nonconformity", "immediate_action_id" 12 | ) 13 | nonconformity_ids = fields.Many2many( 14 | "mgmtsystem.nonconformity", 15 | "mgmtsystem_nonconformity_action_rel", 16 | "action_id", 17 | "nonconformity_id", 18 | "Nonconformities", 19 | ) 20 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/models/common.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import _ 5 | from odoo.exceptions import UserError 6 | from odoo.tools.safe_eval import safe_eval 7 | 8 | 9 | def _parse_risk_formula(formula, a, b, c): 10 | """Calculate the risk replacing the variables A, B, C into the formula.""" 11 | if not formula: 12 | raise UserError( 13 | _("You must define the company's risk computing formula. Go to settings") 14 | ) 15 | f = formula.replace("A", str(a)).replace("B", str(b)).replace("C", str(c)) 16 | return safe_eval(f) 17 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_severity.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardSeverity(models.Model): 8 | _name = "mgmtsystem.hazard.severity" 9 | _description = "Severity of hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Severity", required=True, translate=True) 15 | value = fields.Integer(required=True) 16 | description = fields.Text(required=False, translate=False) 17 | -------------------------------------------------------------------------------- /mgmtsystem_manual/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Manual", 6 | "version": "18.0.1.0.1", 7 | "author": "Savoir-faire Linux,Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["document_page", "mgmtsystem"], 12 | "data": [ 13 | "data/mgmtsystem_manual.xml", 14 | "views/mgmtsystem_manual.xml", 15 | "views/document_page.xml", 16 | ], 17 | "installable": True, 18 | } 19 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/data/mgmtsystem_nonconformity_severity.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Major 4 | 5 | 6 | 7 | 8 | Minor 9 | 10 | 11 | 12 | 13 | Unfounded 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /mgmtsystem_review_survey/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Review Survey", 6 | "version": "18.0.2.0.0", 7 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["mgmtsystem_review", "survey"], 12 | "data": [ 13 | "views/mgmtsystem_review_views.xml", 14 | "report/review.xml", 15 | ], 16 | "installable": True, 17 | "auto_install": True, 18 | } 19 | -------------------------------------------------------------------------------- /document_page_procedure/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Document Management - Wiki - Procedures", 6 | "version": "18.0.1.0.1", 7 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["document_page", "mgmtsystem"], 12 | "data": ["data/document_page_procedure.xml", "views/document_page_procedure.xml"], 13 | "demo": ["demo/document_page_procedure.xml"], 14 | "installable": True, 15 | } 16 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_probability.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardProbability(models.Model): 8 | _name = "mgmtsystem.hazard.probability" 9 | _description = "Probability of hazard" 10 | 11 | company_id = fields.Many2one( 12 | "res.company", "Company", required=True, default=lambda self: self.env.company 13 | ) 14 | name = fields.Char("Probability", required=True, translate=True) 15 | value = fields.Integer(required=True) 16 | description = fields.Text(required=False, translate=False) 17 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/models/mgmtsystem_nonconformity_severity.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemNonconformitySeverity(models.Model): 8 | """Nonconformity Severity - Critical, Major, Minor, Invalid, ...""" 9 | 10 | _name = "mgmtsystem.nonconformity.severity" 11 | _description = "Severity of Complaints and Nonconformities" 12 | 13 | name = fields.Char("Title", required=True, translate=True) 14 | sequence = fields.Integer() 15 | description = fields.Text(translate=True) 16 | active = fields.Boolean("Active?", default=True) 17 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/demo/mgmtsystem_hazard_type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | OHSAS - Position 7 | 8 | 9 | 10 | OHSAS - Action 11 | 12 | 13 | 14 | EMS - Position 15 | 16 | 17 | 18 | EMS - Action 19 | 20 | 21 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_control_measure.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardControlMeasure(models.Model): 8 | _name = "mgmtsystem.hazard.control_measure" 9 | _description = "Control Measure of hazard" 10 | 11 | name = fields.Char("Control Measure", required=True, translate=True) 12 | responsible_user_id = fields.Many2one("res.users", "Responsible", required=True) 13 | comments = fields.Text() 14 | hazard_id = fields.Many2one( 15 | "mgmtsystem.hazard", "Hazard", ondelete="cascade", required=False, index=True 16 | ) 17 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/data/document_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Environmental Aspect 5 | category 6 | 7 | 8 | Activity 10 | 11 |

Environmental Aspect

12 | 13 |

Environmental Impact

14 | 15 |

Laws and Regulations

16 | 17 |

Operational Control

18 | 19 |

Responsibilities

20 | 21 |

Objectives

22 | 23 |

Programs

24 | ]]> 25 |
26 |
27 |
28 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/models/mgmtsystem_hazard_test.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemHazardTest(models.Model): 8 | _name = "mgmtsystem.hazard.test" 9 | _description = "Implementation Tests of hazard" 10 | 11 | name = fields.Char("Test", required=True, translate=True) 12 | responsible_user_id = fields.Many2one("res.users", "Responsible", required=True) 13 | review_date = fields.Date(required=True) 14 | executed = fields.Boolean() 15 | hazard_id = fields.Many2one( 16 | "mgmtsystem.hazard", "Hazard", ondelete="cascade", required=False, index=True 17 | ) 18 | -------------------------------------------------------------------------------- /mgmtsystem_audit/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Daniel Reis \<\> 2 | - Joao Alfredo Gama Batista \<\> 3 | - Maxime Chambreuil \<\> 4 | - Sandy Carter \<\> 5 | - Virgil Dupras \<\> 6 | - Loïc lacroix \<\> 7 | - Gervais Naoussi \<\> 8 | - Luk Vermeylen \<\> 9 | - Maxime Chambreuil \<\> 10 | - Eugen Don \<\> 11 | - [Tecnativa](https://www.tecnativa.com): 12 | - Ernesto Tejeda 13 | - [Guadaltech](https://www.guadaltech.es): 14 | - Fernando La Chica 15 | - Yvan Dotet \<\> 16 | -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- 1 | 2 | target-version = "py310" 3 | fix = true 4 | 5 | [lint] 6 | extend-select = [ 7 | "B", 8 | "C90", 9 | "E501", # line too long (default 88) 10 | "I", # isort 11 | "UP", # pyupgrade 12 | ] 13 | extend-safe-fixes = ["UP008"] 14 | exclude = ["setup/*"] 15 | 16 | [format] 17 | exclude = ["setup/*"] 18 | 19 | [lint.per-file-ignores] 20 | "__init__.py" = ["F401", "I001"] # ignore unused and unsorted imports in __init__.py 21 | "__manifest__.py" = ["B018"] # useless expression 22 | 23 | [lint.isort] 24 | section-order = ["future", "standard-library", "third-party", "odoo", "odoo-addons", "first-party", "local-folder"] 25 | 26 | [lint.isort.sections] 27 | "odoo" = ["odoo"] 28 | "odoo-addons" = ["odoo.addons"] 29 | 30 | [lint.mccabe] 31 | max-complexity = 16 32 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/data/mail_message_subtype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Analysis 5 | mgmtsystem.nonconformity 6 | 7 | Analysis 8 | 9 | 10 | 11 | Pending Approval 12 | mgmtsystem.nonconformity 13 | 14 | Pending Approval 15 | 16 | 17 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | 4 | { 5 | "name": "Management System - Nonconformity Product", 6 | "summary": "Bridge module between Product and Management System.", 7 | "version": "18.0.1.0.0", 8 | "development_status": "Beta", 9 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 10 | "website": "https://github.com/OCA/management-system", 11 | "license": "AGPL-3", 12 | "category": "Management System", 13 | "depends": ["product", "mgmtsystem_nonconformity"], 14 | "data": ["views/mgmtsystem_nonconformity_views.xml"], 15 | "installable": True, 16 | } 17 | -------------------------------------------------------------------------------- /mgmtsystem_quality/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | { 4 | "name": "Quality Management System", 5 | "summary": "Manage your quality management system", 6 | "version": "18.0.1.0.1", 7 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": [ 12 | "mgmtsystem_manual", 13 | "mgmtsystem_audit", 14 | "document_page_quality_manual", 15 | "mgmtsystem_review", 16 | ], 17 | "data": ["data/mgmtsystem_system.xml"], 18 | "installable": True, 19 | "maintainers": ["max3903"], 20 | } 21 | -------------------------------------------------------------------------------- /mgmtsystem/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System", 6 | "version": "18.0.1.1.4", 7 | "summary": "Support for management systems, such as ISO compliance.", 8 | "author": "Savoir-faire Linux,Odoo Community Association (OCA)", 9 | "website": "https://github.com/OCA/management-system", 10 | "license": "AGPL-3", 11 | "category": "Management System", 12 | "depends": ["base"], 13 | "data": [ 14 | "security/mgmtsystem_security.xml", 15 | "security/ir.model.access.csv", 16 | "views/menus.xml", 17 | "views/mgmtsystem_system.xml", 18 | "views/res_config.xml", 19 | ], 20 | "application": True, 21 | } 22 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 2 | 3 | { 4 | "name": "Management System - Nonconformity Type", 5 | "summary": "Add Nonconformity classification for the root context.", 6 | "version": "18.0.1.1.0", 7 | "development_status": "Beta", 8 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 9 | "website": "https://github.com/OCA/management-system", 10 | "license": "AGPL-3", 11 | "category": "Management System", 12 | "depends": ["mgmtsystem", "mgmtsystem_nonconformity", "mgmtsystem_partner"], 13 | "data": [ 14 | "views/mgmtsystem_nonconformity_views.xml", 15 | "data/mgmtsystem_nonconformity_mail_data.xml", 16 | ], 17 | "installable": True, 18 | } 19 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) 4 | 5 | { 6 | "name": "Management System - Action Efficacy", 7 | "summary": "Add information on the application of the Action.", 8 | "version": "18.0.1.0.0", 9 | "development_status": "Beta", 10 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 11 | "website": "https://github.com/OCA/management-system", 12 | "license": "AGPL-3", 13 | "category": "Management System", 14 | "depends": ["mgmtsystem_action"], 15 | "data": ["views/mgmtsystem_action_views.xml"], 16 | "installable": True, 17 | } 18 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | 4 | { 5 | "name": "Management System - Action Template", 6 | "summary": "Add Template management for Actions.", 7 | "version": "18.0.1.0.0", 8 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 9 | "website": "https://github.com/OCA/management-system", 10 | "license": "AGPL-3", 11 | "category": "Management System", 12 | "depends": ["mgmtsystem_action"], 13 | "data": [ 14 | "security/ir.model.access.csv", 15 | "views/mgmtsystem_action_template.xml", 16 | "views/mgmtsystem_action_views.xml", 17 | ], 18 | "installable": True, 19 | } 20 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/static/src/components/chatter_topbar/chatter_topbar.esm.js: -------------------------------------------------------------------------------- 1 | import {Chatter} from "@mail/chatter/web_portal/chatter"; 2 | import {patch} from "@web/core/utils/patch"; 3 | 4 | patch(Chatter.prototype, { 5 | async onClickShowNonConformities() { 6 | if (this.isTemporary) { 7 | const saved = await this.doSaveRecord(); 8 | if (!saved) { 9 | return; 10 | } 11 | } 12 | this.env.services.action.doAction( 13 | "mgmtsystem_nonconformity.open_mgmtsystem_nonconformity_thread_list", 14 | { 15 | additionalContext: { 16 | id: this.props.threadId, 17 | mgmtsystem_nonconformity: this.props.threadModel, 18 | }, 19 | } 20 | ); 21 | }, 22 | }); 23 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_repair/models/repair_order.py: -------------------------------------------------------------------------------- 1 | # Copyright 2020 - TODAY, Marcel Savegngo - Escodoo 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import api, fields, models 5 | 6 | 7 | class RepairOrder(models.Model): 8 | _inherit = "repair.order" 9 | 10 | mgmtsystem_nonconformity_ids = fields.One2many( 11 | "mgmtsystem.nonconformity", "repair_order_id", string="Non-Conformities" 12 | ) 13 | 14 | mgmtsystem_nonconformity_count = fields.Integer( 15 | compute="_compute_mgmtsystem_nonconformity_count", string="# Non-Conformities" 16 | ) 17 | 18 | @api.depends("mgmtsystem_nonconformity_ids") 19 | def _compute_mgmtsystem_nonconformity_count(self): 20 | for rec in self: 21 | rec.mgmtsystem_nonconformity_count = len(rec.mgmtsystem_nonconformity_ids) 22 | -------------------------------------------------------------------------------- /mgmtsystem/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module is the basis of any management system applications: 2 | 3 | - audit reports 4 | - nonconformities 5 | - immediate actions 6 | - preventive actions 7 | - corrective actions 8 | - improvement opportunities 9 | 10 | Videos and presentations from past OCA Days: 11 | 12 | * 2022: [Using the Management Systems to drive your ISO norm compliance](https://www.youtube.com/watch?v=w2nf_O9TajM) 13 | * 2015: [Manage your ISO 27001-certified ISMS with Odoo](https://es.slideshare.net/slideshow/manage-your-information-security-management-system-with-odoo/49101147) 14 | * 2013: [ISO & Standards Management with OpenERP](https://es.slideshare.net/slideshow/iso-anmanagement-systemswithopenerpen/23915296) 15 | * 2012: [OpenERP Management System Modules](https://es.slideshare.net/slideshow/openerp-management-system-modules/13058968#2) 16 | -------------------------------------------------------------------------------- /mgmtsystem_objective/static/src/components/objective_state_selection/objective_state_selection.esm.js: -------------------------------------------------------------------------------- 1 | import { 2 | StateSelectionField, 3 | stateSelectionField, 4 | } from "@web/views/fields/state_selection/state_selection_field"; 5 | import {registry} from "@web/core/registry"; 6 | 7 | export const STATUS_COLORS = { 8 | on_target: "green", 9 | below_target: "red", 10 | above_target: "red", 11 | }; 12 | export class ObjectiveStateSelectionField extends StateSelectionField { 13 | setup() { 14 | super.setup(); 15 | this.colors = STATUS_COLORS; 16 | } 17 | } 18 | 19 | export const objectiveStateSelectionField = { 20 | ...stateSelectionField, 21 | component: ObjectiveStateSelectionField, 22 | }; 23 | 24 | registry 25 | .category("fields") 26 | .add("objective_state_selection", objectiveStateSelectionField); 27 | -------------------------------------------------------------------------------- /mgmtsystem_survey/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | - Maxime Chambreuil \<\> 2 | - Daniel Reis \<\> 3 | - Loïc Lacroix \<\> 4 | - Stéphane Bidoul \<\> 5 | - Gervais Naoussi \<\> 6 | - Luk Vermeylen \<\> 7 | - Eugen Don \<\> 8 | - Jose Maria Alzaga \<\> 9 | - Julien Coux \<\> 10 | - [Tecnativa](https://www.tecnativa.com): 11 | - Ernesto Tejeda 12 | - Pedro M. Baeza 13 | - [Binhex](https://binhex.cloud//com): 14 | - David Luis Mora \<\> 15 | - Yvan Dotet \<\> 16 | 17 | - [Trobz](https://www.trobz.com): 18 | - Dung Tran \<\> 19 | - Khoi (Kien Kim) \<\> 20 | -------------------------------------------------------------------------------- /mgmtsystem_audit/models/mgmtsystem_verification_line.py: -------------------------------------------------------------------------------- 1 | from odoo import fields, models 2 | 3 | 4 | class MgmtsystemVerificationLine(models.Model): 5 | """Class to manage verification's Line.""" 6 | 7 | _name = "mgmtsystem.verification.line" 8 | _description = "Verification Line" 9 | _order = "seq" 10 | 11 | name = fields.Char("Question", required=True) 12 | audit_id = fields.Many2one( 13 | "mgmtsystem.audit", "Audit", ondelete="cascade", index=True 14 | ) 15 | procedure_id = fields.Many2one( 16 | "document.page", "Procedure", ondelete="restrict", index=True 17 | ) 18 | is_conformed = fields.Boolean(default=False) 19 | comments = fields.Text() 20 | seq = fields.Integer("Sequence") 21 | company_id = fields.Many2one( 22 | "res.company", "Company", default=lambda self: self.env.company 23 | ) 24 | -------------------------------------------------------------------------------- /mgmtsystem_review/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Management System - Review", 6 | "version": "18.0.2.0.1", 7 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 8 | "website": "https://github.com/OCA/management-system", 9 | "license": "AGPL-3", 10 | "category": "Management System", 11 | "depends": ["mgmtsystem_nonconformity"], 12 | "data": [ 13 | "security/ir.model.access.csv", 14 | "security/mgmtsystem_review_security.xml", 15 | "data/ir_sequence.xml", 16 | "views/mgmtsystem_review.xml", 17 | "views/res_users.xml", 18 | "report/review.xml", 19 | "report/report.xml", 20 | ], 21 | "installable": True, 22 | } 23 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | { 6 | "name": "Management System - Nonconformity HR", 7 | "summary": "Bridge module between hr and mgmsystem and", 8 | "version": "18.0.1.0.0", 9 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 10 | "website": "https://github.com/OCA/management-system", 11 | "license": "AGPL-3", 12 | "category": "Management System", 13 | "depends": ["hr", "mgmtsystem_nonconformity"], 14 | "data": ["views/mgmtsystem_nonconformity_views.xml"], 15 | "application": False, 16 | "installable": True, 17 | "auto_install": True, 18 | } 19 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/mgmtsystem_nonconformity_hr.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: mgmtsystem_nonconformity_hr 17 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 18 | msgid "Department" 19 | msgstr "" 20 | 21 | #. module: mgmtsystem_nonconformity_hr 22 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 23 | msgid "Nonconformity" 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/i18n/mgmtsystem_nonconformity_mrp.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_mrp 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: mgmtsystem_nonconformity_mrp 17 | #: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity 18 | msgid "Nonconformity" 19 | msgstr "" 20 | 21 | #. module: mgmtsystem_nonconformity_mrp 22 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id 23 | msgid "Workcenter" 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /mgmtsystem_action/models/mgmtsystem_action_stage.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtSystemActionStage(models.Model): 8 | _name = "mgmtsystem.action.stage" 9 | _description = "Action Stage" 10 | _order = "sequence, id" 11 | 12 | name = fields.Char("Stage Name", required=True, translate=True) 13 | description = fields.Text(translate=True) 14 | sequence = fields.Integer(default=100) 15 | fold = fields.Boolean( 16 | "Folded in Kanban", 17 | help="This stage is folded in the kanban view when there are " 18 | "no records in that stage to display.", 19 | ) 20 | is_starting = fields.Boolean("Starting stage") 21 | is_ending = fields.Boolean("Ending stage") 22 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/i18n/mgmtsystem_nonconformity_product.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_product 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: mgmtsystem_nonconformity_product 17 | #: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity 18 | msgid "Nonconformity" 19 | msgstr "" 20 | 21 | #. module: mgmtsystem_nonconformity_product 22 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id 23 | msgid "Product" 24 | msgstr "" 25 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity/views/mgmtsystem_action.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mgmtsystem.action.form 5 | mgmtsystem.action 6 | 7 | 8 | 9 | 10 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /mgmtsystem_review/report/report.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Review report 5 | mgmtsystem.review 6 | qweb-pdf 7 | mgmtsystem_review.review_report_template 8 | 12 | report 13 | 14 | 15 | 22 | 23 | -------------------------------------------------------------------------------- /document_page_procedure/i18n/document_page_procedure.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_procedure 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: document_page_procedure 17 | #: model:ir.actions.act_window,name:document_page_procedure.action_procedures 18 | #: model:ir.ui.menu,name:document_page_procedure.menu_mgmtsystem_manuals_procedures 19 | msgid "Procedures" 20 | msgstr "" 21 | 22 | #. module: document_page_procedure 23 | #: model_terms:ir.actions.act_window,help:document_page_procedure.action_procedures 24 | msgid "Procedures of your management system." 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /mgmtsystem_review/tests/test_create_review.py: -------------------------------------------------------------------------------- 1 | from odoo import fields 2 | 3 | from odoo.addons.base.tests.common import BaseCommon 4 | 5 | 6 | class TestModelReviewBase(BaseCommon): 7 | @classmethod 8 | def setUpClass(cls): 9 | super().setUpClass() 10 | cls.review = cls.env["mgmtsystem.review"].create( 11 | {"name": "SampleReview", "date": fields.Datetime.now()} 12 | ) 13 | 14 | 15 | class TestModelReview(TestModelReviewBase): 16 | """Test class for mgmtsystem_review.""" 17 | 18 | def test_review_misc(self): 19 | self.assertNotEqual(self.review.reference, "NEW") 20 | self.review.button_close() 21 | self.assertEqual(self.review.state, "done") 22 | res = self.env["ir.actions.report"]._render( 23 | "mgmtsystem_review.review_report_template", self.review.ids 24 | ) 25 | self.assertRegex(str(res[0]), "SampleReview") 26 | -------------------------------------------------------------------------------- /.copier-answers.yml: -------------------------------------------------------------------------------- 1 | # Do NOT update manually; changes here will be overwritten by Copier 2 | _commit: v1.34 3 | _src_path: git+https://github.com/OCA/oca-addons-repo-template 4 | additional_ruff_rules: [] 5 | ci: GitHub 6 | convert_readme_fragments_to_markdown: true 7 | enable_checklog_odoo: true 8 | generate_requirements_txt: true 9 | github_check_license: true 10 | github_ci_extra_env: {} 11 | github_enable_codecov: true 12 | github_enable_makepot: true 13 | github_enable_stale_action: true 14 | github_enforce_dev_status_compatibility: true 15 | include_wkhtmltopdf: false 16 | odoo_test_flavor: Both 17 | odoo_version: 18.0 18 | org_name: Odoo Community Association (OCA) 19 | org_slug: OCA 20 | rebel_module_groups: [] 21 | repo_description: management-system 22 | repo_name: management-system 23 | repo_slug: management-system 24 | repo_website: https://github.com/OCA/management-system 25 | use_pyproject_toml: true 26 | use_ruff: true 27 | 28 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hazard/views/mgmtsystem_hazard.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | mgmtsystem.hazard.form (in mgmtsystem_nonconformity_hazard) 9 | mgmtsystem.hazard 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /mgmtsystem_action_template/views/mgmtsystem_action_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | view.mgmtsystem.action 10 | mgmtsystem.action 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /mgmtsystem_action_efficacy/tests/test_efficacy.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 4 | 5 | from odoo import _ 6 | from odoo.exceptions import ValidationError 7 | from odoo.tests import common 8 | 9 | 10 | class TestActionEfficacy(common.TransactionCase): 11 | def test_change_efficacy(self): 12 | record = self.env["mgmtsystem.action"].search([])[0] 13 | 14 | record.efficacy_value = 50 15 | record._onchange_efficacy_value() 16 | self.assertEqual(50, record.efficacy_value) 17 | 18 | with self.assertRaises(ValidationError) as e: 19 | record.efficacy_value = 200 20 | record._onchange_efficacy_value() 21 | 22 | self.assertIn(_("Rating must be between 0 and 100"), str(e.exception)) 23 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2019 Marcelo Frare (Ass. PNLUG - Gruppo Odoo ) 2 | # Copyright 2019 Stefano Consolaro (Ass. PNLUG - Gruppo Odoo ) 3 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 4 | 5 | { 6 | "name": "Management System - Nonconformity MRP", 7 | "summary": "Bridge module between mrp and mgmsystem", 8 | "version": "18.0.1.0.0", 9 | "development_status": "Beta", 10 | "author": "Associazione PNLUG - Gruppo Odoo, Odoo Community Association (OCA)", 11 | "website": "https://github.com/OCA/management-system", 12 | "license": "AGPL-3", 13 | "category": "Management System", 14 | "depends": [ 15 | "mgmtsystem_nonconformity", 16 | "mrp", 17 | ], 18 | "data": [ 19 | "views/mgmtsystem_nonconformity_views.xml", 20 | ], 21 | "application": False, 22 | "installable": True, 23 | "auto_install": True, 24 | } 25 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/views/mgmtsystem_nonconformity_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | view.mgmtsystem.nonconformity.product 9 | mgmtsystem.nonconformity 10 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /mgmtsystem_review_objective/views/mgmtsystem_indicator_value.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | mgmtsystem.indicator.value 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | Review Objectives 17 | mgmtsystem.indicator.value 18 | pivot 19 | 20 | 21 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/hu.po: -------------------------------------------------------------------------------- 1 | # Translation of OpenERP Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_quality_manual 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: OpenERP Server 6.0dev\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 10 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 11 | "Last-Translator: Krisztian Eyssen \n" 12 | "Language-Team: \n" 13 | "Language: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 18 | "X-Generator: Launchpad (build 16985)\n" 19 | 20 | #~ msgid "" 21 | #~ "Quality Manual Template\n" 22 | #~ " " 23 | #~ msgstr "" 24 | #~ "Minőségi kézikönyv sablon\n" 25 | #~ " " 26 | 27 | #~ msgid "Document Management - Wiki - Quality Manual" 28 | #~ msgstr "Dokumentum menedzsment - Wiki - Minőségi kézikönyv" 29 | -------------------------------------------------------------------------------- /mgmtsystem_hazard/demo/mgmtsystem_hazard_hazard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Spilling 7 | 8 | 9 | 10 | Fire / Explosion 11 | 12 | 13 | 14 | Intoxication 15 | 16 | 17 | 18 | Breakage 19 | 20 | 21 | 22 | Electric Bilge 23 | 24 | 25 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/views/mgmtsystem_nonconformity_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | view.mgmtsystem.nonconformity.department 8 | mgmtsystem.nonconformity 9 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_type/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | This module add classification for the Nonconformity of Management 2 | System module. 3 | 4 | Nonconformity (NC) 5 | 6 | - Type: add a field to classify a NC in Internal, Partner, Customer, External. 7 | - Internal: when the NC is due and revealed in an internal process 8 | - Partner: when the NC is due to a Partner 9 | - Customer: when the NC si due and connected to a claim of the 10 | Customer 11 | - External: when the NC si due and connected to a claim of an External 12 | entity (e.g. an Authority) 13 | 14 | - Add a button to send an email to the Partner associated with the Nonconformity: 15 | to do this, mgmtsystem_nonconformity_partner has to be installed and 16 | a Partner's Contact of type Quality has to be set 17 | 18 | - Quantity checked (qty-ck) and not compliant (qty-nc): a check is 19 | performed on the quantity to ensure that qty-nc isn't greater than 20 | qty-ck and in case perform an auto-set. 21 | -------------------------------------------------------------------------------- /mgmtsystem_review/security/mgmtsystem_review_security.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | mgmtsystem_review multi-company 7 | 8 | 9 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 12 | 13 | 14 | 15 | mgmtsystem_review_line multi-company 16 | 17 | 18 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 21 | 22 | 23 | -------------------------------------------------------------------------------- /mgmtsystem_review/models/mgmtsystem_review_line.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemReviewLine(models.Model): 8 | _name = "mgmtsystem.review.line" 9 | _description = "Review Line" 10 | 11 | name = fields.Char("Title", size=300, required=True) 12 | type = fields.Selection([("action", "Action"), ("nonconformity", "Nonconformity")]) 13 | action_id = fields.Many2one("mgmtsystem.action", "Action", index=True) 14 | nonconformity_id = fields.Many2one( 15 | "mgmtsystem.nonconformity", "Nonconformity", index=True 16 | ) 17 | decision = fields.Text() 18 | review_id = fields.Many2one( 19 | "mgmtsystem.review", "Review", ondelete="cascade", index=True 20 | ) 21 | company_id = fields.Many2one( 22 | "res.company", "Company", default=lambda self: self.env.company 23 | ) 24 | -------------------------------------------------------------------------------- /mgmtsystem_audit/security/mgmtsystem_audit_security.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | mgmtsystem_audit multi-company 7 | 8 | 9 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 12 | 13 | 14 | 15 | mgmtsystem_verification_line multi-company 16 | 17 | 18 | ['|', ('company_id', '=', False), ('company_id', 'in', company_ids)] 21 | 22 | 23 | -------------------------------------------------------------------------------- /document_page_work_instruction/i18n/document_page_work_instruction.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_work_instruction 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: document_page_work_instruction 17 | #: model:ir.actions.act_window,name:document_page_work_instruction.work_instructions_action 18 | #: model:ir.ui.menu,name:document_page_work_instruction.menu_mgmtsystem_manuals_work_instructions 19 | msgid "Work Instructions" 20 | msgstr "" 21 | 22 | #. module: document_page_work_instruction 23 | #: model_terms:ir.actions.act_window,help:document_page_work_instruction.work_instructions_action 24 | msgid "Work instructions of your management system." 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /document_page_environment_manual/i18n/sl.po: -------------------------------------------------------------------------------- 1 | # Translation of OpenERP Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_environment_manual 4 | # 5 | # Matjaž Mozetič , 2015. 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: OpenERP Server 6.1-dev\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-02-22 20:40+0000\n" 11 | "PO-Revision-Date: 2015-05-04 17:15+0100\n" 12 | "Last-Translator: Matjaž Mozetič \n" 13 | "Language-Team: Slovenian \n" 14 | "Language: sl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: \n" 18 | "Plural-Forms: \n" 19 | "X-Generator: Lokalize 2.0\n" 20 | 21 | #~ msgid "Document Management - Wiki - Environment Manual" 22 | #~ msgstr "Upravljanje dokumentov - Wiki - Okoljski vodič" 23 | 24 | #~ msgid "" 25 | #~ "Environment Manual Template\n" 26 | #~ " " 27 | #~ msgstr "" 28 | #~ "Predloga za okoljski vodič\n" 29 | #~ " " 30 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/vi.po: -------------------------------------------------------------------------------- 1 | # Vietnamese translation for openerp-mgmtsystem 2 | # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014 3 | # This file is distributed under the same license as the openerp-mgmtsystem package. 4 | # FIRST AUTHOR , 2014. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openerp-mgmtsystem\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-07-25 18:17+0000\n" 11 | "PO-Revision-Date: 2014-03-05 05:48+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Vietnamese \n" 14 | "Language: vi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of OpenERP Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_quality_manual 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: OpenERP Server 6.0dev\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 10 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 11 | "Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) \n" 13 | "Language-Team: \n" 14 | "Language: \n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Modèle de manuel qualité\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Gestion documentaire - Wiki - Manuel Qualité" 30 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/fa.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2024-05-29 11:34+0000\n" 10 | "Last-Translator: Mostafa Barmshory \n" 11 | "Language-Team: none\n" 12 | "Language: fa\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_hr 20 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 21 | msgid "Department" 22 | msgstr "بخش" 23 | 24 | #. module: mgmtsystem_nonconformity_hr 25 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 26 | msgid "Nonconformity" 27 | msgstr "عدم تطابق" 28 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/pt.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 13.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2021-11-26 15:36+0000\n" 10 | "Last-Translator: Daniel Reis \n" 11 | "Language-Team: none\n" 12 | "Language: pt\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 4.3.2\n" 18 | 19 | #. module: mgmtsystem_nonconformity_hr 20 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 21 | msgid "Department" 22 | msgstr "Departamento" 23 | 24 | #. module: mgmtsystem_nonconformity_hr 25 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 26 | msgid "Nonconformity" 27 | msgstr "Não conformidade" 28 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 11.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2022-11-03 13:44+0000\n" 10 | "Last-Translator: mymage \n" 11 | "Language-Team: none\n" 12 | "Language: it\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Weblate 4.14.1\n" 18 | 19 | #. module: mgmtsystem_survey 20 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 21 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 22 | msgid "Surveys" 23 | msgstr "Sondaggi" 24 | 25 | #~ msgid "Management System" 26 | #~ msgstr "Sistema di gestione" 27 | 28 | #~ msgid "Survey" 29 | #~ msgstr "Sondaggio" 30 | 31 | #~ msgid "Survey Stage" 32 | #~ msgstr "Fase sondaggio" 33 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/de.po: -------------------------------------------------------------------------------- 1 | # Translation of OpenERP Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_quality_manual 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: OpenERP Server 6.0dev\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 10 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 11 | "Last-Translator: Thorsten Vocks (OpenBig.org) \n" 13 | "Language-Team: German \n" 14 | "Language: de\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Qualität Handbuch Vorlage\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Dokument Management - Wiki - Qualitätssicherungs Handbuch" 30 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2023-07-07 14:10+0000\n" 10 | "Last-Translator: Ivorra78 \n" 11 | "Language-Team: none\n" 12 | "Language: es\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_hr 20 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 21 | msgid "Department" 22 | msgstr "Departamento" 23 | 24 | #. module: mgmtsystem_nonconformity_hr 25 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 26 | msgid "Nonconformity" 27 | msgstr "Disconformidad" 28 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2023-12-01 18:34+0000\n" 10 | "Last-Translator: yassine-rhimi \n" 11 | "Language-Team: none\n" 12 | "Language: fr\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_hr 20 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 21 | msgid "Department" 22 | msgstr "Département" 23 | 24 | #. module: mgmtsystem_nonconformity_hr 25 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 26 | msgid "Nonconformity" 27 | msgstr "Non-conformité" 28 | -------------------------------------------------------------------------------- /mgmtsystem_partner/i18n/mgmtsystem_partner.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_partner 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: mgmtsystem_partner 17 | #: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_partner__type 18 | #: model:ir.model.fields,field_description:mgmtsystem_partner.field_res_users__type 19 | msgid "Address Type" 20 | msgstr "" 21 | 22 | #. module: mgmtsystem_partner 23 | #: model:ir.model,name:mgmtsystem_partner.model_res_partner 24 | msgid "Contact" 25 | msgstr "" 26 | 27 | #. module: mgmtsystem_partner 28 | #: model:ir.model.fields.selection,name:mgmtsystem_partner.selection__res_partner__type__quality 29 | msgid "Quality Address" 30 | msgstr "" 31 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/th.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" 15 | "Language: th\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=1; plural=0;\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | 27 | #~ msgid "Management System" 28 | #~ msgstr "ระบบบริหารจัดการ" 29 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | { 4 | "name": "Hazard Risk", 5 | "version": "18.0.1.2.0", 6 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 7 | "website": "https://github.com/OCA/management-system", 8 | "license": "AGPL-3", 9 | "category": "Management System", 10 | "depends": ["mgmtsystem_hazard", "hr"], 11 | "data": [ 12 | "security/ir.model.access.csv", 13 | "security/mgmtsystem_hazard_security.xml", 14 | "data/mgmtsystem_hazard_risk_computation.xml", 15 | "data/mgmtsystem_hazard_risk_type.xml", 16 | "views/mgmtsystem_hazard.xml", 17 | "views/mgmtsystem_hazard_risk_type.xml", 18 | "views/mgmtsystem_hazard_risk_computation.xml", 19 | "views/mgmtsystem_hazard_residual_risk.xml", 20 | "views/res_config_settings_views.xml", 21 | ], 22 | "installable": True, 23 | } 24 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_mrp 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2023-07-07 14:10+0000\n" 10 | "Last-Translator: Ivorra78 \n" 11 | "Language-Team: none\n" 12 | "Language: es\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_mrp 20 | #: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity 21 | msgid "Nonconformity" 22 | msgstr "Disconformidad" 23 | 24 | #. module: mgmtsystem_nonconformity_mrp 25 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id 26 | msgid "Workcenter" 27 | msgstr "Centro de trabajo" 28 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/i18n/fr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_mrp 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2023-12-01 18:34+0000\n" 10 | "Last-Translator: yassine-rhimi \n" 11 | "Language-Team: none\n" 12 | "Language: fr\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_mrp 20 | #: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity 21 | msgid "Nonconformity" 22 | msgstr "Non-conformité" 23 | 24 | #. module: mgmtsystem_nonconformity_mrp 25 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id 26 | msgid "Workcenter" 27 | msgstr "Poste de travail" 28 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/tr.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" 15 | "Language: tr\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n > 1);\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | 27 | #~ msgid "Management System" 28 | #~ msgstr "Yönetim Sistemi" 29 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/fi.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" 15 | "Language: fi\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | 27 | #~ msgid "Management System" 28 | #~ msgstr "Johtamisjärjestelmä" 29 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/pt.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" 15 | "Language: pt\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | 27 | #~ msgid "Management System" 28 | #~ msgstr "Sistema de gestão" 29 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/i18n/es.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_product 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2023-07-07 17:10+0000\n" 10 | "Last-Translator: Ivorra78 \n" 11 | "Language-Team: none\n" 12 | "Language: es\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_product 20 | #: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity 21 | msgid "Nonconformity" 22 | msgstr "Disconformidad" 23 | 24 | #. module: mgmtsystem_nonconformity_product 25 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id 26 | msgid "Product" 27 | msgstr "Producto" 28 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/i18n/fa.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_product 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 16.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2024-05-29 15:34+0000\n" 10 | "Last-Translator: Mostafa Barmshory \n" 11 | "Language-Team: none\n" 12 | "Language: fa\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 4.17\n" 18 | 19 | #. module: mgmtsystem_nonconformity_product 20 | #: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity 21 | msgid "Nonconformity" 22 | msgstr "عدم تطابق" 23 | 24 | #. module: mgmtsystem_nonconformity_product 25 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id 26 | msgid "Product" 27 | msgstr "محصول" 28 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/hu.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" 15 | "Language: hu\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 20 | 21 | #. module: mgmtsystem_survey 22 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 23 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 24 | msgid "Surveys" 25 | msgstr "" 26 | 27 | #~ msgid "Management System" 28 | #~ msgstr "Menedzsment rendszer" 29 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/i18n/document_page_environmental_aspect.pot: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * document_page_environmental_aspect 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 18.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "Last-Translator: \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: \n" 14 | "Plural-Forms: \n" 15 | 16 | #. module: document_page_environmental_aspect 17 | #: model:ir.actions.act_window,name:document_page_environmental_aspect.action_environmental_aspects 18 | #: model:ir.ui.menu,name:document_page_environmental_aspect.menu_mgmtsystem_manuals_environmental_aspects 19 | msgid "Environmental Aspects" 20 | msgstr "" 21 | 22 | #. module: document_page_environmental_aspect 23 | #: model_terms:ir.actions.act_window,help:document_page_environmental_aspect.action_environmental_aspects 24 | msgid "Environmental aspects of your management system." 25 | msgstr "" 26 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_product/i18n/pt_BR.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_nonconformity_product 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 13.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "PO-Revision-Date: 2020-07-10 17:19+0000\n" 10 | "Last-Translator: Fernando Colus \n" 11 | "Language-Team: none\n" 12 | "Language: pt_BR\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: \n" 16 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 17 | "X-Generator: Weblate 3.10\n" 18 | 19 | #. module: mgmtsystem_nonconformity_product 20 | #: model:ir.model,name:mgmtsystem_nonconformity_product.model_mgmtsystem_nonconformity 21 | msgid "Nonconformity" 22 | msgstr "Não Conformidade" 23 | 24 | #. module: mgmtsystem_nonconformity_product 25 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_product.field_mgmtsystem_nonconformity__product_id 26 | msgid "Product" 27 | msgstr "Produto" 28 | -------------------------------------------------------------------------------- /mgmtsystem_objective/models/mgmtsystem_objective.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 Dixmit 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | from odoo import fields, models 5 | 6 | 7 | class MgmtsystemObjective(models.Model): 8 | _name = "mgmtsystem.objective" 9 | _inherit = ["mail.thread", "mail.activity.mixin"] 10 | _description = "Objective" 11 | 12 | name = fields.Char(required=True) 13 | system_id = fields.Many2one("mgmtsystem.system") 14 | description = fields.Html() 15 | user_id = fields.Many2one("res.users", string="Owner") 16 | date_start = fields.Date() 17 | date_end = fields.Date() 18 | state = fields.Selection( 19 | [ 20 | ("draft", "Draft"), 21 | ("in_progress", "In Progress"), 22 | ("reached", "Reached"), 23 | ("not_reached", "Not Reached"), 24 | ("cancelled", "Cancelled"), 25 | ], 26 | default="draft", 27 | required=True, 28 | ) 29 | indicator_ids = fields.One2many("mgmtsystem.indicator", "objective_id") 30 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/nn.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Norwegian Nynorsk (https://www.transifex.com/oca/teams/23907/" 15 | "nn/)\n" 16 | "Language: nn\n" 17 | "MIME-Version: 1.0\n" 18 | "Content-Type: text/plain; charset=UTF-8\n" 19 | "Content-Transfer-Encoding: \n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | 22 | #. module: mgmtsystem_survey 23 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 24 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 25 | msgid "Surveys" 26 | msgstr "" 27 | 28 | #~ msgid "Management System" 29 | #~ msgstr "Styringssystem" 30 | -------------------------------------------------------------------------------- /mgmtsystem_audit/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 Savoir-faire Linux (). 2 | # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). 3 | { 4 | "name": "Management System - Audit", 5 | "version": "18.0.1.1.0", 6 | "author": "Savoir-faire Linux, Odoo Community Association (OCA)", 7 | "website": "https://github.com/OCA/management-system", 8 | "license": "AGPL-3", 9 | "category": "Management System", 10 | "depends": ["mgmtsystem_nonconformity", "base_automation"], 11 | "data": [ 12 | "security/ir.model.access.csv", 13 | "security/mgmtsystem_audit_security.xml", 14 | "data/audit_sequence.xml", 15 | "data/audit_automated_actions.xml", 16 | "views/mgmtsystem_audit.xml", 17 | "views/res_users.xml", 18 | "report/audit.xml", 19 | "report/verification.xml", 20 | "report/report.xml", 21 | "report/mgmtsystem_audit_pivot.xml", 22 | "wizard/copy_verification_lines.xml", 23 | ], 24 | "demo": ["demo/demo_audit.xml"], 25 | } 26 | -------------------------------------------------------------------------------- /mgmtsystem_hazard_risk/data/mgmtsystem_hazard_risk_type.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Physical 7 | 8 | 9 | 10 | 11 | Chemical 12 | 13 | 14 | 15 | 16 | Fire 17 | 18 | 19 | 20 | 25 | Environment 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_hr/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_extended_hr 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 11.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2019-10-20 11:55+0000\n" 10 | "PO-Revision-Date: 2024-04-02 11:36+0000\n" 11 | "Last-Translator: mymage \n" 12 | "Language-Team: \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Weblate 4.17\n" 19 | 20 | #. module: mgmtsystem_nonconformity_hr 21 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_hr.field_mgmtsystem_nonconformity__department_id 22 | msgid "Department" 23 | msgstr "Reparto" 24 | 25 | #. module: mgmtsystem_nonconformity_hr 26 | #: model:ir.model,name:mgmtsystem_nonconformity_hr.model_mgmtsystem_nonconformity 27 | msgid "Nonconformity" 28 | msgstr "Non conformità" 29 | -------------------------------------------------------------------------------- /document_page_environment_manual/i18n/sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for openerp-mgmtsystem 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the openerp-mgmtsystem package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openerp-mgmtsystem\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-02-22 20:40+0000\n" 11 | "PO-Revision-Date: 2012-12-03 16:04+0000\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: Swedish \n" 14 | "Language: sv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "Document Management - Wiki - Environment Manual" 22 | #~ msgstr "Dokumenthantering - Wiki - Miljö Manual" 23 | 24 | #~ msgid "" 25 | #~ "Environment Manual Template\n" 26 | #~ " " 27 | #~ msgstr "" 28 | #~ "Miljö Manual Mall\n" 29 | #~ " " 30 | -------------------------------------------------------------------------------- /document_page_environmental_aspect/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # OpenERP, Open Source Management Solution 4 | # Copyright (C) 2010 Savoir-faire Linux (). 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | ############################################################################## 20 | -------------------------------------------------------------------------------- /document_page_health_safety_manual/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # OpenERP, Open Source Management Solution 4 | # Copyright (C) 2010 Savoir-faire Linux (). 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | ############################################################################## 20 | -------------------------------------------------------------------------------- /mgmtsystem_info_security_manual/__init__.py: -------------------------------------------------------------------------------- 1 | ############################################################################## 2 | # 3 | # OpenERP, Open Source Management Solution 4 | # Copyright (C) 2010 Savoir-faire Linux (). 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | ############################################################################## 20 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/mn.po: -------------------------------------------------------------------------------- 1 | # Mongolian translation for openobject-addons 2 | # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 11 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 12 | "Last-Translator: ub121 \n" 13 | "Language-Team: Mongolian \n" 14 | "Language: mn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Чанарын удирдамжийн загвар\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Баримтын удирдлага - Вики - Чанарын удирдамж" 30 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/views/mgmtsystem_nonconformity_views.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 9 | view.mgmtsystem.nonconformity.department 10 | mgmtsystem.nonconformity 11 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /mgmtsystem_objective/__manifest__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2025 Dixmit 2 | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). 3 | 4 | { 5 | "name": "Mgmtsystem Objective", 6 | "summary": """Define objectives on your management system""", 7 | "version": "18.0.1.0.1", 8 | "license": "AGPL-3", 9 | "author": "Dixmit,Odoo Community Association (OCA)", 10 | "website": "https://github.com/OCA/management-system", 11 | "depends": ["mgmtsystem", "mail", "uom"], 12 | "data": [ 13 | "security/ir.model.access.csv", 14 | "security/security.xml", 15 | "views/mgmtsystem_indicator_value.xml", 16 | "views/mgmtsystem_indicator.xml", 17 | "views/mgmtsystem_objective.xml", 18 | ], 19 | "demo": [ 20 | "demo/mgmtsystem_objective.xml", 21 | ], 22 | "assets": { 23 | "web.assets_backend": [ 24 | "mgmtsystem_objective/static/src/**/*.esm.js", 25 | ], 26 | "web.assets_unit_tests": [ 27 | "mgmtsystem_objective/static/tests/**/*.test.js", 28 | ], 29 | }, 30 | } 31 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/ro.po: -------------------------------------------------------------------------------- 1 | # Romanian translation for openobject-addons 2 | # Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2012. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 11 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 12 | "Last-Translator: ERPSystems.ro \n" 13 | "Language-Team: Romanian \n" 14 | "Language: ro\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Sablon Manual al Calitatii\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Managementul Documentelor - Wiki - Manualul calitatii" 30 | -------------------------------------------------------------------------------- /mgmtsystem_nonconformity_mrp/i18n/it.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_extended_mrp 4 | # 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: Odoo Server 11.0\n" 8 | "Report-Msgid-Bugs-To: \n" 9 | "POT-Creation-Date: 2019-10-20 11:55+0000\n" 10 | "PO-Revision-Date: 2024-04-02 11:36+0000\n" 11 | "Last-Translator: mymage \n" 12 | "Language-Team: \n" 13 | "Language: it\n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 18 | "X-Generator: Weblate 4.17\n" 19 | 20 | #. module: mgmtsystem_nonconformity_mrp 21 | #: model:ir.model,name:mgmtsystem_nonconformity_mrp.model_mgmtsystem_nonconformity 22 | msgid "Nonconformity" 23 | msgstr "Non conformità" 24 | 25 | #. module: mgmtsystem_nonconformity_mrp 26 | #: model:ir.model.fields,field_description:mgmtsystem_nonconformity_mrp.field_mgmtsystem_nonconformity__workcenter_id 27 | msgid "Workcenter" 28 | msgstr "Centro di lavoro" 29 | -------------------------------------------------------------------------------- /mgmtsystem_survey/i18n/lv.po: -------------------------------------------------------------------------------- 1 | # Translation of Odoo Server. 2 | # This file contains the translation of the following modules: 3 | # * mgmtsystem_survey 4 | # 5 | # Translators: 6 | # OCA Transbot , 2016 7 | msgid "" 8 | msgstr "" 9 | "Project-Id-Version: Odoo Server 9.0c\n" 10 | "Report-Msgid-Bugs-To: \n" 11 | "POT-Creation-Date: 2016-08-04 02:45+0000\n" 12 | "PO-Revision-Date: 2016-08-04 02:45+0000\n" 13 | "Last-Translator: OCA Transbot , 2016\n" 14 | "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" 15 | "Language: lv\n" 16 | "MIME-Version: 1.0\n" 17 | "Content-Type: text/plain; charset=UTF-8\n" 18 | "Content-Transfer-Encoding: \n" 19 | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " 20 | "2);\n" 21 | 22 | #. module: mgmtsystem_survey 23 | #: model:ir.actions.act_window,name:mgmtsystem_survey.action_survey_form 24 | #: model:ir.ui.menu,name:mgmtsystem_survey.menu_open_survey 25 | msgid "Surveys" 26 | msgstr "" 27 | 28 | #~ msgid "Management System" 29 | #~ msgstr "Vadības sistēma" 30 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/da.po: -------------------------------------------------------------------------------- 1 | # Danish translation for openobject-addons 2 | # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 11 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 12 | "Last-Translator: Martin Pihl \n" 13 | "Language-Team: Danish \n" 14 | "Language: da\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Skabelon til kvalitetsmanual\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Dokument administration - Wiki - Kvalitetsmanual" 30 | -------------------------------------------------------------------------------- /document_page_quality_manual/i18n/sv.po: -------------------------------------------------------------------------------- 1 | # Swedish translation for openobject-addons 2 | # Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 3 | # This file is distributed under the same license as the openobject-addons package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: openobject-addons\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2011-01-11 11:16+0000\n" 11 | "PO-Revision-Date: 2012-10-31 00:48+0000\n" 12 | "Last-Translator: Anders Wallenquist \n" 13 | "Language-Team: Swedish \n" 14 | "Language: sv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Launchpad-Export-Date: 2014-04-24 06:29+0000\n" 19 | "X-Generator: Launchpad (build 16985)\n" 20 | 21 | #~ msgid "" 22 | #~ "Quality Manual Template\n" 23 | #~ " " 24 | #~ msgstr "" 25 | #~ "Kvalitetsmanual mall\n" 26 | #~ " " 27 | 28 | #~ msgid "Document Management - Wiki - Quality Manual" 29 | #~ msgstr "Dokumenthantering - Wiki - Kvalitetsmanual" 30 | --------------------------------------------------------------------------------