mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
82
quality_control_mrp/README.rst
Normal file
82
quality_control_mrp/README.rst
Normal file
@@ -0,0 +1,82 @@
|
||||
=================================
|
||||
MRP extension for quality control
|
||||
=================================
|
||||
|
||||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/manufacture/tree/11.0/quality_control_mrp
|
||||
:alt: OCA/manufacture
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/manufacture-10-0/manufacture-11-0-quality_control_mrp
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/129/11.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|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 smashing it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20quality_control_mrp%0Aversion:%2010.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
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Simone Rubino <simone.rubino@agilebg.com>
|
||||
* Ignacio Ales <ignacio.ales@guadaltech.es>
|
||||
|
||||
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/11.0/quality_control_mrp>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
3
quality_control_mrp/__init__.py
Normal file
3
quality_control_mrp/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
||||
29
quality_control_mrp/__manifest__.py
Normal file
29
quality_control_mrp/__manifest__.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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",
|
||||
"version": "11.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/tree/11.0/"
|
||||
"quality_control_mrp",
|
||||
"depends": [
|
||||
"quality_control",
|
||||
"quality_control_stock",
|
||||
"mrp"
|
||||
],
|
||||
"data": [
|
||||
'data/quality_control_mrp_data.xml',
|
||||
'views/qc_inspection_view.xml',
|
||||
'views/mrp_production_view.xml',
|
||||
],
|
||||
"installable": True,
|
||||
"auto_install": True,
|
||||
}
|
||||
14
quality_control_mrp/data/quality_control_mrp_data.xml
Normal file
14
quality_control_mrp/data/quality_control_mrp_data.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?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>
|
||||
|
||||
<record id="req_link_mrp_production" model="res.request.link">
|
||||
<field name="name">Manufacturing Order</field>
|
||||
<field name="object">mrp.production</field>
|
||||
</record>
|
||||
</odoo>
|
||||
83
quality_control_mrp/i18n/ca.po
Normal file
83
quality_control_mrp/i18n/ca.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-17 18:48+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\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: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Producte"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
85
quality_control_mrp/i18n/de.po
Normal file
85
quality_control_mrp/i18n/de.po
Normal file
@@ -0,0 +1,85 @@
|
||||
# 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: 2017-04-24 14:00+0000\n"
|
||||
"PO-Revision-Date: 2017-03-24 14:12+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\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: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr "Erstellte Prüfungen"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Prüfungen"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Prüfungen mit Bezug auf diese Fertigung."
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Fertigungsauftrag"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Fertigung"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Fertigung abgeschlossen"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Fertigungsauftrag"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Prüfung der Qualitätskontrolle"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Qualitätskontroll-Prüfposition"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Qualitätsprüfungen aus Fertigungsauftrag"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "Prüfungen"
|
||||
83
quality_control_mrp/i18n/el_GR.po
Normal file
83
quality_control_mrp/i18n/el_GR.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Προϊόν"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
86
quality_control_mrp/i18n/es.po
Normal file
86
quality_control_mrp/i18n/es.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# Hotellook, 2014
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-16 09:04+0000\n"
|
||||
"PO-Revision-Date: 2016-11-11 18:07+0000\n"
|
||||
"Last-Translator: Pedro M. Baeza <pedro.baeza@gmail.com>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr "Inspecciones creadas"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Inspecciones"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Inspecciones relativas a esta producción."
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Órden de producción"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Producción"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Producción realizada"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Orden de producción"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspección del control de calidad"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Línea de inspección de control de calidad"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Inspecciones de calidad desde la orden de fabricación"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "inspecciones"
|
||||
83
quality_control_mrp/i18n/es_ES.po
Normal file
83
quality_control_mrp/i18n/es_ES.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-13 07:41+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Producto"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/es_MX.po
Normal file
83
quality_control_mrp/i18n/es_MX.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-12-03 03:19+0000\n"
|
||||
"PO-Revision-Date: 2016-12-05 09:29+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Orden de fabricación"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/eu.po
Normal file
83
quality_control_mrp/i18n/eu.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-02-23 09:33+0000\n"
|
||||
"PO-Revision-Date: 2017-02-23 07:50+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produktua"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/fi.po
Normal file
83
quality_control_mrp/i18n/fi.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-09-14 13:02+0000\n"
|
||||
"PO-Revision-Date: 2016-09-15 12:45+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Tuote"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
86
quality_control_mrp/i18n/fr.po
Normal file
86
quality_control_mrp/i18n/fr.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2017
|
||||
# Elvis M. Lukšić <meluksic@yahoo.com>, 2013
|
||||
# Elvis M. Lukšić <meluksic@yahoo.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 05:27+0000\n"
|
||||
"PO-Revision-Date: 2017-01-06 06:21+0000\n"
|
||||
"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr "Inspections créées"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Inspections"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Inspections liées à cette production."
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordre de fabrication"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Article"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Production"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Production terminée"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Ordre de production"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspection de contrôle qualité"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Ligne d'inspection de contrôle de la qualité"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Inspections de la qualité à partir de l'ordre de fabrication"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "inspections"
|
||||
83
quality_control_mrp/i18n/fr_CH.po
Normal file
83
quality_control_mrp/i18n/fr_CH.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-11-29 14:11+0000\n"
|
||||
"PO-Revision-Date: 2016-12-01 10:15+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/fr_CH/)\n"
|
||||
"Language: fr_CH\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/fr_FR.po
Normal file
83
quality_control_mrp/i18n/fr_FR.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-11-16 09:04+0000\n"
|
||||
"PO-Revision-Date: 2016-10-14 10:32+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (France) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/fr_FR/)\n"
|
||||
"Language: fr_FR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produit"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
84
quality_control_mrp/i18n/gl.po
Normal file
84
quality_control_mrp/i18n/gl.po
Normal file
@@ -0,0 +1,84 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# César Castro Cruz <ulmroan@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-14 13:02+0000\n"
|
||||
"PO-Revision-Date: 2016-09-05 11:47+0000\n"
|
||||
"Last-Translator: César Castro Cruz <ulmroan@gmail.com>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Inspeccións"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Orde de fabricación"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Fabricación"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Fabricación realizada"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Orde de fabricación"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
84
quality_control_mrp/i18n/hr.po
Normal file
84
quality_control_mrp/i18n/hr.po
Normal file
@@ -0,0 +1,84 @@
|
||||
# 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: 2016-09-17 22:50+0000\n"
|
||||
"PO-Revision-Date: 2016-10-05 06:35+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
84
quality_control_mrp/i18n/hr_HR.po
Normal file
84
quality_control_mrp/i18n/hr_HR.po
Normal file
@@ -0,0 +1,84 @@
|
||||
# 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: 2016-09-17 22:50+0000\n"
|
||||
"PO-Revision-Date: 2016-10-05 06:30+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/hr_HR/)\n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
85
quality_control_mrp/i18n/it.po
Normal file
85
quality_control_mrp/i18n/it.po
Normal file
@@ -0,0 +1,85 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# Paolo Valier, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-03-05 22:02+0000\n"
|
||||
"PO-Revision-Date: 2016-03-11 10:41+0000\n"
|
||||
"Last-Translator: Paolo Valier\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
#, fuzzy
|
||||
msgid "Created inspections"
|
||||
msgstr "ispezioni"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Ispezioni"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Ispezioni correlate a questa produzione."
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordine di produzione"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Prodotto "
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Produzione"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Produzione eseguita"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Ordine di produzione"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Ispezione controllo di qualità"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Riga ispezione controllo qualità"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Ispezioni qualità da ordine di produzione"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "ispezioni"
|
||||
83
quality_control_mrp/i18n/nl.po
Normal file
83
quality_control_mrp/i18n/nl.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/nl_NL.po
Normal file
83
quality_control_mrp/i18n/nl_NL.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:09+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Product"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/pt.po
Normal file
83
quality_control_mrp/i18n/pt.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-12-16 03:46+0000\n"
|
||||
"PO-Revision-Date: 2016-12-22 14:05+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
86
quality_control_mrp/i18n/pt_BR.po
Normal file
86
quality_control_mrp/i18n/pt_BR.po
Normal file
@@ -0,0 +1,86 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# Felipe Lopes <ti@trojahntoppel.com.br>, 2016
|
||||
# Hotellook, 2014
|
||||
# Paulo Ricardo <ti@shoppingescritorio.com.br>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-06-23 15:52+0000\n"
|
||||
"PO-Revision-Date: 2016-07-13 16:04+0000\n"
|
||||
"Last-Translator: Felipe Lopes <ti@trojahntoppel.com.br>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr "Inspeções criadas"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Inspeções"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Inspeções relacionadas a esta produção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Ordem de Produção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produto"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Produção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Produção concluida"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Ordem de produção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inspeção Controle de Qualidade"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Controle de qualidade em linha de inspeção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Inspeção de Controle de Qualidade por Ordem de Produção"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "Inspeções"
|
||||
73
quality_control_mrp/i18n/quality_control_mrp.pot
Normal file
73
quality_control_mrp/i18n/quality_control_mrp.pot
Normal file
@@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model.fields,field_description:quality_control_mrp.field_mrp_production_created_inspections
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model.fields,field_description:quality_control_mrp.field_mrp_production_qc_inspections
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model.fields,help:quality_control_mrp.field_mrp_production_qc_inspections
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model.fields,field_description:quality_control_mrp.field_qc_inspection_production
|
||||
#: model:ir.ui.view,arch_db:quality_control_mrp.qc_inspection_search_view_production
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model.fields,field_description:quality_control_mrp.field_qc_inspection_line_production
|
||||
#: model:ir.ui.view,arch_db:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.ui.view,arch_db:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
|
||||
84
quality_control_mrp/i18n/ro.po
Normal file
84
quality_control_mrp/i18n/ro.po
Normal file
@@ -0,0 +1,84 @@
|
||||
# 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: 2015-12-10 15:32+0000\n"
|
||||
"PO-Revision-Date: 2015-11-19 08:08+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Comandă fabricație"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produs"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
85
quality_control_mrp/i18n/ru.po
Normal file
85
quality_control_mrp/i18n/ru.po
Normal file
@@ -0,0 +1,85 @@
|
||||
# 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: 2017-05-02 11:59+0000\n"
|
||||
"PO-Revision-Date: 2017-05-11 12:55+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Товар/Услуга"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/sk.po
Normal file
83
quality_control_mrp/i18n/sk.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-09-02 09:20+0000\n"
|
||||
"PO-Revision-Date: 2017-10-16 18:32+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Produkt"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
88
quality_control_mrp/i18n/sl.po
Normal file
88
quality_control_mrp/i18n/sl.po
Normal file
@@ -0,0 +1,88 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
# Translators:
|
||||
# Hotellook, 2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Oihane Crucelaegui <oihanecruce@gmail.com>, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: manufacture (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-04-28 14:19+0000\n"
|
||||
"PO-Revision-Date: 2016-04-30 05:14+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr "Ustvarjene inšpekcije"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr "Inšpekcije"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr "Inšpekcije vezane na to proizvodnjo."
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Proizvod"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr "Proizvodnja"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr "Proizvodnja opravljena"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr "Proizvodni nalog"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr "Inšpekcija nadzora kvalitete"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr "Inšpekcijska postavka kontrole kakovosti"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr "Inšpekcije kvalitete iz proizvodnega naloga"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr "inšpekcije"
|
||||
83
quality_control_mrp/i18n/tr.po
Normal file
83
quality_control_mrp/i18n/tr.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-01-07 04:20+0000\n"
|
||||
"PO-Revision-Date: 2017-01-12 19:41+0000\n"
|
||||
"Last-Translator: Ahmet Altinisik <aaltinisik@altinkaya.com.tr>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-manufacture-8-0/"
|
||||
"language/tr/)\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Üretim emri"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/tr_TR.po
Normal file
83
quality_control_mrp/i18n/tr_TR.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2016-12-31 05:27+0000\n"
|
||||
"PO-Revision-Date: 2017-01-04 12:40+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/tr_TR/)\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Ürün"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
85
quality_control_mrp/i18n/vi_VN.po
Normal file
85
quality_control_mrp/i18n/vi_VN.po
Normal file
@@ -0,0 +1,85 @@
|
||||
# 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: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:09+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/vi_VN/)\n"
|
||||
"Language: vi_VN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr "Lệnh sản xuất"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "Sản phẩm"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
83
quality_control_mrp/i18n/zh_CN.po
Normal file
83
quality_control_mrp/i18n/zh_CN.po
Normal file
@@ -0,0 +1,83 @@
|
||||
# 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: 2017-03-04 04:25+0000\n"
|
||||
"PO-Revision-Date: 2017-03-06 09:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-"
|
||||
"manufacture-8-0/language/zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,created_inspections:0
|
||||
msgid "Created inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: field:mrp.production,qc_inspections:0
|
||||
msgid "Inspections"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: help:mrp.production,qc_inspections:0
|
||||
msgid "Inspections related to this production."
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_mrp_production
|
||||
#: model:res.request.link,name:quality_control_mrp.req_link_mrp_production
|
||||
msgid "Manufacturing Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
msgid "Product"
|
||||
msgstr "产品"
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection:quality_control_mrp.qc_inspection_search_view_production
|
||||
#: field:qc.inspection,production:0
|
||||
msgid "Production"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:qc.trigger,name:quality_control_mrp.qc_trigger_mrp
|
||||
msgid "Production done"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:qc.inspection.line:quality_control_mrp.qc_inspection_line_search_production_view
|
||||
#: field:qc.inspection.line,production:0
|
||||
msgid "Production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection
|
||||
msgid "Quality control inspection"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.model,name:quality_control_mrp.model_qc_inspection_line
|
||||
msgid "Quality control inspection line"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: model:ir.actions.act_window,name:quality_control_mrp.action_qc_inspection_per_production
|
||||
msgid "Quality inspections from production order"
|
||||
msgstr ""
|
||||
|
||||
#. module: quality_control_mrp
|
||||
#: view:mrp.production:quality_control_mrp.mrp_production_qc_view
|
||||
msgid "inspections"
|
||||
msgstr ""
|
||||
13
quality_control_mrp/migrations/10.0.1.0.0/pre-migration.py
Normal file
13
quality_control_mrp/migrations/10.0.1.0.0/pre-migration.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from openupgradelib import openupgrade
|
||||
|
||||
field_renames = [
|
||||
("mrp.production", "mrp_production", "qc_inspections",
|
||||
"qc_inspections_ids"),
|
||||
("qc.inspection", "qc_inspection", "production", "production_id"),
|
||||
("qc.inspection.line", "qc_inspection_line", "production", "production_id")
|
||||
]
|
||||
|
||||
|
||||
@openupgrade.migrate(use_env=True)
|
||||
def migrate(env, version):
|
||||
openupgrade.rename_fields(env, field_renames)
|
||||
4
quality_control_mrp/models/__init__.py
Normal file
4
quality_control_mrp/models/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import qc_inspection
|
||||
from . import mrp_production
|
||||
44
quality_control_mrp/models/mrp_production.py
Normal file
44
quality_control_mrp/models/mrp_production.py
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2018 Simone Rubino - Agile Business Group
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.addons.quality_control.models.qc_trigger_line import \
|
||||
_filter_trigger_lines
|
||||
|
||||
|
||||
class MrpProduction(models.Model):
|
||||
_inherit = 'mrp.production'
|
||||
|
||||
@api.multi
|
||||
@api.depends('qc_inspections_ids')
|
||||
def _compute_count_inspections(self):
|
||||
for production in self:
|
||||
production.created_inspections = len(production.qc_inspections_ids)
|
||||
|
||||
qc_inspections_ids = fields.One2many(
|
||||
comodel_name='qc.inspection', inverse_name='production_id', copy=False,
|
||||
string='Inspections', help="Inspections related to this production.")
|
||||
created_inspections = fields.Integer(compute="_compute_count_inspections")
|
||||
|
||||
@api.multi
|
||||
def post_inventory(self):
|
||||
done_moves = self.mapped('move_finished_ids').filtered(
|
||||
lambda r: r.state == 'done')
|
||||
res = super(MrpProduction, self).post_inventory()
|
||||
inspection_model = self.env['qc.inspection']
|
||||
new_done_moves = self.mapped('move_finished_ids').filtered(
|
||||
lambda r: r.state == 'done') - done_moves
|
||||
if new_done_moves:
|
||||
qc_trigger = self.env.ref('quality_control_mrp.qc_trigger_mrp')
|
||||
for move in new_done_moves:
|
||||
trigger_lines = set()
|
||||
for model in ['qc.trigger.product_category_line',
|
||||
'qc.trigger.product_template_line',
|
||||
'qc.trigger.product_line']:
|
||||
trigger_lines = trigger_lines.union(
|
||||
self.env[model].get_trigger_line_for_product(
|
||||
qc_trigger, move.product_id))
|
||||
for trigger_line in _filter_trigger_lines(trigger_lines):
|
||||
inspection_model._make_inspection(move, trigger_line)
|
||||
return res
|
||||
51
quality_control_mrp/models/qc_inspection.py
Normal file
51
quality_control_mrp/models/qc_inspection.py
Normal file
@@ -0,0 +1,51 @@
|
||||
# Copyright 2014 Serv. Tec. Avanzados - Pedro M. Baeza
|
||||
# Copyright 2018 Simone Rubino - Agile Business Group
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class QcInspection(models.Model):
|
||||
_inherit = 'qc.inspection'
|
||||
|
||||
@api.multi
|
||||
def _prepare_inspection_header(self, object_ref, trigger_line):
|
||||
res = super(QcInspection, self)._prepare_inspection_header(
|
||||
object_ref, trigger_line)
|
||||
# Fill qty when coming from stock move
|
||||
if object_ref and object_ref._name == 'mrp.production':
|
||||
res['qty'] = object_ref.product_qty
|
||||
return res
|
||||
|
||||
@api.depends('object_id')
|
||||
def _compute_get_production(self):
|
||||
for inspection in self:
|
||||
if inspection.object_id:
|
||||
if inspection.object_id._name == 'stock.move':
|
||||
inspection.production_id = \
|
||||
inspection.object_id.production_id
|
||||
elif inspection.object_id._name == 'mrp.production':
|
||||
inspection.production_id = inspection.object_id
|
||||
|
||||
@api.multi
|
||||
@api.depends('object_id')
|
||||
def _compute_product_id(self):
|
||||
"""Overriden for getting the product from a manufacturing order."""
|
||||
for inspection in self:
|
||||
super(QcInspection, inspection)._compute_product_id()
|
||||
if inspection.object_id and\
|
||||
inspection.object_id._name == 'mrp.production':
|
||||
inspection.product_id = inspection.object_id.product_id
|
||||
return
|
||||
|
||||
production_id = fields.Many2one(
|
||||
comodel_name="mrp.production",
|
||||
compute="_compute_get_production", store=True)
|
||||
|
||||
|
||||
class QcInspectionLine(models.Model):
|
||||
_inherit = 'qc.inspection.line'
|
||||
|
||||
production_id = fields.Many2one(
|
||||
comodel_name="mrp.production", related="inspection_id.production_id",
|
||||
store=True, string="Production order")
|
||||
4
quality_control_mrp/readme/CONTRIBUTORS.rst
Normal file
4
quality_control_mrp/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,4 @@
|
||||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Simone Rubino <simone.rubino@agilebg.com>
|
||||
* Ignacio José Alés López <ignacio.ales@guadaltech.es>
|
||||
4
quality_control_mrp/readme/DESCRIPTION.rst
Normal file
4
quality_control_mrp/readme/DESCRIPTION.rst
Normal file
@@ -0,0 +1,4 @@
|
||||
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.
|
||||
BIN
quality_control_mrp/static/description/icon.png
Normal file
BIN
quality_control_mrp/static/description/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.3 KiB |
426
quality_control_mrp/static/description/index.html
Normal file
426
quality_control_mrp/static/description/index.html
Normal file
@@ -0,0 +1,426 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="generator" content="Docutils 0.14: http://docutils.sourceforge.net/" />
|
||||
<title>MRP extension for quality control</title>
|
||||
<style type="text/css">
|
||||
|
||||
/*
|
||||
:Author: David Goodger (goodger@python.org)
|
||||
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
|
||||
:Copyright: This stylesheet has been placed in the public domain.
|
||||
|
||||
Default cascading style sheet for the HTML output of Docutils.
|
||||
|
||||
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
|
||||
customize this style sheet.
|
||||
*/
|
||||
|
||||
/* used to remove borders from tables and images */
|
||||
.borderless, table.borderless td, table.borderless th {
|
||||
border: 0 }
|
||||
|
||||
table.borderless td, table.borderless th {
|
||||
/* Override padding for "table.docutils td" with "! important".
|
||||
The right padding separates the table cells. */
|
||||
padding: 0 0.5em 0 0 ! important }
|
||||
|
||||
.first {
|
||||
/* Override more specific margin styles with "! important". */
|
||||
margin-top: 0 ! important }
|
||||
|
||||
.last, .with-subtitle {
|
||||
margin-bottom: 0 ! important }
|
||||
|
||||
.hidden {
|
||||
display: none }
|
||||
|
||||
.subscript {
|
||||
vertical-align: sub;
|
||||
font-size: smaller }
|
||||
|
||||
.superscript {
|
||||
vertical-align: super;
|
||||
font-size: smaller }
|
||||
|
||||
a.toc-backref {
|
||||
text-decoration: none ;
|
||||
color: black }
|
||||
|
||||
blockquote.epigraph {
|
||||
margin: 2em 5em ; }
|
||||
|
||||
dl.docutils dd {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Uncomment (and remove this text!) to get bold-faced definition list terms
|
||||
dl.docutils dt {
|
||||
font-weight: bold }
|
||||
*/
|
||||
|
||||
div.abstract {
|
||||
margin: 2em 5em }
|
||||
|
||||
div.abstract p.topic-title {
|
||||
font-weight: bold ;
|
||||
text-align: center }
|
||||
|
||||
div.admonition, div.attention, div.caution, div.danger, div.error,
|
||||
div.hint, div.important, div.note, div.tip, div.warning {
|
||||
margin: 2em ;
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.admonition p.admonition-title, div.hint p.admonition-title,
|
||||
div.important p.admonition-title, div.note p.admonition-title,
|
||||
div.tip p.admonition-title {
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
div.attention p.admonition-title, div.caution p.admonition-title,
|
||||
div.danger p.admonition-title, div.error p.admonition-title,
|
||||
div.warning p.admonition-title, .code .error {
|
||||
color: red ;
|
||||
font-weight: bold ;
|
||||
font-family: sans-serif }
|
||||
|
||||
/* Uncomment (and remove this text!) to get reduced vertical space in
|
||||
compound paragraphs.
|
||||
div.compound .compound-first, div.compound .compound-middle {
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
div.compound .compound-last, div.compound .compound-middle {
|
||||
margin-top: 0.5em }
|
||||
*/
|
||||
|
||||
div.dedication {
|
||||
margin: 2em 5em ;
|
||||
text-align: center ;
|
||||
font-style: italic }
|
||||
|
||||
div.dedication p.topic-title {
|
||||
font-weight: bold ;
|
||||
font-style: normal }
|
||||
|
||||
div.figure {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
div.footer, div.header {
|
||||
clear: both;
|
||||
font-size: smaller }
|
||||
|
||||
div.line-block {
|
||||
display: block ;
|
||||
margin-top: 1em ;
|
||||
margin-bottom: 1em }
|
||||
|
||||
div.line-block div.line-block {
|
||||
margin-top: 0 ;
|
||||
margin-bottom: 0 ;
|
||||
margin-left: 1.5em }
|
||||
|
||||
div.sidebar {
|
||||
margin: 0 0 0.5em 1em ;
|
||||
border: medium outset ;
|
||||
padding: 1em ;
|
||||
background-color: #ffffee ;
|
||||
width: 40% ;
|
||||
float: right ;
|
||||
clear: right }
|
||||
|
||||
div.sidebar p.rubric {
|
||||
font-family: sans-serif ;
|
||||
font-size: medium }
|
||||
|
||||
div.system-messages {
|
||||
margin: 5em }
|
||||
|
||||
div.system-messages h1 {
|
||||
color: red }
|
||||
|
||||
div.system-message {
|
||||
border: medium outset ;
|
||||
padding: 1em }
|
||||
|
||||
div.system-message p.system-message-title {
|
||||
color: red ;
|
||||
font-weight: bold }
|
||||
|
||||
div.topic {
|
||||
margin: 2em }
|
||||
|
||||
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
|
||||
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
|
||||
margin-top: 0.4em }
|
||||
|
||||
h1.title {
|
||||
text-align: center }
|
||||
|
||||
h2.subtitle {
|
||||
text-align: center }
|
||||
|
||||
hr.docutils {
|
||||
width: 75% }
|
||||
|
||||
img.align-left, .figure.align-left, object.align-left, table.align-left {
|
||||
clear: left ;
|
||||
float: left ;
|
||||
margin-right: 1em }
|
||||
|
||||
img.align-right, .figure.align-right, object.align-right, table.align-right {
|
||||
clear: right ;
|
||||
float: right ;
|
||||
margin-left: 1em }
|
||||
|
||||
img.align-center, .figure.align-center, object.align-center {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
table.align-center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left }
|
||||
|
||||
.align-center {
|
||||
clear: both ;
|
||||
text-align: center }
|
||||
|
||||
.align-right {
|
||||
text-align: right }
|
||||
|
||||
/* reset inner alignment in figures */
|
||||
div.align-right {
|
||||
text-align: inherit }
|
||||
|
||||
/* div.align-center * { */
|
||||
/* text-align: left } */
|
||||
|
||||
.align-top {
|
||||
vertical-align: top }
|
||||
|
||||
.align-middle {
|
||||
vertical-align: middle }
|
||||
|
||||
.align-bottom {
|
||||
vertical-align: bottom }
|
||||
|
||||
ol.simple, ul.simple {
|
||||
margin-bottom: 1em }
|
||||
|
||||
ol.arabic {
|
||||
list-style: decimal }
|
||||
|
||||
ol.loweralpha {
|
||||
list-style: lower-alpha }
|
||||
|
||||
ol.upperalpha {
|
||||
list-style: upper-alpha }
|
||||
|
||||
ol.lowerroman {
|
||||
list-style: lower-roman }
|
||||
|
||||
ol.upperroman {
|
||||
list-style: upper-roman }
|
||||
|
||||
p.attribution {
|
||||
text-align: right ;
|
||||
margin-left: 50% }
|
||||
|
||||
p.caption {
|
||||
font-style: italic }
|
||||
|
||||
p.credits {
|
||||
font-style: italic ;
|
||||
font-size: smaller }
|
||||
|
||||
p.label {
|
||||
white-space: nowrap }
|
||||
|
||||
p.rubric {
|
||||
font-weight: bold ;
|
||||
font-size: larger ;
|
||||
color: maroon ;
|
||||
text-align: center }
|
||||
|
||||
p.sidebar-title {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold ;
|
||||
font-size: larger }
|
||||
|
||||
p.sidebar-subtitle {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
p.topic-title {
|
||||
font-weight: bold }
|
||||
|
||||
pre.address {
|
||||
margin-bottom: 0 ;
|
||||
margin-top: 0 ;
|
||||
font: inherit }
|
||||
|
||||
pre.literal-block, pre.doctest-block, pre.math, pre.code {
|
||||
margin-left: 2em ;
|
||||
margin-right: 2em }
|
||||
|
||||
pre.code .ln { color: grey; } /* line numbers */
|
||||
pre.code, code { background-color: #eeeeee }
|
||||
pre.code .comment, code .comment { color: #5C6576 }
|
||||
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
|
||||
pre.code .literal.string, code .literal.string { color: #0C5404 }
|
||||
pre.code .name.builtin, code .name.builtin { color: #352B84 }
|
||||
pre.code .deleted, code .deleted { background-color: #DEB0A1}
|
||||
pre.code .inserted, code .inserted { background-color: #A3D289}
|
||||
|
||||
span.classifier {
|
||||
font-family: sans-serif ;
|
||||
font-style: oblique }
|
||||
|
||||
span.classifier-delimiter {
|
||||
font-family: sans-serif ;
|
||||
font-weight: bold }
|
||||
|
||||
span.interpreted {
|
||||
font-family: sans-serif }
|
||||
|
||||
span.option {
|
||||
white-space: nowrap }
|
||||
|
||||
span.pre {
|
||||
white-space: pre }
|
||||
|
||||
span.problematic {
|
||||
color: red }
|
||||
|
||||
span.section-subtitle {
|
||||
/* font-size relative to parent (h1..h6 element) */
|
||||
font-size: 80% }
|
||||
|
||||
table.citation {
|
||||
border-left: solid 1px gray;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docinfo {
|
||||
margin: 2em 4em }
|
||||
|
||||
table.docutils {
|
||||
margin-top: 0.5em ;
|
||||
margin-bottom: 0.5em }
|
||||
|
||||
table.footnote {
|
||||
border-left: solid 1px black;
|
||||
margin-left: 1px }
|
||||
|
||||
table.docutils td, table.docutils th,
|
||||
table.docinfo td, table.docinfo th {
|
||||
padding-left: 0.5em ;
|
||||
padding-right: 0.5em ;
|
||||
vertical-align: top }
|
||||
|
||||
table.docutils th.field-name, table.docinfo th.docinfo-name {
|
||||
font-weight: bold ;
|
||||
text-align: left ;
|
||||
white-space: nowrap ;
|
||||
padding-left: 0 }
|
||||
|
||||
/* "booktabs" style (no vertical lines) */
|
||||
table.docutils.booktabs {
|
||||
border: 0px;
|
||||
border-top: 2px solid;
|
||||
border-bottom: 2px solid;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
table.docutils.booktabs * {
|
||||
border: 0px;
|
||||
}
|
||||
table.docutils.booktabs th {
|
||||
border-bottom: thin solid;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
|
||||
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
|
||||
font-size: 100% }
|
||||
|
||||
ul.auto-toc {
|
||||
list-style-type: none }
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="document" id="mrp-extension-for-quality-control">
|
||||
<h1 class="title">MRP extension for quality control</h1>
|
||||
|
||||
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
||||
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/manufacture/tree/10.0/quality_control_mrp"><img alt="OCA/manufacture" src="https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/manufacture-10-0/manufacture-10-0-quality_control_mrp"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/129/10.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
|
||||
<p>This module defines a trigger that creates quality control inspections when a
|
||||
production order is finished.</p>
|
||||
<p>It also adds the shortcuts related to these inspections on production orders.</p>
|
||||
<p><strong>Table of contents</strong></p>
|
||||
<div class="contents local topic" id="contents">
|
||||
<ul class="simple">
|
||||
<li><a class="reference internal" href="#bug-tracker" id="id1">Bug Tracker</a></li>
|
||||
<li><a class="reference internal" href="#credits" id="id2">Credits</a><ul>
|
||||
<li><a class="reference internal" href="#authors" id="id3">Authors</a></li>
|
||||
<li><a class="reference internal" href="#contributors" id="id4">Contributors</a></li>
|
||||
<li><a class="reference internal" href="#maintainers" id="id5">Maintainers</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="bug-tracker">
|
||||
<h1><a class="toc-backref" href="#id1">Bug Tracker</a></h1>
|
||||
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/manufacture/issues">GitHub Issues</a>.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed
|
||||
<a class="reference external" href="https://github.com/OCA/manufacture/issues/new?body=module:%20quality_control_mrp%0Aversion:%2010.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
||||
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
||||
</div>
|
||||
<div class="section" id="credits">
|
||||
<h1><a class="toc-backref" href="#id2">Credits</a></h1>
|
||||
<div class="section" id="authors">
|
||||
<h2><a class="toc-backref" href="#id3">Authors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>OdooMRP team</li>
|
||||
<li>AvanzOSC</li>
|
||||
<li>Serv. Tecnol. Avanzados - Pedro M. Baeza</li>
|
||||
<li>Agile Business Group</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="contributors">
|
||||
<h2><a class="toc-backref" href="#id4">Contributors</a></h2>
|
||||
<ul class="simple">
|
||||
<li>Pedro M. Baeza <<a class="reference external" href="mailto:pedro.baeza@serviciosbaeza.com">pedro.baeza@serviciosbaeza.com</a>></li>
|
||||
<li>Oihane Crucelaegui <<a class="reference external" href="mailto:oihanecrucelaegi@avanzosc.es">oihanecrucelaegi@avanzosc.es</a>></li>
|
||||
<li>Simone Rubino <<a class="reference external" href="mailto:simone.rubino@agilebg.com">simone.rubino@agilebg.com</a>></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="section" id="maintainers">
|
||||
<h2><a class="toc-backref" href="#id5">Maintainers</a></h2>
|
||||
<p>This module is maintained by the OCA.</p>
|
||||
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
||||
<p>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.</p>
|
||||
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/manufacture/tree/10.0/quality_control_mrp">OCA/manufacture</a> project on GitHub.</p>
|
||||
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
3
quality_control_mrp/tests/__init__.py
Normal file
3
quality_control_mrp/tests/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_quality_control_mrp
|
||||
145
quality_control_mrp/tests/test_quality_control_mrp.py
Normal file
145
quality_control_mrp/tests/test_quality_control_mrp.py
Normal file
@@ -0,0 +1,145 @@
|
||||
# Copyright 2015 Oihane Crucelaegui - AvanzOSC
|
||||
# Copyright 2018 Simone Rubino - Agile Business Group
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestQualityControlMrp(TransactionCase):
|
||||
|
||||
def setUp(self):
|
||||
super(TestQualityControlMrp, self).setUp()
|
||||
self.production_model = self.env['mrp.production']
|
||||
self.inspection_model = self.env['qc.inspection']
|
||||
self.qc_trigger_model = self.env['qc.trigger']
|
||||
self.product = self.env.ref('mrp.product_product_computer_desk')
|
||||
self.test = self.env.ref('quality_control.qc_test_1')
|
||||
self.trigger = self.env.ref('quality_control_mrp.qc_trigger_mrp')
|
||||
self.bom = self.env['mrp.bom']._bom_find(product=self.product)
|
||||
self.production1 = self.production_model.create({
|
||||
'product_id': self.product.id,
|
||||
'product_qty': 2.0,
|
||||
'product_uom_id': self.product.uom_id.id,
|
||||
'bom_id': self.bom.id
|
||||
})
|
||||
self.production1.action_assign()
|
||||
inspection_lines = (
|
||||
self.inspection_model._prepare_inspection_lines(self.test))
|
||||
self.inspection1 = self.inspection_model.create({
|
||||
'name': 'Test Inspection',
|
||||
'inspection_lines': inspection_lines,
|
||||
})
|
||||
|
||||
def test_inspection_create_for_product(self):
|
||||
self.product.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id],
|
||||
}).create({
|
||||
'product_qty': self.production1.product_qty
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 1,
|
||||
'Only one inspection must be created')
|
||||
|
||||
def test_inspection_create_for_template(self):
|
||||
self.product.product_tmpl_id.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id]
|
||||
}).create({
|
||||
'product_qty': self.production1.product_qty
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 1,
|
||||
'Only one inspection must be created')
|
||||
|
||||
def test_inspection_create_for_category(self):
|
||||
self.product.categ_id.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id],
|
||||
}).create({
|
||||
'product_qty': self.production1.product_qty
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 1,
|
||||
'Only one inspection must be created')
|
||||
|
||||
def test_inspection_create_only_one(self):
|
||||
self.product.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
self.product.categ_id.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id]
|
||||
}).create({
|
||||
'product_qty': self.production1.product_qty
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 1,
|
||||
'Only one inspection must be created')
|
||||
|
||||
def test_inspection_with_partial_fabrication(self):
|
||||
self.product.qc_triggers = [(
|
||||
0, 0, {
|
||||
'trigger': self.trigger.id,
|
||||
'test': self.test.id,
|
||||
}
|
||||
)]
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id],
|
||||
}).create({
|
||||
'product_qty': 1.0
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 1,
|
||||
'Only one inspection must be created.')
|
||||
produce_wizard = self.env['mrp.product.produce'].with_context({
|
||||
'active_id': self.production1.id,
|
||||
'active_ids': [self.production1.id],
|
||||
}).create({
|
||||
'product_qty': 1.0
|
||||
})
|
||||
produce_wizard.do_produce()
|
||||
self.production1.post_inventory()
|
||||
self.assertEqual(self.production1.created_inspections, 2,
|
||||
'There must be only 2 inspections.')
|
||||
|
||||
def test_qc_inspection_mo(self):
|
||||
self.inspection1.write({
|
||||
'object_id': '%s,%d' % (self.production1._name,
|
||||
self.production1.id),
|
||||
})
|
||||
self.assertEqual(self.inspection1.production_id,
|
||||
self.production1)
|
||||
31
quality_control_mrp/views/mrp_production_view.xml
Normal file
31
quality_control_mrp/views/mrp_production_view.xml
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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 id="action_qc_inspection_per_production" model="ir.actions.act_window">
|
||||
<field name="name">Quality inspections from production order</field>
|
||||
<field name="res_model">qc.inspection</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="domain">[('production_id', '=', active_id)]</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="mrp_production_qc_view">
|
||||
<field name="name">mrp.production.form.qc</field>
|
||||
<field name="model">mrp.production</field>
|
||||
<field name="inherit_id" ref="mrp.mrp_production_form_view" />
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('quality_control.group_quality_control_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<div name="button_box" position="inside">
|
||||
<button class="oe_inline oe_stat_button"
|
||||
type="action"
|
||||
name="%(action_qc_inspection_per_production)d"
|
||||
icon="fa-bookmark-o">
|
||||
<field name="created_inspections"
|
||||
widget="statinfo"
|
||||
string="inspections" />
|
||||
</button>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
79
quality_control_mrp/views/qc_inspection_view.xml
Normal file
79
quality_control_mrp/views/qc_inspection_view.xml
Normal file
@@ -0,0 +1,79 @@
|
||||
<?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="ir.ui.view" id="qc_inspection_form_view_production">
|
||||
<field name="name">qc.inspection.form.view.production</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="inherit_id" ref="quality_control.qc_inspection_form_view" />
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('mrp.group_mrp_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_id" position="after">
|
||||
<field name="production_id" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_tree_view_production">
|
||||
<field name="name">qc.inspection.tree.view.production</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="inherit_id" ref="quality_control.qc_inspection_tree_view" />
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('mrp.group_mrp_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_id" position="after">
|
||||
<field name="production_id" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_search_view_production">
|
||||
<field name="name">qc.inspection.search.view.production</field>
|
||||
<field name="model">qc.inspection</field>
|
||||
<field name="inherit_id" ref="quality_control.qc_inspection_search_view" />
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('mrp.group_mrp_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_id" position="after">
|
||||
<field name="production_id" />
|
||||
</field>
|
||||
<group expand="0" position="inside">
|
||||
<filter string="Production"
|
||||
domain="[]"
|
||||
context="{'group_by': 'production_id'}" />
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_line_tree_production_view">
|
||||
<field name="name">qc.inspection.line.tree.production</field>
|
||||
<field name="model">qc.inspection.line</field>
|
||||
<field name="inherit_id" ref="quality_control.qc_inspection_line_tree_view"/>
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('mrp.group_mrp_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_id" position="after">
|
||||
<field name="production_id" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="qc_inspection_line_search_production_view">
|
||||
<field name="name">qc.inspection.line.search.production</field>
|
||||
<field name="model">qc.inspection.line</field>
|
||||
<field name="inherit_id" ref="quality_control.qc_inspection_line_search_view" />
|
||||
<field name="groups_id"
|
||||
eval="[(4, ref('mrp.group_mrp_user'))]" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="product_id" position="after">
|
||||
<field name="production_id" />
|
||||
</field>
|
||||
<group expand="0" position="inside">
|
||||
<filter string="Production order"
|
||||
domain="[]"
|
||||
context="{'group_by': 'production_id'}" />
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user