odoo-addon-stock-restrict-lot 18.0.1.1.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.
- odoo/addons/stock_restrict_lot/README.rst +94 -0
- odoo/addons/stock_restrict_lot/__init__.py +1 -0
- odoo/addons/stock_restrict_lot/__manifest__.py +15 -0
- odoo/addons/stock_restrict_lot/i18n/es.po +73 -0
- odoo/addons/stock_restrict_lot/i18n/hr.po +78 -0
- odoo/addons/stock_restrict_lot/i18n/it.po +77 -0
- odoo/addons/stock_restrict_lot/i18n/nl.po +69 -0
- odoo/addons/stock_restrict_lot/i18n/nl_NL.po +77 -0
- odoo/addons/stock_restrict_lot/i18n/pt.po +69 -0
- odoo/addons/stock_restrict_lot/i18n/pt_BR.po +69 -0
- odoo/addons/stock_restrict_lot/i18n/stock_restrict_lot.pot +68 -0
- odoo/addons/stock_restrict_lot/i18n/tr.po +77 -0
- odoo/addons/stock_restrict_lot/models/__init__.py +4 -0
- odoo/addons/stock_restrict_lot/models/product_product.py +22 -0
- odoo/addons/stock_restrict_lot/models/stock_move.py +160 -0
- odoo/addons/stock_restrict_lot/models/stock_picking.py +12 -0
- odoo/addons/stock_restrict_lot/models/stock_rule.py +17 -0
- odoo/addons/stock_restrict_lot/readme/CONTRIBUTORS.md +3 -0
- odoo/addons/stock_restrict_lot/readme/DESCRIPTION.md +4 -0
- odoo/addons/stock_restrict_lot/static/description/icon.png +0 -0
- odoo/addons/stock_restrict_lot/static/description/index.html +437 -0
- odoo/addons/stock_restrict_lot/tests/__init__.py +1 -0
- odoo/addons/stock_restrict_lot/tests/test_restrict_lot.py +392 -0
- odoo/addons/stock_restrict_lot/views/stock_move_views.xml +41 -0
- odoo/addons/stock_restrict_lot/views/stock_picking.xml +34 -0
- odoo_addon_stock_restrict_lot-18.0.1.1.0.2.dist-info/METADATA +110 -0
- odoo_addon_stock_restrict_lot-18.0.1.1.0.2.dist-info/RECORD +29 -0
- odoo_addon_stock_restrict_lot-18.0.1.1.0.2.dist-info/WHEEL +5 -0
- odoo_addon_stock_restrict_lot-18.0.1.1.0.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,94 @@
|
|
|
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
|
+
Stock Restrict Lot
|
|
7
|
+
==================
|
|
8
|
+
|
|
9
|
+
..
|
|
10
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
11
|
+
!! This file is generated by oca-gen-addon-readme !!
|
|
12
|
+
!! changes will be overwritten. !!
|
|
13
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
+
!! source digest: sha256:25c1df28bea27dac9e51a5ed95b98f3c2d2fd41c30de975db7d00c940bf7cd12
|
|
15
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
|
+
|
|
17
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
18
|
+
:target: https://odoo-community.org/page/development-status
|
|
19
|
+
:alt: Beta
|
|
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%2Fstock--logistics--workflow-lightgray.png?logo=github
|
|
24
|
+
:target: https://github.com/OCA/stock-logistics-workflow/tree/18.0/stock_restrict_lot
|
|
25
|
+
:alt: OCA/stock-logistics-workflow
|
|
26
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
27
|
+
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-18-0/stock-logistics-workflow-18-0-stock_restrict_lot
|
|
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/stock-logistics-workflow&target_branch=18.0
|
|
31
|
+
:alt: Try me on Runboat
|
|
32
|
+
|
|
33
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
34
|
+
|
|
35
|
+
This module adds a field to restrict a stock move to a specific lot. It
|
|
36
|
+
propagates it between chained moves. A move with a restrict lot will
|
|
37
|
+
only be able to reserve or transfer products with the specified lot.
|
|
38
|
+
This module serves as a basis for other modules, it has not effect on
|
|
39
|
+
its own.
|
|
40
|
+
|
|
41
|
+
**Table of contents**
|
|
42
|
+
|
|
43
|
+
.. contents::
|
|
44
|
+
:local:
|
|
45
|
+
|
|
46
|
+
Bug Tracker
|
|
47
|
+
===========
|
|
48
|
+
|
|
49
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-workflow/issues>`_.
|
|
50
|
+
In case of trouble, please check there if your issue has already been reported.
|
|
51
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
52
|
+
`feedback <https://github.com/OCA/stock-logistics-workflow/issues/new?body=module:%20stock_restrict_lot%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
53
|
+
|
|
54
|
+
Do not contact contributors directly about support or help with technical issues.
|
|
55
|
+
|
|
56
|
+
Credits
|
|
57
|
+
=======
|
|
58
|
+
|
|
59
|
+
Authors
|
|
60
|
+
-------
|
|
61
|
+
|
|
62
|
+
* Akretion
|
|
63
|
+
|
|
64
|
+
Contributors
|
|
65
|
+
------------
|
|
66
|
+
|
|
67
|
+
- Florian da Costa <florian.dacosta@akretion.com>
|
|
68
|
+
- Ruchir Shukla <ruchir@bizzappdev.com>
|
|
69
|
+
- Stefan Rijnhart <stefan@opener.amsterdam>
|
|
70
|
+
|
|
71
|
+
Maintainers
|
|
72
|
+
-----------
|
|
73
|
+
|
|
74
|
+
This module is maintained by the OCA.
|
|
75
|
+
|
|
76
|
+
.. image:: https://odoo-community.org/logo.png
|
|
77
|
+
:alt: Odoo Community Association
|
|
78
|
+
:target: https://odoo-community.org
|
|
79
|
+
|
|
80
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
81
|
+
mission is to support the collaborative development of Odoo features and
|
|
82
|
+
promote its widespread use.
|
|
83
|
+
|
|
84
|
+
.. |maintainer-florian-dacosta| image:: https://github.com/florian-dacosta.png?size=40px
|
|
85
|
+
:target: https://github.com/florian-dacosta
|
|
86
|
+
:alt: florian-dacosta
|
|
87
|
+
|
|
88
|
+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
89
|
+
|
|
90
|
+
|maintainer-florian-dacosta|
|
|
91
|
+
|
|
92
|
+
This module is part of the `OCA/stock-logistics-workflow <https://github.com/OCA/stock-logistics-workflow/tree/18.0/stock_restrict_lot>`_ project on GitHub.
|
|
93
|
+
|
|
94
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from . import models
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# License LGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
2
|
+
|
|
3
|
+
{
|
|
4
|
+
"name": "Stock Restrict Lot",
|
|
5
|
+
"summary": "Base module that add back the concept of restrict lot on stock move",
|
|
6
|
+
"version": "18.0.1.1.0",
|
|
7
|
+
"category": "Warehouse Management",
|
|
8
|
+
"website": "https://github.com/OCA/stock-logistics-workflow",
|
|
9
|
+
"author": "Akretion, Odoo Community Association (OCA)",
|
|
10
|
+
"maintainers": ["florian-dacosta"],
|
|
11
|
+
"license": "LGPL-3",
|
|
12
|
+
"installable": True,
|
|
13
|
+
"depends": ["stock"],
|
|
14
|
+
"data": ["views/stock_move_views.xml", "views/stock_picking.xml"],
|
|
15
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
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-11-27 19:34+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: stock_restrict_lot
|
|
20
|
+
#. odoo-python
|
|
21
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
22
|
+
msgid ""
|
|
23
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
24
|
+
msgstr ""
|
|
25
|
+
"Incoherencias entre el cuanto reservado y la restricción de lotes en el "
|
|
26
|
+
"movimiento de existencias"
|
|
27
|
+
|
|
28
|
+
#. module: stock_restrict_lot
|
|
29
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
30
|
+
msgid "Lot"
|
|
31
|
+
msgstr "Lote"
|
|
32
|
+
|
|
33
|
+
#. module: stock_restrict_lot
|
|
34
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
35
|
+
msgid "Product Variant"
|
|
36
|
+
msgstr ""
|
|
37
|
+
|
|
38
|
+
#. module: stock_restrict_lot
|
|
39
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
40
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
41
|
+
msgid "Restrict Lot"
|
|
42
|
+
msgstr "Restringir Lote"
|
|
43
|
+
|
|
44
|
+
#. module: stock_restrict_lot
|
|
45
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
46
|
+
msgid "Stock Move"
|
|
47
|
+
msgstr "Movimiento de Existencias"
|
|
48
|
+
|
|
49
|
+
#. module: stock_restrict_lot
|
|
50
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
51
|
+
msgid "Stock Rule"
|
|
52
|
+
msgstr "Regla de Existencias"
|
|
53
|
+
|
|
54
|
+
#. module: stock_restrict_lot
|
|
55
|
+
#. odoo-python
|
|
56
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
57
|
+
msgid ""
|
|
58
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
59
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
60
|
+
msgstr ""
|
|
61
|
+
|
|
62
|
+
#. module: stock_restrict_lot
|
|
63
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
64
|
+
msgid "Transfer"
|
|
65
|
+
msgstr "Transferencia"
|
|
66
|
+
|
|
67
|
+
#. module: stock_restrict_lot
|
|
68
|
+
#. odoo-python
|
|
69
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
70
|
+
msgid ""
|
|
71
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
72
|
+
"chain has already been done with another Lot/Serial number."
|
|
73
|
+
msgstr ""
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 16.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"PO-Revision-Date: 2025-09-29 10:42+0000\n"
|
|
10
|
+
"Last-Translator: vladimiruvid <vladimir@uvid.hr>\n"
|
|
11
|
+
"Language-Team: none\n"
|
|
12
|
+
"Language: hr\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=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
|
17
|
+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
|
18
|
+
"X-Generator: Weblate 5.10.4\n"
|
|
19
|
+
|
|
20
|
+
#. module: stock_restrict_lot
|
|
21
|
+
#. odoo-python
|
|
22
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
23
|
+
msgid ""
|
|
24
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
25
|
+
msgstr ""
|
|
26
|
+
"Nekonzistentnost među rezerviranim količinama i ograničenjima lotova na "
|
|
27
|
+
"skladišnom kretanju"
|
|
28
|
+
|
|
29
|
+
#. module: stock_restrict_lot
|
|
30
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
31
|
+
msgid "Lot"
|
|
32
|
+
msgstr "Lot"
|
|
33
|
+
|
|
34
|
+
#. module: stock_restrict_lot
|
|
35
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
36
|
+
msgid "Product Variant"
|
|
37
|
+
msgstr "Varijanta proizvoda"
|
|
38
|
+
|
|
39
|
+
#. module: stock_restrict_lot
|
|
40
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
41
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
42
|
+
msgid "Restrict Lot"
|
|
43
|
+
msgstr "Ograniči lot"
|
|
44
|
+
|
|
45
|
+
#. module: stock_restrict_lot
|
|
46
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
47
|
+
msgid "Stock Move"
|
|
48
|
+
msgstr "Skladišno kretanje"
|
|
49
|
+
|
|
50
|
+
#. module: stock_restrict_lot
|
|
51
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
52
|
+
msgid "Stock Rule"
|
|
53
|
+
msgstr "Skladišno pravilo"
|
|
54
|
+
|
|
55
|
+
#. module: stock_restrict_lot
|
|
56
|
+
#. odoo-python
|
|
57
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
58
|
+
msgid ""
|
|
59
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
60
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
61
|
+
msgstr ""
|
|
62
|
+
"Lot(ovi) %(move_line_lot)s koji se premještaju nisu u skladu s Ograničenim "
|
|
63
|
+
"lot(ovi) %(move_restrict_lot)s postavljenim na skladišnici"
|
|
64
|
+
|
|
65
|
+
#. module: stock_restrict_lot
|
|
66
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
67
|
+
msgid "Transfer"
|
|
68
|
+
msgstr "Prijenos"
|
|
69
|
+
|
|
70
|
+
#. module: stock_restrict_lot
|
|
71
|
+
#. odoo-python
|
|
72
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
73
|
+
msgid ""
|
|
74
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
75
|
+
"chain has already been done with another Lot/Serial number."
|
|
76
|
+
msgstr ""
|
|
77
|
+
"Ne možete mijenjati broj lota/serijski broj jer je barem jedan potez u lancu "
|
|
78
|
+
"već obavljen s drugim brojem lota/serijskim brojem."
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 16.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"PO-Revision-Date: 2025-02-27 11:06+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.6.2\n"
|
|
18
|
+
|
|
19
|
+
#. module: stock_restrict_lot
|
|
20
|
+
#. odoo-python
|
|
21
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
22
|
+
msgid ""
|
|
23
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
24
|
+
msgstr ""
|
|
25
|
+
"Inconsistenza tra quanti prenotati e restrizione lotto nel movimento di "
|
|
26
|
+
"magazzino"
|
|
27
|
+
|
|
28
|
+
#. module: stock_restrict_lot
|
|
29
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
30
|
+
msgid "Lot"
|
|
31
|
+
msgstr "Lotto"
|
|
32
|
+
|
|
33
|
+
#. module: stock_restrict_lot
|
|
34
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
35
|
+
msgid "Product Variant"
|
|
36
|
+
msgstr "Variante prodotto"
|
|
37
|
+
|
|
38
|
+
#. module: stock_restrict_lot
|
|
39
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
40
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
41
|
+
msgid "Restrict Lot"
|
|
42
|
+
msgstr "Restrizione lotto"
|
|
43
|
+
|
|
44
|
+
#. module: stock_restrict_lot
|
|
45
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
46
|
+
msgid "Stock Move"
|
|
47
|
+
msgstr "Movimento di magazzino"
|
|
48
|
+
|
|
49
|
+
#. module: stock_restrict_lot
|
|
50
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
51
|
+
msgid "Stock Rule"
|
|
52
|
+
msgstr "Regola di giacenza"
|
|
53
|
+
|
|
54
|
+
#. module: stock_restrict_lot
|
|
55
|
+
#. odoo-python
|
|
56
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
57
|
+
msgid ""
|
|
58
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
59
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
60
|
+
msgstr ""
|
|
61
|
+
"Il lotto %(move_line_lot)s che si sta movimentando è inconsistente con la "
|
|
62
|
+
"restrizione sul lotto %(move_restrict_lot)s impostato nel movimento"
|
|
63
|
+
|
|
64
|
+
#. module: stock_restrict_lot
|
|
65
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
66
|
+
msgid "Transfer"
|
|
67
|
+
msgstr "Trasferimento"
|
|
68
|
+
|
|
69
|
+
#. module: stock_restrict_lot
|
|
70
|
+
#. odoo-python
|
|
71
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
72
|
+
msgid ""
|
|
73
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
74
|
+
"chain has already been done with another Lot/Serial number."
|
|
75
|
+
msgstr ""
|
|
76
|
+
"Non si può modificare il numero di lotto/serie perché è già stata fatto "
|
|
77
|
+
"almeno un movimento nella catena con un altro numero di lotto/serie."
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"Last-Translator: Automatically generated\n"
|
|
10
|
+
"Language-Team: none\n"
|
|
11
|
+
"Language: nl\n"
|
|
12
|
+
"MIME-Version: 1.0\n"
|
|
13
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
|
+
"Content-Transfer-Encoding: \n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
16
|
+
|
|
17
|
+
#. module: stock_restrict_lot
|
|
18
|
+
#. odoo-python
|
|
19
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
20
|
+
msgid ""
|
|
21
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#. module: stock_restrict_lot
|
|
25
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
26
|
+
msgid "Lot"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
#. module: stock_restrict_lot
|
|
30
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
31
|
+
msgid "Product Variant"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#. module: stock_restrict_lot
|
|
35
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
36
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
37
|
+
msgid "Restrict Lot"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#. module: stock_restrict_lot
|
|
41
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
42
|
+
msgid "Stock Move"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#. module: stock_restrict_lot
|
|
46
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
47
|
+
msgid "Stock Rule"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#. module: stock_restrict_lot
|
|
51
|
+
#. odoo-python
|
|
52
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
53
|
+
msgid ""
|
|
54
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
55
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#. module: stock_restrict_lot
|
|
59
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
60
|
+
msgid "Transfer"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#. module: stock_restrict_lot
|
|
64
|
+
#. odoo-python
|
|
65
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
66
|
+
msgid ""
|
|
67
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
68
|
+
"chain has already been done with another Lot/Serial number."
|
|
69
|
+
msgstr ""
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"PO-Revision-Date: 2025-04-11 20:50+0000\n"
|
|
10
|
+
"Last-Translator: Bosd <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>\n"
|
|
11
|
+
"Language-Team: none\n"
|
|
12
|
+
"Language: nl_NL\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.10.4\n"
|
|
18
|
+
|
|
19
|
+
#. module: stock_restrict_lot
|
|
20
|
+
#. odoo-python
|
|
21
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
22
|
+
msgid ""
|
|
23
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
24
|
+
msgstr ""
|
|
25
|
+
"Inconsistenties tussen gereserveerde hoeveelheid en lotrestrictie op "
|
|
26
|
+
"voorraadmutatie"
|
|
27
|
+
|
|
28
|
+
#. module: stock_restrict_lot
|
|
29
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
30
|
+
msgid "Lot"
|
|
31
|
+
msgstr "Lot"
|
|
32
|
+
|
|
33
|
+
#. module: stock_restrict_lot
|
|
34
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
35
|
+
msgid "Product Variant"
|
|
36
|
+
msgstr "Productvariant"
|
|
37
|
+
|
|
38
|
+
#. module: stock_restrict_lot
|
|
39
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
40
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
41
|
+
msgid "Restrict Lot"
|
|
42
|
+
msgstr "Lot Beperken"
|
|
43
|
+
|
|
44
|
+
#. module: stock_restrict_lot
|
|
45
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
46
|
+
msgid "Stock Move"
|
|
47
|
+
msgstr "Voorraadmutatie"
|
|
48
|
+
|
|
49
|
+
#. module: stock_restrict_lot
|
|
50
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
51
|
+
msgid "Stock Rule"
|
|
52
|
+
msgstr "Voorraadregel"
|
|
53
|
+
|
|
54
|
+
#. module: stock_restrict_lot
|
|
55
|
+
#. odoo-python
|
|
56
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
57
|
+
msgid ""
|
|
58
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
59
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
60
|
+
msgstr ""
|
|
61
|
+
"Het/de lot(s) %(move_line_lot)s dat wordt verplaatst, is/zijn inconsistent "
|
|
62
|
+
"met de lotrestrictie %(move_restrict_lot)s die is ingesteld op de mutatie"
|
|
63
|
+
|
|
64
|
+
#. module: stock_restrict_lot
|
|
65
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
66
|
+
msgid "Transfer"
|
|
67
|
+
msgstr "Overdracht"
|
|
68
|
+
|
|
69
|
+
#. module: stock_restrict_lot
|
|
70
|
+
#. odoo-python
|
|
71
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
72
|
+
msgid ""
|
|
73
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
74
|
+
"chain has already been done with another Lot/Serial number."
|
|
75
|
+
msgstr ""
|
|
76
|
+
"U kunt het Lot-/serienummer niet wijzigen omdat ten minste één mutatie in de "
|
|
77
|
+
"keten al is uitgevoerd met een ander Lot-/serienummer."
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"Last-Translator: Automatically generated\n"
|
|
10
|
+
"Language-Team: none\n"
|
|
11
|
+
"Language: pt\n"
|
|
12
|
+
"MIME-Version: 1.0\n"
|
|
13
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
|
+
"Content-Transfer-Encoding: \n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
16
|
+
|
|
17
|
+
#. module: stock_restrict_lot
|
|
18
|
+
#. odoo-python
|
|
19
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
20
|
+
msgid ""
|
|
21
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#. module: stock_restrict_lot
|
|
25
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
26
|
+
msgid "Lot"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
#. module: stock_restrict_lot
|
|
30
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
31
|
+
msgid "Product Variant"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#. module: stock_restrict_lot
|
|
35
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
36
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
37
|
+
msgid "Restrict Lot"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#. module: stock_restrict_lot
|
|
41
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
42
|
+
msgid "Stock Move"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#. module: stock_restrict_lot
|
|
46
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
47
|
+
msgid "Stock Rule"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#. module: stock_restrict_lot
|
|
51
|
+
#. odoo-python
|
|
52
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
53
|
+
msgid ""
|
|
54
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
55
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#. module: stock_restrict_lot
|
|
59
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
60
|
+
msgid "Transfer"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#. module: stock_restrict_lot
|
|
64
|
+
#. odoo-python
|
|
65
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
66
|
+
msgid ""
|
|
67
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
68
|
+
"chain has already been done with another Lot/Serial number."
|
|
69
|
+
msgstr ""
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * stock_restrict_lot
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 18.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"Last-Translator: Automatically generated\n"
|
|
10
|
+
"Language-Team: none\n"
|
|
11
|
+
"Language: pt_BR\n"
|
|
12
|
+
"MIME-Version: 1.0\n"
|
|
13
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
14
|
+
"Content-Transfer-Encoding: \n"
|
|
15
|
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
|
16
|
+
|
|
17
|
+
#. module: stock_restrict_lot
|
|
18
|
+
#. odoo-python
|
|
19
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
20
|
+
msgid ""
|
|
21
|
+
"Inconsistencies between reserved quant and lot restriction on stock move"
|
|
22
|
+
msgstr ""
|
|
23
|
+
|
|
24
|
+
#. module: stock_restrict_lot
|
|
25
|
+
#: model_terms:ir.ui.view,arch_db:stock_restrict_lot.custom_stock_picking_search_view
|
|
26
|
+
msgid "Lot"
|
|
27
|
+
msgstr ""
|
|
28
|
+
|
|
29
|
+
#. module: stock_restrict_lot
|
|
30
|
+
#: model:ir.model,name:stock_restrict_lot.model_product_product
|
|
31
|
+
msgid "Product Variant"
|
|
32
|
+
msgstr ""
|
|
33
|
+
|
|
34
|
+
#. module: stock_restrict_lot
|
|
35
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_move__restrict_lot_id
|
|
36
|
+
#: model:ir.model.fields,field_description:stock_restrict_lot.field_stock_picking__restrict_lot_id
|
|
37
|
+
msgid "Restrict Lot"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
40
|
+
#. module: stock_restrict_lot
|
|
41
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_move
|
|
42
|
+
msgid "Stock Move"
|
|
43
|
+
msgstr ""
|
|
44
|
+
|
|
45
|
+
#. module: stock_restrict_lot
|
|
46
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_rule
|
|
47
|
+
msgid "Stock Rule"
|
|
48
|
+
msgstr ""
|
|
49
|
+
|
|
50
|
+
#. module: stock_restrict_lot
|
|
51
|
+
#. odoo-python
|
|
52
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
53
|
+
msgid ""
|
|
54
|
+
"The lot(s) %(move_line_lot)s being moved is inconsistent with the "
|
|
55
|
+
"restriction on lot %(move_restrict_lot)s set on the move"
|
|
56
|
+
msgstr ""
|
|
57
|
+
|
|
58
|
+
#. module: stock_restrict_lot
|
|
59
|
+
#: model:ir.model,name:stock_restrict_lot.model_stock_picking
|
|
60
|
+
msgid "Transfer"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
63
|
+
#. module: stock_restrict_lot
|
|
64
|
+
#. odoo-python
|
|
65
|
+
#: code:addons/stock_restrict_lot/models/stock_move.py:0
|
|
66
|
+
msgid ""
|
|
67
|
+
"You can't modify the Lot/Serial number because at least one move in the "
|
|
68
|
+
"chain has already been done with another Lot/Serial number."
|
|
69
|
+
msgstr ""
|