-
-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by pedrobaeza
- Loading branch information
Showing
45 changed files
with
3,711 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
======================================= | ||
MRP extension for quality control (OCA) | ||
======================================= | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:b443f8480964e8dfd7d279284bb7bf75e74b7a10f63c943321af023ef0efd8d4 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Beta | ||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github | ||
:target: https://github.com/OCA/manufacture/tree/16.0/quality_control_mrp_oca | ||
:alt: OCA/manufacture | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-quality_control_mrp_oca | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=16.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module defines a trigger that creates quality control inspections when a | ||
production order is finished. | ||
|
||
It also adds the shortcuts related to these inspections on production orders. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20quality_control_mrp_oca%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* OdooMRP team | ||
* AvanzOSC | ||
* Serv. Tecnol. Avanzados - Pedro M. Baeza | ||
* Agile Business Group | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es> | ||
* Simone Rubino <simone.rubino@agilebg.com> | ||
* `Tecnativa <https://www.tecnativa.com>`_: | ||
|
||
* Pedro M. Baeza | ||
* Carlos Roca | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
OCA, or the Odoo Community Association, is a nonprofit organization whose | ||
mission is to support the collaborative development of Odoo features and | ||
promote its widespread use. | ||
|
||
This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/16.0/quality_control_mrp_oca>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza | ||
# Copyright 2014 Oihane Crucelaegui - AvanzOSC | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
|
||
{ | ||
"name": "MRP extension for quality control (OCA)", | ||
"version": "16.0.1.0.0", | ||
"category": "Quality control", | ||
"license": "AGPL-3", | ||
"author": "OdooMRP team, " | ||
"AvanzOSC, " | ||
"Serv. Tecnol. Avanzados - Pedro M. Baeza, " | ||
"Agile Business Group, " | ||
"Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/manufacture", | ||
"depends": ["quality_control_oca", "quality_control_stock_oca", "mrp"], | ||
"data": [ | ||
"data/quality_control_mrp_data.xml", | ||
"views/qc_inspection_view.xml", | ||
"views/mrp_production_view.xml", | ||
], | ||
"installable": True, | ||
"auto_install": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!-- Copyright 2018 Simone Rubino - Agile Business Group | ||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). --> | ||
<odoo> | ||
<record model="qc.trigger" id="qc_trigger_mrp"> | ||
<field name="name">Production done</field> | ||
<field name="company_id" /> | ||
</record> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * quality_control_mrp | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: manufacture (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-03-02 11:36+0000\n" | ||
"PO-Revision-Date: 2021-03-02 12:39+0100\n" | ||
"Last-Translator: Carlos <carlos.roca@tecnativa.com>\n" | ||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-manufacture-8-0/" | ||
"language/ca/)\n" | ||
"Language: ca\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||
"X-Generator: Poedit 2.0.6\n" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__created_inspections | ||
msgid "Created inspections" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__display_name | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__display_name | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__id | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__id | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__qc_inspections_ids | ||
msgid "Inspections" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,help:quality_control_mrp_oca.field_mrp_production__qc_inspections_ids | ||
msgid "Inspections related to this production." | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production____last_update | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection____last_update | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__production_id | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.qc_inspection_search_view_production | ||
msgid "Production" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_mrp_production | ||
#, fuzzy | ||
msgid "Production Order" | ||
msgstr "Producte" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:qc.trigger,name:quality_control_mrp_oca.qc_trigger_mrp | ||
msgid "Production done" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__production_id | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.qc_inspection_line_search_production_view | ||
msgid "Production order" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_qc_inspection | ||
msgid "Quality control inspection" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_qc_inspection_line | ||
msgid "Quality control inspection line" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.actions.act_window,name:quality_control_mrp_oca.action_qc_inspection_per_production | ||
msgid "Quality inspections from production order" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.mrp_production_qc_view | ||
msgid "inspections" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * quality_control_mrp | ||
# | ||
# Translators: | ||
# Dorin Hongu <dhongu@gmail.com>, 2015 | ||
# Rudolf Schnapka <rs@techno-flex.de>, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: manufacture (8.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2021-03-02 11:36+0000\n" | ||
"PO-Revision-Date: 2021-03-02 12:39+0100\n" | ||
"Last-Translator: Carlos <carlos.roca@tecnativa.com>\n" | ||
"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-8-0/" | ||
"language/de/)\n" | ||
"Language: de\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Poedit 2.0.6\n" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__created_inspections | ||
msgid "Created inspections" | ||
msgstr "Erstellte Prüfungen" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__display_name | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__display_name | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__id | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__id | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production__qc_inspections_ids | ||
msgid "Inspections" | ||
msgstr "Prüfungen" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,help:quality_control_mrp_oca.field_mrp_production__qc_inspections_ids | ||
msgid "Inspections related to this production." | ||
msgstr "Prüfungen mit Bezug auf diese Fertigung." | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_mrp_production____last_update | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection____last_update | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection__production_id | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.qc_inspection_search_view_production | ||
msgid "Production" | ||
msgstr "Fertigung" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_mrp_production | ||
#, fuzzy | ||
msgid "Production Order" | ||
msgstr "Fertigungsauftrag" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:qc.trigger,name:quality_control_mrp_oca.qc_trigger_mrp | ||
msgid "Production done" | ||
msgstr "Fertigung abgeschlossen" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model.fields,field_description:quality_control_mrp_oca.field_qc_inspection_line__production_id | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.qc_inspection_line_search_production_view | ||
msgid "Production order" | ||
msgstr "Fertigungsauftrag" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_qc_inspection | ||
msgid "Quality control inspection" | ||
msgstr "Qualitätskontrollinspektion" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.model,name:quality_control_mrp_oca.model_qc_inspection_line | ||
msgid "Quality control inspection line" | ||
msgstr "Qualitätskontroll-Prüfposition" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model:ir.actions.act_window,name:quality_control_mrp_oca.action_qc_inspection_per_production | ||
msgid "Quality inspections from production order" | ||
msgstr "Qualitätsprüfungen aus Fertigungsauftrag" | ||
|
||
#. module: quality_control_mrp_oca | ||
#: model_terms:ir.ui.view,arch_db:quality_control_mrp_oca.mrp_production_qc_view | ||
msgid "inspections" | ||
msgstr "Prüfungen" |
Oops, something went wrong.