mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
Merge pull request #283 from SimoRubi/10.0-mig-quality_control_mrp
10.0 mig quality control mrp
This commit is contained in:
77
quality_control_mrp/README.rst
Normal file
77
quality_control_mrp/README.rst
Normal file
@@ -0,0 +1,77 @@
|
||||
=================================
|
||||
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/10.0/quality_control_mrp
|
||||
:alt: OCA/manufacture
|
||||
.. |badge4| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
|
||||
:target: https://runbot.odoo-community.org/runbot/129/10.0
|
||||
:alt: Try me on Runbot
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4|
|
||||
|
||||
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.
|
||||
|
||||
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>
|
||||
|
||||
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/10.0/quality_control_mrp>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
4
quality_control_mrp/__init__.py
Normal file
4
quality_control_mrp/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import models
|
||||
30
quality_control_mrp/__manifest__.py
Normal file
30
quality_control_mrp/__manifest__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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": "10.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/10.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"
|
||||
79
quality_control_mrp/i18n/quality_control_mrp.pot
Normal file
79
quality_control_mrp/i18n/quality_control_mrp.pot
Normal file
@@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * quality_control_mrp
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.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
|
||||
#: 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 ""
|
||||
|
||||
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 ""
|
||||
5
quality_control_mrp/models/__init__.py
Normal file
5
quality_control_mrp/models/__init__.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import qc_inspection
|
||||
from . import mrp_production
|
||||
46
quality_control_mrp/models/mrp_production.py
Normal file
46
quality_control_mrp/models/mrp_production.py
Normal file
@@ -0,0 +1,46 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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')
|
||||
def _count_inspections(self):
|
||||
for production in self:
|
||||
production.created_inspections = len(production.qc_inspections)
|
||||
|
||||
qc_inspections = fields.One2many(
|
||||
comodel_name='qc.inspection', inverse_name='production', copy=False,
|
||||
string='Inspections', help="Inspections related to this production.")
|
||||
created_inspections = fields.Integer(
|
||||
compute="_count_inspections", string="Created 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
|
||||
48
quality_control_mrp/models/qc_inspection.py
Normal file
48
quality_control_mrp/models/qc_inspection.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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 pack operations
|
||||
if object_ref and object_ref._name == 'mrp.production':
|
||||
res['qty'] = object_ref.product_qty
|
||||
return res
|
||||
|
||||
@api.depends('object_id')
|
||||
def get_production(self):
|
||||
for inspection in self:
|
||||
if inspection.object_id:
|
||||
if inspection.object_id._name == 'stock.move':
|
||||
inspection.production = inspection.object_id.production_id
|
||||
elif inspection.object_id._name == 'mrp.production':
|
||||
inspection.production = inspection.object_id
|
||||
|
||||
@api.depends('object_id')
|
||||
def _get_product(self):
|
||||
"""Overriden for getting the product from a manufacturing order."""
|
||||
for inspection in self:
|
||||
super(QcInspection, inspection)._get_product()
|
||||
if inspection.object_id and\
|
||||
inspection.object_id._name == 'mrp.production':
|
||||
inspection.product = inspection.object_id.product_id
|
||||
|
||||
production = fields.Many2one(
|
||||
comodel_name="mrp.production", compute="get_production", store=True)
|
||||
|
||||
|
||||
class QcInspectionLine(models.Model):
|
||||
_inherit = 'qc.inspection.line'
|
||||
|
||||
production = fields.Many2one(
|
||||
comodel_name="mrp.production", related="inspection_id.production",
|
||||
store=True, string="Production order")
|
||||
3
quality_control_mrp/readme/CONTRIBUTORS.rst
Normal file
3
quality_control_mrp/readme/CONTRIBUTORS.rst
Normal file
@@ -0,0 +1,3 @@
|
||||
* Pedro M. Baeza <pedro.baeza@serviciosbaeza.com>
|
||||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es>
|
||||
* Simone Rubino <simone.rubino@agilebg.com>
|
||||
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 |
4
quality_control_mrp/tests/__init__.py
Normal file
4
quality_control_mrp/tests/__init__.py
Normal file
@@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
||||
|
||||
from . import test_quality_control_mrp
|
||||
146
quality_control_mrp/tests/test_quality_control_mrp.py
Normal file
146
quality_control_mrp/tests/test_quality_control_mrp.py
Normal file
@@ -0,0 +1,146 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# 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.assertEquals(self.inspection1.production,
|
||||
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', '=', 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" position="after">
|
||||
<field name="production" />
|
||||
</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" position="after">
|
||||
<field name="production" />
|
||||
</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" position="after">
|
||||
<field name="production" />
|
||||
</field>
|
||||
<group expand="0" position="inside">
|
||||
<filter string="Production"
|
||||
domain="[]"
|
||||
context="{'group_by': 'production'}" />
|
||||
</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" position="after">
|
||||
<field name="production" />
|
||||
</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" position="after">
|
||||
<field name="production" />
|
||||
</field>
|
||||
<group expand="0" position="inside">
|
||||
<filter string="Production order"
|
||||
domain="[]"
|
||||
context="{'group_by': 'production'}" />
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user