odoo-addon-mrp-multi-level-estimate 16.0.1.2.0.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. odoo/addons/mrp_multi_level_estimate/README.rst +98 -0
  2. odoo/addons/mrp_multi_level_estimate/__init__.py +2 -0
  3. odoo/addons/mrp_multi_level_estimate/__manifest__.py +19 -0
  4. odoo/addons/mrp_multi_level_estimate/i18n/es.po +117 -0
  5. odoo/addons/mrp_multi_level_estimate/i18n/it.po +137 -0
  6. odoo/addons/mrp_multi_level_estimate/i18n/mrp_multi_level_estimate.pot +83 -0
  7. odoo/addons/mrp_multi_level_estimate/models/__init__.py +2 -0
  8. odoo/addons/mrp_multi_level_estimate/models/mrp_area.py +38 -0
  9. odoo/addons/mrp_multi_level_estimate/models/product_mrp_area.py +26 -0
  10. odoo/addons/mrp_multi_level_estimate/readme/CONFIGURE.rst +5 -0
  11. odoo/addons/mrp_multi_level_estimate/readme/CONTRIBUTORS.rst +2 -0
  12. odoo/addons/mrp_multi_level_estimate/readme/DESCRIPTION.rst +1 -0
  13. odoo/addons/mrp_multi_level_estimate/static/description/icon.png +0 -0
  14. odoo/addons/mrp_multi_level_estimate/static/description/index.html +441 -0
  15. odoo/addons/mrp_multi_level_estimate/tests/__init__.py +1 -0
  16. odoo/addons/mrp_multi_level_estimate/tests/test_mrp_multi_level_estimate.py +463 -0
  17. odoo/addons/mrp_multi_level_estimate/views/mrp_area_views.xml +13 -0
  18. odoo/addons/mrp_multi_level_estimate/views/product_mrp_area_views.xml +14 -0
  19. odoo/addons/mrp_multi_level_estimate/wizards/__init__.py +1 -0
  20. odoo/addons/mrp_multi_level_estimate/wizards/mrp_multi_level.py +138 -0
  21. odoo_addon_mrp_multi_level_estimate-16.0.1.2.0.2.dist-info/METADATA +116 -0
  22. odoo_addon_mrp_multi_level_estimate-16.0.1.2.0.2.dist-info/RECORD +24 -0
  23. odoo_addon_mrp_multi_level_estimate-16.0.1.2.0.2.dist-info/WHEEL +5 -0
  24. odoo_addon_mrp_multi_level_estimate-16.0.1.2.0.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,98 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
