-
-
Notifications
You must be signed in to change notification settings - Fork 490
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
19 changed files
with
1,706 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,101 @@ | ||
======================== | ||
MRP Planned Order Matrix | ||
======================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:3ca7a03b19be36dcaeaf196fcd1d98c2c2cf35b7ceb9ecb285ca847fe787fa30 | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Production/Stable | ||
.. |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/17.0/mrp_planned_order_matrix | ||
:alt: OCA/manufacture | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/manufacture-17-0/manufacture-17-0-mrp_planned_order_matrix | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=17.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This module allows to create fixed planned orders using a grid view. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Installation | ||
============ | ||
|
||
This module relies on: | ||
|
||
- The OCA module '2D matrix for x2many fields', and can be downloaded | ||
from Github: | ||
https://github.com/OCA/web/tree/15.0/web_widget_x2many_2d_matrix | ||
- The OCA module 'Date Range', and can be downloaded from Github: | ||
https://github.com/OCA/server-ux/tree/15.0/date_range | ||
|
||
Usage | ||
===== | ||
|
||
- Go to *Inventory / Configuration / Date Ranges* and define your | ||
estimating periods. | ||
- Go to *Manufacturing / Planning / Create Fixed Planned Orders* to | ||
create or update your fixed planned orders. | ||
- Go to *Manufacturing / Planning / Planned Orders* to review the | ||
planned orders in the system. | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_planned_order_matrix%0Aversion:%2017.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 | ||
------- | ||
|
||
* ForgeFlow | ||
|
||
Contributors | ||
------------ | ||
|
||
- ForgeFlow, S.L. (https://www.forgeflow.com) | ||
|
||
- Jordi Ballester Alomar <[email protected]> | ||
- Lois Rilo <[email protected]> | ||
- Hector Villarreal <[email protected]> | ||
|
||
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/17.0/mrp_planned_order_matrix>`_ 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 @@ | ||
from . import wizards |
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,18 @@ | ||
# Copyright 2019-22 ForgeFlow S.L. (https://www.forgeflow.com) | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
{ | ||
"name": "MRP Planned Order Matrix", | ||
"summary": "Allows to create fixed planned orders on a grid view.", | ||
"version": "17.0.1.0.0", | ||
"development_status": "Production/Stable", | ||
"author": "ForgeFlow, Odoo Community Association (OCA)", | ||
"website": "https://github.com/OCA/manufacture", | ||
"category": "Warehouse Management", | ||
"depends": ["mrp_multi_level", "web_widget_x2many_2d_matrix", "date_range"], | ||
"data": [ | ||
"security/ir.model.access.csv", | ||
"wizards/mrp_planned_order_wizard_view.xml", | ||
], | ||
"license": "AGPL-3", | ||
"installable": True, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * mrp_planned_order_matrix | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2024-03-25 21:33+0000\n" | ||
"Last-Translator: Ivorra78 <[email protected]>\n" | ||
"Language-Team: none\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" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "Cancel" | ||
msgstr "Cancelar" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.actions.act_window,name:mrp_planned_order_matrix.action_mrp_planned_order_wizard | ||
#: model:ir.ui.menu,name:mrp_planned_order_matrix.menu_stock_mrp_planned_order_wizard | ||
msgid "Create Fixed Planned Orders" | ||
msgstr "Crear Órdenes Planificadas Fijas" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__create_uid | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__create_uid | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__create_uid | ||
msgid "Created by" | ||
msgstr "Creado por" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__create_date | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__create_date | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__create_date | ||
msgid "Created on" | ||
msgstr "Creado el" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__date_start | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__date_start | ||
msgid "Date From" | ||
msgstr "Fecha Desde" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__date_range_id | ||
msgid "Date Range" | ||
msgstr "Rango Fechas" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__date_range_type_id | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__date_range_type_id | ||
msgid "Date Range Type" | ||
msgstr "Tipo de Rango de Fecha" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__date_end | ||
msgid "Date To" | ||
msgstr "Fecha Hasta" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__date_end | ||
msgid "Date to" | ||
msgstr "Fecha hasta" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__display_name | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__display_name | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__display_name | ||
msgid "Display Name" | ||
msgstr "Mostrar Nombre" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__id | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__id | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__id | ||
msgid "ID" | ||
msgstr "ID" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__line_ids | ||
msgid "Items" | ||
msgstr "Artículos" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet____last_update | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line____last_update | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard____last_update | ||
msgid "Last Modified on" | ||
msgstr "Última Modificación el" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__write_uid | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__write_uid | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__write_uid | ||
msgid "Last Updated by" | ||
msgstr "Última Actualización por" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__write_date | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__write_date | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__write_date | ||
msgid "Last Updated on" | ||
msgstr "Última Actualización el" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#. odoo-python | ||
#: code:addons/mrp_planned_order_matrix/wizards/mrp_planned_order_wizard.py:0 | ||
#: model:ir.model,name:mrp_planned_order_matrix.model_mrp_planned_order_sheet | ||
#, python-format | ||
msgid "MPS Sheet" | ||
msgstr "Hoja MPS" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model,name:mrp_planned_order_matrix.model_mrp_planned_order_sheet_line | ||
msgid "MPS Sheet Line" | ||
msgstr "Línea Hoja MPS" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model,name:mrp_planned_order_matrix.model_mrp_planned_order_wizard | ||
msgid "MPS Wizard" | ||
msgstr "Asistente MPS" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "MPS quantity" | ||
msgstr "Cantidad MPS" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__mrp_planned_order_ids | ||
msgid "Mrp Planned Order" | ||
msgstr "Orden Planificada Mrp" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__value_x | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "Period" | ||
msgstr "Periodo" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#. odoo-python | ||
#: code:addons/mrp_planned_order_matrix/wizards/mrp_planned_order_wizard.py:0 | ||
#, python-format | ||
msgid "Planned Orders" | ||
msgstr "Órdenes Planificadas" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
msgid "Prepare" | ||
msgstr "Preparar" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__value_y | ||
msgid "Product" | ||
msgstr "Producto" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet__product_mrp_area_ids | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__product_mrp_area_id | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_wizard__product_mrp_area_ids | ||
msgid "Product Parameters" | ||
msgstr "Parámetros del Producto" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
msgid "Products" | ||
msgstr "Productos" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model:ir.model.fields,field_description:mrp_planned_order_matrix.field_mrp_planned_order_sheet_line__product_qty | ||
msgid "Quantity" | ||
msgstr "Cantidad" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "TEST DOS" | ||
msgstr "PRUEBA DOS" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#. odoo-python | ||
#: code:addons/mrp_planned_order_matrix/wizards/mrp_planned_order_wizard.py:0 | ||
#, python-format | ||
msgid "The start date cannot be later than the end date." | ||
msgstr "La fecha de inicio no puede ser posterior a la fecha final." | ||
|
||
#. module: mrp_planned_order_matrix | ||
#. odoo-python | ||
#: code:addons/mrp_planned_order_matrix/wizards/mrp_planned_order_wizard.py:0 | ||
#, python-format | ||
msgid "There are no date ranges created." | ||
msgstr "No se han creado intervalos de fechas." | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "Validate" | ||
msgstr "Validar" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#. odoo-python | ||
#: code:addons/mrp_planned_order_matrix/wizards/mrp_planned_order_wizard.py:0 | ||
#, python-format | ||
msgid "You must select at least one Product MRP parameter." | ||
msgstr "Debe seleccionar al menos un parámetro MRP Producto." | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
msgid "or" | ||
msgstr "o" | ||
|
||
#. module: mrp_planned_order_matrix | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.mrp_planned_order_wizard_view_form | ||
#: model_terms:ir.ui.view,arch_db:mrp_planned_order_matrix.stock_mrp_planned_order_sheet_view_form | ||
msgid "to" | ||
msgstr "a" |
Oops, something went wrong.