-
-
Notifications
You must be signed in to change notification settings - Fork 501
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by LoisRForgeFlow
- Loading branch information
Showing
24 changed files
with
1,490 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
============= | ||
MRP Sale Info | ||
============= | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! 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/15.0/mrp_sale_info | ||
:alt: OCA/manufacture | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/manufacture-15-0/manufacture-15-0-mrp_sale_info | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png | ||
:target: https://runbot.odoo-community.org/runbot/129/15.0 | ||
:alt: Try me on Runbot | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module extends the functionality of Odoo for adding related fields to | ||
Manufacturing Orders and Work Orders: | ||
|
||
* Sale order | ||
* Customer | ||
* Commitment Date | ||
* Customer Reference | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Usage | ||
===== | ||
|
||
New fields are displayed in tree and in form views (Extra information tab). | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us smashing it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_sale_info%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
~~~~~~~ | ||
|
||
* AvanzOSC | ||
* Tecnativa | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* `AvanzOsc <http://www.avanzosc.es>`_: | ||
|
||
* Oihane Crucelaegui <oihanecrucelaegi@avanzosc.es> | ||
* Ana Juaristi <anajuaristi@avanzosc.es> | ||
* `Tecnativa <https://www.tecnativa.com>`_: | ||
|
||
* Antonio Espinosa | ||
* Rafael Blasco | ||
* Pedro M. Baeza | ||
* `Glo Systems <https://glo.systems>`_: | ||
* Edwin Blommaerts | ||
* Rubén Bravo <rubenred18@gmail.com> | ||
* Kevin Khao <kevin.khao@akretion.com> | ||
* Alex Comba <alex.comba@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/15.0/mrp_sale_info>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Copyright 2016 Antiun Ingenieria S.L. - Javier Iniesta | ||
# Copyright 2019 Rubén Bravo <rubenred18@gmail.com> | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
|
||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright 2016 Antiun Ingenieria S.L. - Javier Iniesta | ||
# Copyright 2019 Rubén Bravo <rubenred18@gmail.com> | ||
# Copyright 2020 Tecnativa - Pedro M. Baeza | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). | ||
{ | ||
"name": "MRP Sale Info", | ||
"summary": "Adds sale information to Manufacturing models", | ||
"version": "15.0.1.0.0", | ||
"category": "Manufacturing", | ||
"website": "https://github.com/OCA/manufacture", | ||
"author": "AvanzOSC, Tecnativa, Odoo Community Association (OCA)", | ||
"license": "AGPL-3", | ||
"application": False, | ||
"installable": True, | ||
"depends": [ | ||
"mrp", | ||
"sale_stock", | ||
], | ||
"data": [ | ||
"views/mrp_production.xml", | ||
"views/mrp_workorder.xml", | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * mrp_sale_info | ||
# | ||
# Translators: | ||
# Rudolf Schnapka <rs@techno-flex.de>, 2016 | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: manufacture (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-04-14 11:03+0000\n" | ||
"PO-Revision-Date: 2018-12-13 11:58+0000\n" | ||
"Last-Translator: Maria Sparenberg <maria.sparenberg@gmx.net>\n" | ||
"Language-Team: German (http://www.transifex.com/oca/OCA-manufacture-9-0/" | ||
"language/de/)\n" | ||
"Language: de\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 3.3\n" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__commitment_date | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__commitment_date | ||
msgid "Commitment Date" | ||
msgstr "Zusagedatum" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__partner_id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__partner_id | ||
msgid "Customer" | ||
msgstr "Kunde" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__client_order_ref | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__client_order_ref | ||
msgid "Customer Reference" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__display_name | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__display_name | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production____last_update | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder____last_update | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_mrp_production | ||
msgid "Production Order" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model_terms:ir.ui.view,arch_db:mrp_sale_info.mrp_production_workorder_form_view_inherit | ||
msgid "Sale information" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__sale_id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__sale_id | ||
msgid "Sale order" | ||
msgstr "Verkaufsauftrag" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__source_procurement_group_id | ||
msgid "Source Procurement Group" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_stock_rule | ||
msgid "Stock Rule" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,help:mrp_sale_info.field_mrp_production__commitment_date | ||
#: model:ir.model.fields,help:mrp_sale_info.field_mrp_workorder__commitment_date | ||
msgid "" | ||
"This is the delivery date promised to the customer. If set, the delivery " | ||
"order will be scheduled based on this date rather than product lead times." | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_mrp_workorder | ||
msgid "Work Order" | ||
msgstr "Arbeitsauftrag" | ||
|
||
#~ msgid "" | ||
#~ "Date by which the products are sure to be delivered. This is a date that " | ||
#~ "you can promise to the customer, based on the Product Lead Times." | ||
#~ msgstr "" | ||
#~ "Datum, zu dem die Produkte sicher geliefert werden können. Dieses Datum " | ||
#~ "können Sie einem Kunden, basierend auf Vorlauf- und Lieferzeiten, zusagen." | ||
|
||
#~ msgid "Manufacturing Order" | ||
#~ msgstr "Fertigungsauftrag" | ||
|
||
#~ msgid "Sale Information" | ||
#~ msgstr "Verkaufsinformation" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * mrp_sale_info | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: manufacture (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-03-12 23:17+0000\n" | ||
"PO-Revision-Date: 2016-03-12 23:17+0000\n" | ||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" | ||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-manufacture-9-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: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__commitment_date | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__commitment_date | ||
msgid "Commitment Date" | ||
msgstr "Fecha compromiso" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__partner_id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__partner_id | ||
msgid "Customer" | ||
msgstr "Cliente" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__client_order_ref | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__client_order_ref | ||
msgid "Customer Reference" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__display_name | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__display_name | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule__display_name | ||
msgid "Display Name" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule__id | ||
msgid "ID" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production____last_update | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder____last_update | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_stock_rule____last_update | ||
msgid "Last Modified on" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_mrp_production | ||
msgid "Production Order" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model_terms:ir.ui.view,arch_db:mrp_sale_info.mrp_production_workorder_form_view_inherit | ||
msgid "Sale information" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__sale_id | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_workorder__sale_id | ||
msgid "Sale order" | ||
msgstr "Pedido de venta" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,field_description:mrp_sale_info.field_mrp_production__source_procurement_group_id | ||
msgid "Source Procurement Group" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_stock_rule | ||
msgid "Stock Rule" | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model.fields,help:mrp_sale_info.field_mrp_production__commitment_date | ||
#: model:ir.model.fields,help:mrp_sale_info.field_mrp_workorder__commitment_date | ||
msgid "" | ||
"This is the delivery date promised to the customer. If set, the delivery " | ||
"order will be scheduled based on this date rather than product lead times." | ||
msgstr "" | ||
|
||
#. module: mrp_sale_info | ||
#: model:ir.model,name:mrp_sale_info.model_mrp_workorder | ||
msgid "Work Order" | ||
msgstr "Orden de trabajo" | ||
|
||
#~ msgid "" | ||
#~ "Date by which the products are sure to be delivered. This is a date that " | ||
#~ "you can promise to the customer, based on the Product Lead Times." | ||
#~ msgstr "" | ||
#~ "Fecha en la que se asegura que los productos estarán enviados. Esta es la " | ||
#~ "fecha de compromiso con el cliente, basada en el tirmpo de entrega." | ||
|
||
#~ msgid "Manufacturing Order" | ||
#~ msgstr "Orden de producción" | ||
|
||
#~ msgid "Sale Information" | ||
#~ msgstr "Información de venta" |
Oops, something went wrong.