5
+ ========================
6
+ MRP Multi Level Estimate
7
+ ========================
8
+
9
+ ..
10
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11
+ !! This file is generated by oca-gen-addon-readme !!
12
+ !! changes will be overwritten. !!
13
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14
+ !! source digest: sha256:4c4f051037f1a18c11bfa0072d8bc2a5dd460b21b335203bd47d9019603b66f3
15
+ !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16
+
17
+ .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
18
+ :target: https://odoo-community.org/page/development-status
19
+ :alt: Production/Stable
20
+ .. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
21
+ :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
22
+ :alt: License: LGPL-3
23
+ .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github
24
+ :target: https://github.com/OCA/manufacture/tree/16.0/mrp_multi_level_estimate
25
+ :alt: OCA/manufacture
26
+ .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27
+ :target: https://translation.odoo-community.org/projects/manufacture-16-0/manufacture-16-0-mrp_multi_level_estimate
28
+ :alt: Translate me on Weblate
29
+ .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/manufacture&target_branch=16.0
31
+ :alt: Try me on Runboat
32
+
33
+ |badge1| |badge2| |badge3| |badge4| |badge5|
34
+
35
+ Integration for MRP Multi Level and `Stock Demand Estimates <https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_demand_estimate>`_ system.
36
+
37
+ **Table of contents**
38
+
39
+ .. contents::
40
+ :local:
41
+
42
+ Configuration
43
+ =============
44
+
45
+ You can edit how to consolidate your estimates as demand at product MRP area
46
+ level using the field *Group Days of Estimates*. This number represents the
47
+ days to group your estimates as demand for the MRP, e.g: if set to 7, you will
48
+ have your estimates (regardless of the date range used) grouped in weekly
49
+ demand.
50
+
51
+ Bug Tracker
52
+ ===========
53
+
54
+ Bugs are tracked on `GitHub Issues <https://github.com/OCA/manufacture/issues>`_.
55
+ In case of trouble, please check there if your issue has already been reported.
56
+ If you spotted it first, help us to smash it by providing a detailed and welcomed
57
+ `feedback <https://github.com/OCA/manufacture/issues/new?body=module:%20mrp_multi_level_estimate%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
58
+
59
+ Do not contact contributors directly about support or help with technical issues.
60
+
61
+ Credits
62
+ =======
63
+
64
+ Authors
65
+ ~~~~~~~
66
+
67
+ * ForgeFlow
68
+
69
+ Contributors
70
+ ~~~~~~~~~~~~
71
+
72
+ * Lois Rilo <lois.rilo@forgeflow.com>
73
+ * Pimolnat Suntian<pimolnats@ecosoft.co.th>
74
+
75
+ Maintainers
76
+ ~~~~~~~~~~~
77
+
78
+ This module is maintained by the OCA.
79
+
80
+ .. image:: https://odoo-community.org/logo.png
81
+ :alt: Odoo Community Association
82
+ :target: https://odoo-community.org
83
+
84
+ OCA, or the Odoo Community Association, is a nonprofit organization whose
85
+ mission is to support the collaborative development of Odoo features and
86
+ promote its widespread use.
87
+
88
+ .. |maintainer-LoisRForgeFlow| image:: https://github.com/LoisRForgeFlow.png?size=40px
89
+ :target: https://github.com/LoisRForgeFlow
90
+ :alt: LoisRForgeFlow
91
+
92
+ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
93
+
94
+ |maintainer-LoisRForgeFlow|
95
+
96
+ This module is part of the `OCA/manufacture <https://github.com/OCA/manufacture/tree/16.0/mrp_multi_level_estimate>`_ project on GitHub.
97
+
98
+ You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -0,0 +1,2 @@
1
+ from . import models
2
+ from . import wizards
@@ -0,0 +1,19 @@
1
+ # Copyright 2019-23 ForgeFlow S.L. (http://www.forgeflow.com)
2
+ # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
3
+
4
+ {
5
+ "name": "MRP Multi Level Estimate",
6
+ "version": "16.0.1.2.0",
7
+ "development_status": "Production/Stable",
8
+ "license": "LGPL-3",
9
+ "author": "ForgeFlow, Odoo Community Association (OCA)",
10
+ "maintainers": ["LoisRForgeFlow"],
11
+ "summary": "Allows to consider demand estimates using MRP multi level.",
12
+ "website": "https://github.com/OCA/manufacture",
13
+ "category": "Manufacturing",
14
+ "depends": ["mrp_multi_level", "stock_demand_estimate"],
15
+ "data": ["views/product_mrp_area_views.xml", "views/mrp_area_views.xml"],
16
+ "installable": True,
17
+ "application": False,
18
+ "auto_install": True,
19
+ }
@@ -0,0 +1,117 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * mrp_multi_level_estimate
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2023-09-05 22:36+0000\n"
10
+ "Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
11
+ "Language-Team: none\n"
12
+ "Language: es\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: \n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 4.17\n"
18
+
19
+ #. module: mrp_multi_level_estimate
20
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__all
21
+ msgid "Always consider all sources"
22
+ msgstr "Tenga siempre en cuenta todas las fuentes"
23
+
24
+ #. module: mrp_multi_level_estimate
25
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
26
+ msgid ""
27
+ "Define the strategy to follow in MRP multi level when there is acoexistence "
28
+ "of demand from demand estimates and other sources.\n"
29
+ "* Always consider all sources: nothing is excluded or ignored.\n"
30
+ "* Ignore other sources for products with estimates: When there are estimates "
31
+ "entered for product and they are in a present or future period, all other "
32
+ "sources of demand are ignored for those products.\n"
33
+ "* Ignore other sources during periods with estimates: When you create demand "
34
+ "estimates for a period and product, other sources of demand will be ignored "
35
+ "during that period for those products.\n"
36
+ "* Ignore estimates: Completely ignore demand estimates."
37
+ msgstr ""
38
+
39
+ #. module: mrp_multi_level_estimate
40
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
41
+ msgid "Demand Estimates and Other Demand Sources Strategy"
42
+ msgstr "Estimaciones de la demanda y otras fuentes de demanda Estrategia"
43
+
44
+ #. module: mrp_multi_level_estimate
45
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
46
+ msgid "Group Days of Estimates"
47
+ msgstr "Grupo Días de estimación"
48
+
49
+ #. module: mrp_multi_level_estimate
50
+ #: model:ir.model.constraint,message:mrp_multi_level_estimate.constraint_product_mrp_area_group_estimate_days_check
51
+ msgid "Group Days of Estimates must be greater than or equal to zero."
52
+ msgstr "Los Días de Estimación del Grupo deben ser mayores o iguales a cero."
53
+
54
+ #. module: mrp_multi_level_estimate
55
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_estimates
56
+ msgid "Ignore estimates"
57
+ msgstr ""
58
+
59
+ #. module: mrp_multi_level_estimate
60
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_overlapping
61
+ msgid "Ignore other sources during periods with estimates"
62
+ msgstr "Ignorar otras fuentes durante los períodos con estimaciones"
63
+
64
+ #. module: mrp_multi_level_estimate
65
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_others_if_estimates
66
+ msgid "Ignore other sources for products with estimates"
67
+ msgstr "Ignorar otras fuentes para productos con estimaciones"
68
+
69
+ #. module: mrp_multi_level_estimate
70
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_area
71
+ msgid "MRP Area"
72
+ msgstr "Area MRP"
73
+
74
+ #. module: mrp_multi_level_estimate
75
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_multi_level
76
+ msgid "Multi Level MRP"
77
+ msgstr "MRP Multi Nivel"
78
+
79
+ #. module: mrp_multi_level_estimate
80
+ #: model:ir.model,name:mrp_multi_level_estimate.model_product_mrp_area
81
+ msgid "Product MRP Area"
82
+ msgstr "Producto Área MRP"
83
+
84
+ #. module: mrp_multi_level_estimate
85
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
86
+ msgid ""
87
+ "The days to group your estimates as demand for the MRP.It can be different "
88
+ "from the length of the date ranges you use in the estimates but it should "
89
+ "not be greater, in that caseonly grouping until the total length of the date "
90
+ "range will be done."
91
+ msgstr ""
92
+ "Los días a agrupar sus estimaciones como demanda para el MRP.Puede ser "
93
+ "diferente a la longitud de los rangos de fechas que utilice en las "
94
+ "estimaciones pero no debe ser mayor, en ese caso sólo se agrupará hasta la "
95
+ "longitud total del rango de fechas."
96
+
97
+ #~ msgid ""
98
+ #~ "Define the strategy to follow in MRP multi level when there is "
99
+ #~ "acoexistence of demand from demand estimates and other sources.\n"
100
+ #~ "* Always consider all sources: nothing is excluded or ignored.\n"
101
+ #~ "* Ignore other sources for products with estimates: When there are "
102
+ #~ "estimates entered for product and they are in a present or future period, "
103
+ #~ "all other sources of demand are ignored for those products.\n"
104
+ #~ "* Ignore other sources during periods with estimates: When you create "
105
+ #~ "demand estimates for a period and product, other sources of demand will "
106
+ #~ "be ignored during that period for those products."
107
+ #~ msgstr ""
108
+ #~ "Definir la estrategia a seguir en MRP multinivel cuando hay acoexistencia "
109
+ #~ "de demanda procedente de estimaciones de demanda y de otras fuentes.\n"
110
+ #~ "* Considerar siempre todas las fuentes: nada se excluye ni se ignora.\n"
111
+ #~ "* Ignorar otras fuentes para productos con estimaciones: Cuando hay "
112
+ #~ "estimaciones ingresadas para un producto y están en un período presente o "
113
+ #~ "futuro, todas las otras fuentes de demanda son ignoradas para esos "
114
+ #~ "productos.\n"
115
+ #~ "* Ignorar otras fuentes durante periodos con estimaciones: Cuando se "
116
+ #~ "crean estimaciones de demanda para un periodo y producto, se ignorarán "
117
+ #~ "otras fuentes de demanda durante ese periodo para esos productos."
@@ -0,0 +1,137 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * mrp_multi_level_estimate
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 15.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2026-01-22 07:50+0000\n"
10
+ "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11
+ "Language-Team: none\n"
12
+ "Language: it\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: \n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 5.15.2\n"
18
+
19
+ #. module: mrp_multi_level_estimate
20
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__all
21
+ msgid "Always consider all sources"
22
+ msgstr "Considera sempre tutte le fonti"
23
+
24
+ #. module: mrp_multi_level_estimate
25
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
26
+ msgid ""
27
+ "Define the strategy to follow in MRP multi level when there is acoexistence "
28
+ "of demand from demand estimates and other sources.\n"
29
+ "* Always consider all sources: nothing is excluded or ignored.\n"
30
+ "* Ignore other sources for products with estimates: When there are estimates "
31
+ "entered for product and they are in a present or future period, all other "
32
+ "sources of demand are ignored for those products.\n"
33
+ "* Ignore other sources during periods with estimates: When you create demand "
34
+ "estimates for a period and product, other sources of demand will be ignored "
35
+ "during that period for those products.\n"
36
+ "* Ignore estimates: Completely ignore demand estimates."
37
+ msgstr ""
38
+ "Definire la strategia da seguire in un MRP multilivello quando coesistono "
39
+ "domanda proveniente da stime della domanda e altre fonti.\n"
40
+ "* Considerare sempre tutte le fonti: nulla viene escluso o ignorato.\n"
41
+ "* Ignorare altre fonti per prodotti con stime: quando sono inserite stime "
42
+ "per un prodotto e si riferiscono a un periodo presente o futuro, tutte le "
43
+ "altre fonti di domanda vengono ignorate per quei prodotti.\n"
44
+ "* Ignorare altre fonti durante i periodi con stime: quando si creano stime "
45
+ "della domanda per un periodo e un prodotto, le altre fonti di domanda "
46
+ "verranno ignorate durante quel periodo per quei prodotti.\n"
47
+ "* Ignorare stime: ignorare completamente le stime della domanda."
48
+
49
+ #. module: mrp_multi_level_estimate
50
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
51
+ msgid "Demand Estimates and Other Demand Sources Strategy"
52
+ msgstr "Strategia per la domanda stimata e altre fonti di domanda"
53
+
54
+ #. module: mrp_multi_level_estimate
55
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
56
+ msgid "Group Days of Estimates"
57
+ msgstr "Gruppo giorni delle stime"
58
+
59
+ #. module: mrp_multi_level_estimate
60
+ #: model:ir.model.constraint,message:mrp_multi_level_estimate.constraint_product_mrp_area_group_estimate_days_check
61
+ msgid "Group Days of Estimates must be greater than or equal to zero."
62
+ msgstr "Il gruppo dei gironi delle stime deve essere maggiore o uguale a zero."
63
+
64
+ #. module: mrp_multi_level_estimate
65
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_estimates
66
+ msgid "Ignore estimates"
67
+ msgstr "Ignora stime"
68
+
69
+ #. module: mrp_multi_level_estimate
70
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_overlapping
71
+ msgid "Ignore other sources during periods with estimates"
72
+ msgstr "Ignora altre fonti nei periodi con stime"
73
+
74
+ #. module: mrp_multi_level_estimate
75
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_others_if_estimates
76
+ msgid "Ignore other sources for products with estimates"
77
+ msgstr "Ignora altre fonti per prodotti con stime"
78
+
79
+ #. module: mrp_multi_level_estimate
80
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_area
81
+ msgid "MRP Area"
82
+ msgstr "Area MRP"
83
+
84
+ #. module: mrp_multi_level_estimate
85
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_multi_level
86
+ msgid "Multi Level MRP"
87
+ msgstr "MRP multi livello"
88
+
89
+ #. module: mrp_multi_level_estimate
90
+ #: model:ir.model,name:mrp_multi_level_estimate.model_product_mrp_area
91
+ msgid "Product MRP Area"
92
+ msgstr "Area MRP prodotto"
93
+
94
+ #. module: mrp_multi_level_estimate
95
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
96
+ msgid ""
97
+ "The days to group your estimates as demand for the MRP.It can be different "
98
+ "from the length of the date ranges you use in the estimates but it should "
99
+ "not be greater, in that caseonly grouping until the total length of the date "
100
+ "range will be done."
101
+ msgstr ""
102
+ "I giorni per raggruppare le stime come domanda per l'MRP. Può essere diverso "
103
+ "dalla lunghezza del periodo delle date utilizzate nelle stime ma non "
104
+ "dovrebbe essere maggiore, in tal caso verrà eseguito solo il raggruppamento "
105
+ "fino alla lunghezza totale dell'intervallo di date."
106
+
107
+ #~ msgid ""
108
+ #~ "Define the strategy to follow in MRP multi level when there is "
109
+ #~ "acoexistence of demand from demand estimates and other sources.\n"
110
+ #~ "* Always consider all sources: nothing is excluded or ignored.\n"
111
+ #~ "* Ignore other sources for products with estimates: When there are "
112
+ #~ "estimates entered for product and they are in a present or future period, "
113
+ #~ "all other sources of demand are ignored for those products.\n"
114
+ #~ "* Ignore other sources during periods with estimates: When you create "
115
+ #~ "demand estimates for a period and product, other sources of demand will "
116
+ #~ "be ignored during that period for those products."
117
+ #~ msgstr ""
118
+ #~ "Definisce la strategia da seguire con l'MRP multi livello quando c'è la "
119
+ #~ "coesistenza di domanda dalle stime e altre fonti.\n"
120
+ #~ "* Considera sempre tutte le fonti: niente è escluso o ignorato.\n"
121
+ #~ "* Ignora altre fonti quando ci sono stime: quando ci sono stime per il "
122
+ #~ "prodotto e sono per periodi presenti o futuri, tutte le altre fonti di "
123
+ #~ "richieste vengono ignorate per il prodotto.\n"
124
+ #~ "* Ignora altre fonti nel periodo delle stime: quando si crea una "
125
+ #~ "richiesta da stime per un periodo e prodotto, altre fonti di richiesta "
126
+ #~ "verranno ignorate per il periodo di quel prodotto."
127
+
128
+ #~ msgid ""
129
+ #~ "The days to group your estimates as demand for the MRP.It can be "
130
+ #~ "different from the length of the date ranges you use in the estimates but "
131
+ #~ "it should not be greater, in that caseonly grouping until the total "
132
+ #~ "lenght of the date range will be done."
133
+ #~ msgstr ""
134
+ #~ "I giorni per raggruppare le stime come richiesta per l'MRP. Può differire "
135
+ #~ "dall'ampiezza dell'intervallo di date utilizzato per la stima ma non "
136
+ #~ "dovrebbe essere maggiore, solo in quel caso verrà eseguito il "
137
+ #~ "raggruppamento fino all'ampiezza totale dell'intervallo di date."
@@ -0,0 +1,83 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * mrp_multi_level_estimate
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: \n"
14
+ "Plural-Forms: \n"
15
+
16
+ #. module: mrp_multi_level_estimate
17
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__all
18
+ msgid "Always consider all sources"
19
+ msgstr ""
20
+
21
+ #. module: mrp_multi_level_estimate
22
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
23
+ msgid ""
24
+ "Define the strategy to follow in MRP multi level when there is acoexistence of demand from demand estimates and other sources.\n"
25
+ "* Always consider all sources: nothing is excluded or ignored.\n"
26
+ "* Ignore other sources for products with estimates: When there are estimates entered for product and they are in a present or future period, all other sources of demand are ignored for those products.\n"
27
+ "* Ignore other sources during periods with estimates: When you create demand estimates for a period and product, other sources of demand will be ignored during that period for those products.\n"
28
+ "* Ignore estimates: Completely ignore demand estimates."
29
+ msgstr ""
30
+
31
+ #. module: mrp_multi_level_estimate
32
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_mrp_area__estimate_demand_and_other_sources_strat
33
+ msgid "Demand Estimates and Other Demand Sources Strategy"
34
+ msgstr ""
35
+
36
+ #. module: mrp_multi_level_estimate
37
+ #: model:ir.model.fields,field_description:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
38
+ msgid "Group Days of Estimates"
39
+ msgstr ""
40
+
41
+ #. module: mrp_multi_level_estimate
42
+ #: model:ir.model.constraint,message:mrp_multi_level_estimate.constraint_product_mrp_area_group_estimate_days_check
43
+ msgid "Group Days of Estimates must be greater than or equal to zero."
44
+ msgstr ""
45
+
46
+ #. module: mrp_multi_level_estimate
47
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_estimates
48
+ msgid "Ignore estimates"
49
+ msgstr ""
50
+
51
+ #. module: mrp_multi_level_estimate
52
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_overlapping
53
+ msgid "Ignore other sources during periods with estimates"
54
+ msgstr ""
55
+
56
+ #. module: mrp_multi_level_estimate
57
+ #: model:ir.model.fields.selection,name:mrp_multi_level_estimate.selection__mrp_area__estimate_demand_and_other_sources_strat__ignore_others_if_estimates
58
+ msgid "Ignore other sources for products with estimates"
59
+ msgstr ""
60
+
61
+ #. module: mrp_multi_level_estimate
62
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_area
63
+ msgid "MRP Area"
64
+ msgstr ""
65
+
66
+ #. module: mrp_multi_level_estimate
67
+ #: model:ir.model,name:mrp_multi_level_estimate.model_mrp_multi_level
68
+ msgid "Multi Level MRP"
69
+ msgstr ""
70
+
71
+ #. module: mrp_multi_level_estimate
72
+ #: model:ir.model,name:mrp_multi_level_estimate.model_product_mrp_area
73
+ msgid "Product MRP Area"
74
+ msgstr ""
75
+
76
+ #. module: mrp_multi_level_estimate
77
+ #: model:ir.model.fields,help:mrp_multi_level_estimate.field_product_mrp_area__group_estimate_days
78
+ msgid ""
79
+ "The days to group your estimates as demand for the MRP.It can be different "
80
+ "from the length of the date ranges you use in the estimates but it should "
81
+ "not be greater, in that caseonly grouping until the total length of the date"
82
+ " range will be done."
83
+ msgstr ""
@@ -0,0 +1,2 @@
1
+ from . import product_mrp_area
2
+ from . import mrp_area
@@ -0,0 +1,38 @@
1
+ # Copyright 2022 ForgeFlow S.L. (http://www.forgeflow.com)
2
+ # - Lois Rilo Antelo <lois.rilo@forgeflow.com>
3
+ # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
4
+
5
+ from odoo import fields, models
6
+
7
+
8
+ class MRPArea(models.Model):
9
+ _inherit = "mrp.area"
10
+
11
+ estimate_demand_and_other_sources_strat = fields.Selection(
12
+ string="Demand Estimates and Other Demand Sources Strategy",
13
+ selection=[
14
+ ("all", "Always consider all sources"),
15
+ (
16
+ "ignore_others_if_estimates",
17
+ "Ignore other sources for products with estimates",
18
+ ),
19
+ (
20
+ "ignore_overlapping",
21
+ "Ignore other sources during periods with estimates",
22
+ ),
23
+ ("ignore_estimates", "Ignore estimates"),
24
+ ],
25
+ default="all",
26
+ help="Define the strategy to follow in MRP multi level when there is a"
27
+ "coexistence of demand from demand estimates and other sources.\n"
28
+ "* Always consider all sources: nothing is excluded or ignored.\n"
29
+ "* Ignore other sources for products with estimates: When there "
30
+ "are estimates entered for product and they are in a present or "
31
+ "future period, all other sources of demand are ignored for those "
32
+ "products.\n"
33
+ "* Ignore other sources during periods with estimates: When "
34
+ "you create demand estimates for a period and product, "
35
+ "other sources of demand will be ignored during that period "
36
+ "for those products.\n"
37
+ "* Ignore estimates: Completely ignore demand estimates.",
38
+ )
@@ -0,0 +1,26 @@
1
+ # Copyright 2019-20 ForgeFlow S.L. (http://www.forgeflow.com)
2
+ # - Lois Rilo Antelo <lois.rilo@forgeflow.com>
3
+ # License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
4
+
5
+ from odoo import fields, models
6
+
7
+
8
+ class ProductMRPArea(models.Model):
9
+ _inherit = "product.mrp.area"
10
+
11
+ group_estimate_days = fields.Integer(
12
+ string="Group Days of Estimates",
13
+ default=1,
14
+ help="The days to group your estimates as demand for the MRP."
15
+ "It can be different from the length of the date ranges you "
16
+ "use in the estimates but it should not be greater, in that case"
17
+ "only grouping until the total length of the date range will be done.",
18
+ )
19
+
20
+ _sql_constraints = [
21
+ (
22
+ "group_estimate_days_check",
23
+ "CHECK( group_estimate_days >= 0 )",
24
+ "Group Days of Estimates must be greater than or equal to zero.",
25
+ ),
26
+ ]
@@ -0,0 +1,5 @@
1
+ You can edit how to consolidate your estimates as demand at product MRP area
2
+ level using the field *Group Days of Estimates*. This number represents the
3
+ days to group your estimates as demand for the MRP, e.g: if set to 7, you will
4
+ have your estimates (regardless of the date range used) grouped in weekly
5
+ demand.
@@ -0,0 +1,2 @@
1
+ * Lois Rilo <lois.rilo@forgeflow.com>
2
+ * Pimolnat Suntian<pimolnats@ecosoft.co.th>
@@ -0,0 +1 @@
1
+ Integration for MRP Multi Level and `Stock Demand Estimates <https://github.com/OCA/stock-logistics-warehouse/tree/12.0/stock_demand_estimate>`_ system.