odoo-addon-barcodes-generator-location 16.0.1.0.0.1__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/barcodes_generator_location/README.rst +130 -0
- odoo/addons/barcodes_generator_location/__init__.py +2 -0
- odoo/addons/barcodes_generator_location/__manifest__.py +19 -0
- odoo/addons/barcodes_generator_location/demo/barcode_rule.xml +21 -0
- odoo/addons/barcodes_generator_location/demo/function.xml +17 -0
- odoo/addons/barcodes_generator_location/demo/ir_sequence.xml +12 -0
- odoo/addons/barcodes_generator_location/demo/stock_location.xml +12 -0
- odoo/addons/barcodes_generator_location/hooks.py +13 -0
- odoo/addons/barcodes_generator_location/i18n/barcodes_generator_location.pot +82 -0
- odoo/addons/barcodes_generator_location/i18n/es.po +95 -0
- odoo/addons/barcodes_generator_location/i18n/fr.po +95 -0
- odoo/addons/barcodes_generator_location/i18n/hr.po +96 -0
- odoo/addons/barcodes_generator_location/i18n/nl_NL.po +96 -0
- odoo/addons/barcodes_generator_location/models/__init__.py +3 -0
- odoo/addons/barcodes_generator_location/models/barcode_rule.py +11 -0
- odoo/addons/barcodes_generator_location/models/stock_location.py +48 -0
- odoo/addons/barcodes_generator_location/readme/CONFIGURE.rst +2 -0
- odoo/addons/barcodes_generator_location/readme/CONTRIBUTORS.rst +5 -0
- odoo/addons/barcodes_generator_location/readme/CREDITS.rst +2 -0
- odoo/addons/barcodes_generator_location/readme/DESCRIPTION.rst +20 -0
- odoo/addons/barcodes_generator_location/readme/USAGE.rst +15 -0
- odoo/addons/barcodes_generator_location/static/description/icon.png +0 -0
- odoo/addons/barcodes_generator_location/static/description/index.html +487 -0
- odoo/addons/barcodes_generator_location/static/description/stock_location_sequence_generation.png +0 -0
- odoo/addons/barcodes_generator_location/tests/__init__.py +2 -0
- odoo/addons/barcodes_generator_location/tests/test_barcode_generator.py +27 -0
- odoo/addons/barcodes_generator_location/views/stock_location.xml +56 -0
- odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/METADATA +149 -0
- odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/RECORD +31 -0
- odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/WHEEL +5 -0
- odoo_addon_barcodes_generator_location-16.0.1.0.0.1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,130 @@
|
|
1
|
+
=====================================
|
2
|
+
Generate Barcodes for Stock Locations
|
3
|
+
=====================================
|
4
|
+
|
5
|
+
..
|
6
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
7
|
+
!! This file is generated by oca-gen-addon-readme !!
|
8
|
+
!! changes will be overwritten. !!
|
9
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
+
!! source digest: sha256:6aaeee640999db99f4f6d879b9c42e9626848385af8d2315cff1c6590df316ae
|
11
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
|
+
|
13
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
14
|
+
:target: https://odoo-community.org/page/development-status
|
15
|
+
:alt: Beta
|
16
|
+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
17
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
18
|
+
:alt: License: AGPL-3
|
19
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github
|
20
|
+
:target: https://github.com/OCA/stock-logistics-barcode/tree/16.0/barcodes_generator_location
|
21
|
+
:alt: OCA/stock-logistics-barcode
|
22
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
23
|
+
:target: https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-barcodes_generator_location
|
24
|
+
:alt: Translate me on Weblate
|
25
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
26
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&target_branch=16.0
|
27
|
+
:alt: Try me on Runboat
|
28
|
+
|
29
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
30
|
+
|
31
|
+
This module expands Odoo functionality, allowing user to generate barcode
|
32
|
+
depending on a given barcode rule for Stock Locations.
|
33
|
+
|
34
|
+
For example, a typical pattern for partners is "042........." that means
|
35
|
+
that:
|
36
|
+
* the EAN13 code will begin by '042'
|
37
|
+
* followed by 0 digits (named Barcode Base in this module)
|
38
|
+
* a 13 digit control
|
39
|
+
|
40
|
+
With this module, it is possible to:
|
41
|
+
|
42
|
+
* Assign a pattern (barcode.rule) to a stock.location
|
43
|
+
|
44
|
+
* Define a Barcode base:
|
45
|
+
* manually, if the base of the barcode must be set by a user. (typically an
|
46
|
+
internal code defined in your company)
|
47
|
+
* automatically by a sequence, if you want to let Odoo to increment a
|
48
|
+
sequence. (typical case of a customer number incrementation)
|
49
|
+
|
50
|
+
* Generate a barcode, based on the defined pattern and the barcode base
|
51
|
+
|
52
|
+
**Table of contents**
|
53
|
+
|
54
|
+
.. contents::
|
55
|
+
:local:
|
56
|
+
|
57
|
+
Configuration
|
58
|
+
=============
|
59
|
+
|
60
|
+
To configure this module, see the 'Configuration' Section of the description
|
61
|
+
of the module 'barcodes_generator_abstract'
|
62
|
+
|
63
|
+
Usage
|
64
|
+
=====
|
65
|
+
|
66
|
+
To use this module, you need to:
|
67
|
+
|
68
|
+
* Go to a Stock Location form
|
69
|
+
|
70
|
+
1 for manual generation
|
71
|
+
* Set a Barcode Rule
|
72
|
+
* Set a Barcode Base
|
73
|
+
* click on the button 'Generate Barcode (Using Barcode Rule)'
|
74
|
+
|
75
|
+
2 for automatic generation
|
76
|
+
* Set a Barcode Rule
|
77
|
+
* click on the button 'Generate Base (Using Sequence)'
|
78
|
+
* click on the button 'Generate Barcode (Using Barcode Rule)'
|
79
|
+
|
80
|
+
.. image:: https://raw.githubusercontent.com/barcodes_generator/static/description/stock_location_sequence_generation.png
|
81
|
+
|
82
|
+
Bug Tracker
|
83
|
+
===========
|
84
|
+
|
85
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-barcode/issues>`_.
|
86
|
+
In case of trouble, please check there if your issue has already been reported.
|
87
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
88
|
+
`feedback <https://github.com/OCA/stock-logistics-barcode/issues/new?body=module:%20barcodes_generator_location%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
89
|
+
|
90
|
+
Do not contact contributors directly about support or help with technical issues.
|
91
|
+
|
92
|
+
Credits
|
93
|
+
=======
|
94
|
+
|
95
|
+
Authors
|
96
|
+
~~~~~~~
|
97
|
+
|
98
|
+
* LasLabs
|
99
|
+
|
100
|
+
Contributors
|
101
|
+
~~~~~~~~~~~~
|
102
|
+
|
103
|
+
* Dave Lasley <dave@laslabs.com>
|
104
|
+
* `Tecnativa <https://www.tecnativa.com>`_:
|
105
|
+
|
106
|
+
* David Vidal
|
107
|
+
* Ernesto Tejeda
|
108
|
+
|
109
|
+
Other credits
|
110
|
+
~~~~~~~~~~~~~
|
111
|
+
|
112
|
+
* Icon of the module is based on the Oxygen Team work and is under LGPL licence:
|
113
|
+
http://www.iconarchive.com/show/oxygen-icons-by-oxygen-icons.org.html
|
114
|
+
|
115
|
+
Maintainers
|
116
|
+
~~~~~~~~~~~
|
117
|
+
|
118
|
+
This module is maintained by the OCA.
|
119
|
+
|
120
|
+
.. image:: https://odoo-community.org/logo.png
|
121
|
+
:alt: Odoo Community Association
|
122
|
+
:target: https://odoo-community.org
|
123
|
+
|
124
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
125
|
+
mission is to support the collaborative development of Odoo features and
|
126
|
+
promote its widespread use.
|
127
|
+
|
128
|
+
This module is part of the `OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/tree/16.0/barcodes_generator_location>`_ project on GitHub.
|
129
|
+
|
130
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# Copyright 2017 LasLabs Inc.
|
2
|
+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
+
{
|
4
|
+
"name": "Generate Barcodes for Stock Locations",
|
5
|
+
"version": "16.0.1.0.0",
|
6
|
+
"category": "Tools",
|
7
|
+
"author": "LasLabs, Odoo Community Association (OCA)",
|
8
|
+
"website": "https://github.com/OCA/stock-logistics-barcode",
|
9
|
+
"license": "AGPL-3",
|
10
|
+
"depends": ["barcodes_generator_abstract", "stock"],
|
11
|
+
"data": ["views/stock_location.xml"],
|
12
|
+
"demo": [
|
13
|
+
"demo/ir_sequence.xml",
|
14
|
+
"demo/barcode_rule.xml",
|
15
|
+
"demo/stock_location.xml",
|
16
|
+
"demo/function.xml",
|
17
|
+
],
|
18
|
+
"uninstall_hook": "uninstall_hook",
|
19
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!--
|
3
|
+
Copyright 2017 LasLabs Inc.
|
4
|
+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
5
|
+
-->
|
6
|
+
<odoo>
|
7
|
+
<record id="stock_location_generated_barcode" model="barcode.rule">
|
8
|
+
<field name="name">Stock Location Rule (Generated Barcode)</field>
|
9
|
+
<field
|
10
|
+
name="barcode_nomenclature_id"
|
11
|
+
ref="barcodes.default_barcode_nomenclature"
|
12
|
+
/>
|
13
|
+
<field name="type">location</field>
|
14
|
+
<field name="sequence">998</field>
|
15
|
+
<field name="encoding">ean13</field>
|
16
|
+
<field name="pattern">119.........</field>
|
17
|
+
<field name="generate_type" eval="'sequence'" />
|
18
|
+
<field name="generate_model" eval="'stock.location'" />
|
19
|
+
<field name="sequence_id" ref="stock_location_ir_sequence" />
|
20
|
+
</record>
|
21
|
+
</odoo>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!--
|
3
|
+
Copyright 2017 LasLabs Inc.
|
4
|
+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
5
|
+
-->
|
6
|
+
<odoo>
|
7
|
+
<function
|
8
|
+
model="stock.location"
|
9
|
+
name="generate_base"
|
10
|
+
eval="[ref('stock_location_barcode')]"
|
11
|
+
/>
|
12
|
+
<function
|
13
|
+
model="stock.location"
|
14
|
+
name="generate_barcode"
|
15
|
+
eval="[ref('stock_location_barcode')]"
|
16
|
+
/>
|
17
|
+
</odoo>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!--
|
3
|
+
Copyright 2017 LasLabs Inc.
|
4
|
+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
5
|
+
-->
|
6
|
+
<odoo>
|
7
|
+
<record id="stock_location_ir_sequence" model="ir.sequence">
|
8
|
+
<field name="name">Stock Location Sequence (Generated Barcode)</field>
|
9
|
+
<field name="padding">10</field>
|
10
|
+
<field name="number_next">1</field>
|
11
|
+
</record>
|
12
|
+
</odoo>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
+
<!--
|
3
|
+
Copyright 2017 LasLabs Inc.
|
4
|
+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
5
|
+
-->
|
6
|
+
<odoo>
|
7
|
+
<record id="stock_location_barcode" model="stock.location">
|
8
|
+
<field name="name">Location with Generated Barcode</field>
|
9
|
+
<field name="barcode_rule_id" ref="stock_location_generated_barcode" />
|
10
|
+
<field name="usage">internal</field>
|
11
|
+
</record>
|
12
|
+
</odoo>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# Copyright 2020 Tecnativa - David Vidal
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
|
5
|
+
def uninstall_hook(cr, registry):
|
6
|
+
"""Delete barcode rules with generate model `stock.location` as they
|
7
|
+
won't be useful anymore"""
|
8
|
+
cr.execute(
|
9
|
+
"""
|
10
|
+
DELETE FROM barcode_rule
|
11
|
+
WHERE generate_model = 'stock.location'
|
12
|
+
"""
|
13
|
+
)
|
@@ -0,0 +1,82 @@
|
|
1
|
+
# Translation of Odoo Server.
|
2
|
+
# This file contains the translation of the following modules:
|
3
|
+
# * barcodes_generator_location
|
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: barcodes_generator_location
|
17
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
|
18
|
+
msgid ""
|
19
|
+
"Allow to generate barcode, including a number (a base) in the final barcode.\n"
|
20
|
+
"\n"
|
21
|
+
" - 'Base Set Manually' : User should set manually the value of the barcode base\n"
|
22
|
+
" - 'Base managed by Sequence': System will generate the base via a sequence"
|
23
|
+
msgstr ""
|
24
|
+
|
25
|
+
#. module: barcodes_generator_location
|
26
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
27
|
+
msgid "Barcode"
|
28
|
+
msgstr ""
|
29
|
+
|
30
|
+
#. module: barcodes_generator_location
|
31
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_base
|
32
|
+
msgid "Barcode Base"
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
#. module: barcodes_generator_location
|
36
|
+
#: model:ir.model,name:barcodes_generator_location.model_barcode_rule
|
37
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_rule_id
|
38
|
+
msgid "Barcode Rule"
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
#. module: barcodes_generator_location
|
42
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
43
|
+
msgid "Generate Barcode"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
#. module: barcodes_generator_location
|
47
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
48
|
+
msgid "Generate Base (Using Sequence)"
|
49
|
+
msgstr ""
|
50
|
+
|
51
|
+
#. module: barcodes_generator_location
|
52
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__generate_model
|
53
|
+
msgid "Generate Model"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
#. module: barcodes_generator_location
|
57
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__generate_type
|
58
|
+
msgid "Generate Type"
|
59
|
+
msgstr ""
|
60
|
+
|
61
|
+
#. module: barcodes_generator_location
|
62
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_barcode_rule__generate_model
|
63
|
+
msgid "If 'Generate Type' is set, mention the model related to this rule."
|
64
|
+
msgstr ""
|
65
|
+
|
66
|
+
#. module: barcodes_generator_location
|
67
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__barcode_rule_id
|
68
|
+
msgid "Select a rule to generate a barcode"
|
69
|
+
msgstr ""
|
70
|
+
|
71
|
+
#. module: barcodes_generator_location
|
72
|
+
#: model:ir.model,name:barcodes_generator_location.model_stock_location
|
73
|
+
#: model:ir.model.fields.selection,name:barcodes_generator_location.selection__barcode_rule__generate_model__stock_location
|
74
|
+
msgid "Stock Location"
|
75
|
+
msgstr ""
|
76
|
+
|
77
|
+
#. module: barcodes_generator_location
|
78
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__barcode_base
|
79
|
+
msgid ""
|
80
|
+
"This value is used to generate barcode according to the setting of the "
|
81
|
+
"barcode rule."
|
82
|
+
msgstr ""
|
@@ -0,0 +1,95 @@
|
|
1
|
+
# Translation of Odoo Server.
|
2
|
+
# This file contains the translation of the following modules:
|
3
|
+
# * barcodes_generator_location
|
4
|
+
#
|
5
|
+
# Translators:
|
6
|
+
# enjolras <yo@miguelrevilla.com>, 2018
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: Odoo Server 10.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2018-02-15 02:01+0000\n"
|
12
|
+
"PO-Revision-Date: 2018-02-15 02:01+0000\n"
|
13
|
+
"Last-Translator: enjolras <yo@miguelrevilla.com>, 2018\n"
|
14
|
+
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
15
|
+
"Language: es\n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: \n"
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20
|
+
|
21
|
+
#. module: barcodes_generator_location
|
22
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
|
23
|
+
msgid ""
|
24
|
+
"Allow to generate barcode, including a number (a base) in the final "
|
25
|
+
"barcode.\n"
|
26
|
+
" 'Base Set Manually' : User should set manually the value of the barcode "
|
27
|
+
"base\n"
|
28
|
+
" 'Base managed by Sequence': User will use a button to generate a new base. "
|
29
|
+
"This base will be generated by a sequence"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
#. module: barcodes_generator_location
|
33
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
34
|
+
msgid "Barcode"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
#. module: barcodes_generator_location
|
38
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_base
|
39
|
+
msgid "Barcode Base"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
#. module: barcodes_generator_location
|
43
|
+
#: model:ir.model,name:barcodes_generator_location.model_barcode_rule
|
44
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_rule_id
|
45
|
+
msgid "Barcode Rule"
|
46
|
+
msgstr ""
|
47
|
+
|
48
|
+
#. module: barcodes_generator_location
|
49
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__display_name
|
50
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__display_name
|
51
|
+
msgid "Display Name"
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
#. module: barcodes_generator_location
|
55
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
56
|
+
msgid "Generate Barcode"
|
57
|
+
msgstr "Generar Código de Barras"
|
58
|
+
|
59
|
+
#. module: barcodes_generator_location
|
60
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
61
|
+
msgid "Generate Base (Using Sequence)"
|
62
|
+
msgstr "Generar Base (utilizando secuencia)"
|
63
|
+
|
64
|
+
#. module: barcodes_generator_location
|
65
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__generate_model
|
66
|
+
msgid "Generate Model"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
#. module: barcodes_generator_location
|
70
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__generate_type
|
71
|
+
msgid "Generate Type"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
#. module: barcodes_generator_location
|
75
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__id
|
76
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__id
|
77
|
+
msgid "ID"
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
#. module: barcodes_generator_location
|
81
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_barcode_rule__generate_model
|
82
|
+
msgid "If 'Generate Type' is set, mention the model related to this rule."
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
#. module: barcodes_generator_location
|
86
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule____last_update
|
87
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location____last_update
|
88
|
+
msgid "Last Modified on"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#. module: barcodes_generator_location
|
92
|
+
#: model:ir.model,name:barcodes_generator_location.model_stock_location
|
93
|
+
#: model:ir.model.fields.selection,name:barcodes_generator_location.selection__barcode_rule__generate_model__stock_location
|
94
|
+
msgid "Stock Location"
|
95
|
+
msgstr "Ubicación de existencias"
|
@@ -0,0 +1,95 @@
|
|
1
|
+
# Translation of Odoo Server.
|
2
|
+
# This file contains the translation of the following modules:
|
3
|
+
# * barcodes_generator_location
|
4
|
+
#
|
5
|
+
# Translators:
|
6
|
+
# OCA Transbot <transbot@odoo-community.org>, 2017
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: Odoo Server 10.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2017-04-12 02:40+0000\n"
|
12
|
+
"PO-Revision-Date: 2017-04-12 02:40+0000\n"
|
13
|
+
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
14
|
+
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
|
15
|
+
"Language: fr\n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: \n"
|
19
|
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
20
|
+
|
21
|
+
#. module: barcodes_generator_location
|
22
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
|
23
|
+
msgid ""
|
24
|
+
"Allow to generate barcode, including a number (a base) in the final "
|
25
|
+
"barcode.\n"
|
26
|
+
" 'Base Set Manually' : User should set manually the value of the barcode "
|
27
|
+
"base\n"
|
28
|
+
" 'Base managed by Sequence': User will use a button to generate a new base. "
|
29
|
+
"This base will be generated by a sequence"
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
#. module: barcodes_generator_location
|
33
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
34
|
+
msgid "Barcode"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
#. module: barcodes_generator_location
|
38
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_base
|
39
|
+
msgid "Barcode Base"
|
40
|
+
msgstr ""
|
41
|
+
|
42
|
+
#. module: barcodes_generator_location
|
43
|
+
#: model:ir.model,name:barcodes_generator_location.model_barcode_rule
|
44
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_rule_id
|
45
|
+
msgid "Barcode Rule"
|
46
|
+
msgstr ""
|
47
|
+
|
48
|
+
#. module: barcodes_generator_location
|
49
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__display_name
|
50
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__display_name
|
51
|
+
msgid "Display Name"
|
52
|
+
msgstr ""
|
53
|
+
|
54
|
+
#. module: barcodes_generator_location
|
55
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
56
|
+
msgid "Generate Barcode"
|
57
|
+
msgstr ""
|
58
|
+
|
59
|
+
#. module: barcodes_generator_location
|
60
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
61
|
+
msgid "Generate Base (Using Sequence)"
|
62
|
+
msgstr "Générer une base (via une séquence)"
|
63
|
+
|
64
|
+
#. module: barcodes_generator_location
|
65
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__generate_model
|
66
|
+
msgid "Generate Model"
|
67
|
+
msgstr ""
|
68
|
+
|
69
|
+
#. module: barcodes_generator_location
|
70
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__generate_type
|
71
|
+
msgid "Generate Type"
|
72
|
+
msgstr ""
|
73
|
+
|
74
|
+
#. module: barcodes_generator_location
|
75
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__id
|
76
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__id
|
77
|
+
msgid "ID"
|
78
|
+
msgstr ""
|
79
|
+
|
80
|
+
#. module: barcodes_generator_location
|
81
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_barcode_rule__generate_model
|
82
|
+
msgid "If 'Generate Type' is set, mention the model related to this rule."
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
#. module: barcodes_generator_location
|
86
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule____last_update
|
87
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location____last_update
|
88
|
+
msgid "Last Modified on"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
#. module: barcodes_generator_location
|
92
|
+
#: model:ir.model,name:barcodes_generator_location.model_stock_location
|
93
|
+
#: model:ir.model.fields.selection,name:barcodes_generator_location.selection__barcode_rule__generate_model__stock_location
|
94
|
+
msgid "Stock Location"
|
95
|
+
msgstr ""
|
@@ -0,0 +1,96 @@
|
|
1
|
+
# Translation of Odoo Server.
|
2
|
+
# This file contains the translation of the following modules:
|
3
|
+
# * barcodes_generator_location
|
4
|
+
#
|
5
|
+
# Translators:
|
6
|
+
# Bole <bole@dajmi5.com>, 2018
|
7
|
+
msgid ""
|
8
|
+
msgstr ""
|
9
|
+
"Project-Id-Version: Odoo Server 10.0\n"
|
10
|
+
"Report-Msgid-Bugs-To: \n"
|
11
|
+
"POT-Creation-Date: 2018-02-15 02:01+0000\n"
|
12
|
+
"PO-Revision-Date: 2018-02-15 02:01+0000\n"
|
13
|
+
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
14
|
+
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
|
15
|
+
"Language: hr\n"
|
16
|
+
"MIME-Version: 1.0\n"
|
17
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
18
|
+
"Content-Transfer-Encoding: \n"
|
19
|
+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
20
|
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
21
|
+
|
22
|
+
#. module: barcodes_generator_location
|
23
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
|
24
|
+
msgid ""
|
25
|
+
"Allow to generate barcode, including a number (a base) in the final "
|
26
|
+
"barcode.\n"
|
27
|
+
" 'Base Set Manually' : User should set manually the value of the barcode "
|
28
|
+
"base\n"
|
29
|
+
" 'Base managed by Sequence': User will use a button to generate a new base. "
|
30
|
+
"This base will be generated by a sequence"
|
31
|
+
msgstr ""
|
32
|
+
|
33
|
+
#. module: barcodes_generator_location
|
34
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
35
|
+
msgid "Barcode"
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
#. module: barcodes_generator_location
|
39
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_base
|
40
|
+
msgid "Barcode Base"
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
#. module: barcodes_generator_location
|
44
|
+
#: model:ir.model,name:barcodes_generator_location.model_barcode_rule
|
45
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__barcode_rule_id
|
46
|
+
msgid "Barcode Rule"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
#. module: barcodes_generator_location
|
50
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__display_name
|
51
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__display_name
|
52
|
+
msgid "Display Name"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
#. module: barcodes_generator_location
|
56
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
57
|
+
msgid "Generate Barcode"
|
58
|
+
msgstr "Generiraj barkodove"
|
59
|
+
|
60
|
+
#. module: barcodes_generator_location
|
61
|
+
#: model_terms:ir.ui.view,arch_db:barcodes_generator_location.view_location_form
|
62
|
+
msgid "Generate Base (Using Sequence)"
|
63
|
+
msgstr "Generiraj osnovno ( koristi br.krug)"
|
64
|
+
|
65
|
+
#. module: barcodes_generator_location
|
66
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__generate_model
|
67
|
+
msgid "Generate Model"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
#. module: barcodes_generator_location
|
71
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__generate_type
|
72
|
+
msgid "Generate Type"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
#. module: barcodes_generator_location
|
76
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule__id
|
77
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location__id
|
78
|
+
msgid "ID"
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
#. module: barcodes_generator_location
|
82
|
+
#: model:ir.model.fields,help:barcodes_generator_location.field_barcode_rule__generate_model
|
83
|
+
msgid "If 'Generate Type' is set, mention the model related to this rule."
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
#. module: barcodes_generator_location
|
87
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_barcode_rule____last_update
|
88
|
+
#: model:ir.model.fields,field_description:barcodes_generator_location.field_stock_location____last_update
|
89
|
+
msgid "Last Modified on"
|
90
|
+
msgstr ""
|
91
|
+
|
92
|
+
#. module: barcodes_generator_location
|
93
|
+
#: model:ir.model,name:barcodes_generator_location.model_stock_location
|
94
|
+
#: model:ir.model.fields.selection,name:barcodes_generator_location.selection__barcode_rule__generate_model__stock_location
|
95
|
+
msgid "Stock Location"
|
96
|
+
msgstr "Lokacija zalihe"
|