odoo-addon-barcodes-generator-location 17.0.1.0.0.2__py3-none-any.whl → 17.0.1.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.
@@ -7,7 +7,7 @@ Generate Barcodes for Stock Locations
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:2a9382023c57821d5c0d8340f0c7998d433daa114d4dcc5ffdea05c545bd4f13
10
+ !! source digest: sha256:a1dc609b7399f232102c96c08c16a3d5cc24d8a86ac93785c919ba819257d688
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -2,7 +2,7 @@
2
2
  # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
3
3
  {
4
4
  "name": "Generate Barcodes for Stock Locations",
5
- "version": "17.0.1.0.0",
5
+ "version": "17.0.1.0.1",
6
6
  "category": "Tools",
7
7
  "author": "LasLabs, Odoo Community Association (OCA)",
8
8
  "website": "https://github.com/OCA/stock-logistics-barcode",
@@ -16,8 +16,8 @@ msgstr ""
16
16
  "MIME-Version: 1.0\n"
17
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
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"
19
+ "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
20
+ "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
21
21
 
22
22
  #. module: barcodes_generator_location
23
23
  #: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
@@ -19,9 +19,11 @@ msgstr ""
19
19
  #. module: barcodes_generator_location
20
20
  #: model:ir.model.fields,help:barcodes_generator_location.field_stock_location__generate_type
21
21
  msgid ""
22
- "Allow to generate barcode, including a number (a base) in the final barcode.\n"
22
+ "Allow to generate barcode, including a number (a base) in the final "
23
+ "barcode.\n"
23
24
  "\n"
24
- " - 'Base Set Manually' : User should set manually the value of the barcode base\n"
25
+ " - 'Base Set Manually' : User should set manually the value of the barcode "
26
+ "base\n"
25
27
  " - 'Base managed by Sequence': System will generate the base via a sequence"
26
28
  msgstr ""
27
29
  "Consente di generare un codice a barre, incluso un numero (una base) nel "
@@ -38,8 +38,10 @@ class StockLocation(models.Model):
38
38
  # If the field does not exist in the view, it is added
39
39
  # together with the fields that this module adds.
40
40
  barcode_field = etree.Element("field", {"name": "barcode"})
41
- placeholder = doc.xpath("//field[@name='barcode_rule_id']")[0]
42
- placeholder.addprevious(barcode_field)
41
+ placeholder = doc.xpath("//field[@name='barcode_rule_id']")
42
+ if placeholder:
43
+ placeholder = placeholder[0]
44
+ placeholder.addprevious(barcode_field)
43
45
  # To the `barcode` field in the view (either the new
44
46
  # or the existing one), a modifier is added.
45
47
  modifier = {"readonly": [("generate_type", "=", "sequence")]}
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:2a9382023c57821d5c0d8340f0c7998d433daa114d4dcc5ffdea05c545bd4f13
370
+ !! source digest: sha256:a1dc609b7399f232102c96c08c16a3d5cc24d8a86ac93785c919ba819257d688
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
372
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-barcode/tree/17.0/barcodes_generator_location"><img alt="OCA/stock-logistics-barcode" src="https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/stock-logistics-barcode-17-0/stock-logistics-barcode-17-0-barcodes_generator_location"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>This module expands Odoo functionality, allowing user to generate
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-barcodes_generator_location
3
- Version: 17.0.1.0.0.2
3
+ Version: 17.0.1.0.1
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-barcodes_generator_abstract>=17.0dev,<17.1dev
6
6
  Requires-Dist: odoo>=17.0a,<17.1dev
@@ -23,7 +23,7 @@ Generate Barcodes for Stock Locations
23
23
  !! This file is generated by oca-gen-addon-readme !!
24
24
  !! changes will be overwritten. !!
25
25
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:2a9382023c57821d5c0d8340f0c7998d433daa114d4dcc5ffdea05c545bd4f13
26
+ !! source digest: sha256:a1dc609b7399f232102c96c08c16a3d5cc24d8a86ac93785c919ba819257d688
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,6 +1,6 @@
1
- odoo/addons/barcodes_generator_location/README.rst,sha256=qqKbuNjqLEiXvDm1T-Vn7ITwspTgW2_2QR0KPDI5crM,4680
1
+ odoo/addons/barcodes_generator_location/README.rst,sha256=vLwUEE-YTOPEz-7PwVBx6lTUfxi6jmKkTgMSyG7-W-k,4680
2
2
  odoo/addons/barcodes_generator_location/__init__.py,sha256=lHbcD_3Jhk02gKyANjQ1Bif8uknO8qLtRSK4lJNPeeQ,55
3
- odoo/addons/barcodes_generator_location/__manifest__.py,sha256=jJUuILHOr1qzex-jKElANPZ8NoOXmqAGmTjivJHwHiY,648
3
+ odoo/addons/barcodes_generator_location/__manifest__.py,sha256=EEiX-D0xHY2VI-TDGs4g50H-ioXG6ScCDdmVNh6wtAY,648
4
4
  odoo/addons/barcodes_generator_location/hooks.py,sha256=oM9oZurikDntdbgQhYjViqPbuNuE8JIPEBkJx3iC2G8,364
5
5
  odoo/addons/barcodes_generator_location/demo/barcode_rule.xml,sha256=ufQUCxTafPWgta5aplwnlO7D7_sNszaZi6cL_R6IQMI,827
6
6
  odoo/addons/barcodes_generator_location/demo/function.xml,sha256=MI-vO0Gi8NNGWZ-v7OIVPlu_r-PLMF8LA7ciRrJrirQ,426
@@ -9,24 +9,24 @@ odoo/addons/barcodes_generator_location/demo/stock_location.xml,sha256=aBQxmll7a
9
9
  odoo/addons/barcodes_generator_location/i18n/barcodes_generator_location.pot,sha256=B6Vif7_65ZvnMMgLtBDXeTDEbIsHkGhSJl7gglw0nRw,2953
10
10
  odoo/addons/barcodes_generator_location/i18n/es.po,sha256=bf9ss4ZJKgbxMOFI109i88uxgCdoguc8s2fROOJLVmE,3324
11
11
  odoo/addons/barcodes_generator_location/i18n/fr.po,sha256=oaytSO4ttn-1VJRbCmxtFIS0vz7ijiAjoWuLz-XphjE,3297
12
- odoo/addons/barcodes_generator_location/i18n/hr.po,sha256=USsLzUWHShUlW5rqtk_fO73pfTnwFDu5ok-DAZOd-ak,3367
13
- odoo/addons/barcodes_generator_location/i18n/it.po,sha256=GREDmqeaFAlqLz0jOtKRcnLTqxN3lE5vrsHcD4Opjhc,3850
12
+ odoo/addons/barcodes_generator_location/i18n/hr.po,sha256=qN70ELA4kKnZ-f_uCvVNmuuDmgo-0UuW46byR3tRvBE,3367
13
+ odoo/addons/barcodes_generator_location/i18n/it.po,sha256=wLPHYv25NPXlOHSqEr-7ubDLEjZV5laAZQWnyTuH6R4,3856
14
14
  odoo/addons/barcodes_generator_location/i18n/nl_NL.po,sha256=lwViEbood3z0Kv8QPL_eX7DdNy6Cbb8E5d81dXq0X-o,3268
15
15
  odoo/addons/barcodes_generator_location/models/__init__.py,sha256=-PeAgBnU2aibwpwWioG2x9ma06mSmuCdSPpMSEhCNz8,125
16
16
  odoo/addons/barcodes_generator_location/models/barcode_rule.py,sha256=pkTj4HyPxjXdZYUmtMwQvfOljfDhZoP-2qA1mGdy8vU,304
17
- odoo/addons/barcodes_generator_location/models/stock_location.py,sha256=iTNLjP7zLuhIQL1DpGDJHrZ1khfz0sNFfv1oa8YK370,2264
17
+ odoo/addons/barcodes_generator_location/models/stock_location.py,sha256=aGcOGOYeuxJLpcy05WPOw_6m4QPfH6Ngsl2LcaTHtzg,2346
18
18
  odoo/addons/barcodes_generator_location/readme/CONFIGURE.md,sha256=-WxNhz7d1fOjuYXI4qBsLbSpjEEPtwAFrwuF6mEb68o,121
19
19
  odoo/addons/barcodes_generator_location/readme/CONTRIBUTORS.md,sha256=BZOoQGLyGbVLkiPpQIp_frqbbvUXWQg0gfYfOHTYntM,114
20
20
  odoo/addons/barcodes_generator_location/readme/CREDITS.md,sha256=QLjDCxVaSFSRK6pj9Ohiw8u3-dMJnE0lVeJu5t1gA6Y,157
21
21
  odoo/addons/barcodes_generator_location/readme/DESCRIPTION.md,sha256=JlbXGWZEBiIZXhTFuPGYhW_WgUG2wa9OGoPeMzV6Q40,781
22
22
  odoo/addons/barcodes_generator_location/readme/USAGE.md,sha256=UD7Ja-7RJK_e2EYzdwsUjbq6V8uiIDQXBt_f0HcG54U,452
23
23
  odoo/addons/barcodes_generator_location/static/description/icon.png,sha256=sWZ5OFuD-da3oRKI9kSqXDJLL-ONUiFar5XXh9SwD1g,19578
24
- odoo/addons/barcodes_generator_location/static/description/index.html,sha256=cKixJS3PdyRuglgl0AqsNh8Bb47-6j36hV3-743vcho,14971
24
+ odoo/addons/barcodes_generator_location/static/description/index.html,sha256=wBfqgN-zZ1FHvRjcmKJFd5DwMyutXlErogSjjWQQRGc,14971
25
25
  odoo/addons/barcodes_generator_location/static/description/stock_location_sequence_generation.png,sha256=iANZ05H7G54tG3Ghl4Ng6fJrLlMHnjb2Q3bUDwCivX4,67651
26
26
  odoo/addons/barcodes_generator_location/tests/__init__.py,sha256=c-NQXEfFM-fvhHMYfSxp1ZV-F2FtBdqDTcHkIFAqiYg,106
27
27
  odoo/addons/barcodes_generator_location/tests/test_barcode_generator.py,sha256=_6ZgZI5APOoT5u2DjmLIszxxTayYMgFkDDaXujUVaUA,810
28
28
  odoo/addons/barcodes_generator_location/views/stock_location.xml,sha256=nT7gS00WdD2ng091Scnmdc5093vS_aqhic-wJVgRPFc,2179
29
- odoo_addon_barcodes_generator_location-17.0.1.0.0.2.dist-info/METADATA,sha256=8TCyjP6BTD10WLhij2XqStcpZdiaQrI29koVe2_W9Nc,5301
30
- odoo_addon_barcodes_generator_location-17.0.1.0.0.2.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
31
- odoo_addon_barcodes_generator_location-17.0.1.0.0.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
32
- odoo_addon_barcodes_generator_location-17.0.1.0.0.2.dist-info/RECORD,,
29
+ odoo_addon_barcodes_generator_location-17.0.1.0.1.dist-info/METADATA,sha256=HsRs8L_0_gDALlfpThQfDo8HwOF31US5jaeKws7DF_s,5299
30
+ odoo_addon_barcodes_generator_location-17.0.1.0.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
31
+ odoo_addon_barcodes_generator_location-17.0.1.0.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
32
+ odoo_addon_barcodes_generator_location-17.0.1.0.1.dist-info/RECORD,,