odoo-addon-stock-barcodes 16.0.2.0.2.2__py3-none-any.whl → 16.0.2.0.3__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_barcodes/README.rst +1 -1
- odoo/addons/stock_barcodes/__manifest__.py +1 -1
- odoo/addons/stock_barcodes/models/stock_picking.py +2 -4
- odoo/addons/stock_barcodes/static/description/index.html +1 -1
- {odoo_addon_stock_barcodes-16.0.2.0.2.2.dist-info → odoo_addon_stock_barcodes-16.0.2.0.3.dist-info}/METADATA +2 -2
- {odoo_addon_stock_barcodes-16.0.2.0.2.2.dist-info → odoo_addon_stock_barcodes-16.0.2.0.3.dist-info}/RECORD +8 -8
- {odoo_addon_stock_barcodes-16.0.2.0.2.2.dist-info → odoo_addon_stock_barcodes-16.0.2.0.3.dist-info}/WHEEL +0 -0
- {odoo_addon_stock_barcodes-16.0.2.0.2.2.dist-info → odoo_addon_stock_barcodes-16.0.2.0.3.dist-info}/top_level.txt +0 -0
@@ -11,7 +11,7 @@ Stock Barcodes
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
12
12
|
!! changes will be overwritten. !!
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
14
|
-
!! source digest: sha256:
|
14
|
+
!! source digest: sha256:8f4516cab17cb883342f9c058969f6dddfa9d4029a028f83478352ce5d9f2862
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
16
16
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -3,7 +3,7 @@
|
|
3
3
|
{
|
4
4
|
"name": "Stock Barcodes",
|
5
5
|
"summary": "It provides read barcode on stock operations.",
|
6
|
-
"version": "16.0.2.0.
|
6
|
+
"version": "16.0.2.0.3",
|
7
7
|
"author": "Tecnativa, " "Odoo Community Association (OCA)",
|
8
8
|
"website": "https://github.com/OCA/stock-logistics-barcode",
|
9
9
|
"license": "AGPL-3",
|
@@ -65,12 +65,10 @@ class StockPicking(models.Model):
|
|
65
65
|
if res is True and self.env.context.get("show_picking_type_action_tree", False):
|
66
66
|
res = self[:1].picking_type_id.get_action_picking_tree_ready()
|
67
67
|
|
68
|
-
if (
|
69
|
-
|
70
|
-
and self.state == "done"
|
68
|
+
if self.env.context.get("stock_barcodes_validate_picking", False) and all(
|
69
|
+
p.state == "done" for p in self
|
71
70
|
):
|
72
71
|
self.env["bus.bus"]._sendone(
|
73
72
|
"stock_barcodes_scan", "actions_barcode", {"valid_picking": True}
|
74
73
|
)
|
75
|
-
|
76
74
|
return res
|
@@ -372,7 +372,7 @@ ul.auto-toc {
|
|
372
372
|
!! This file is generated by oca-gen-addon-readme !!
|
373
373
|
!! changes will be overwritten. !!
|
374
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
375
|
-
!! source digest: sha256:
|
375
|
+
!! source digest: sha256:8f4516cab17cb883342f9c058969f6dddfa9d4029a028f83478352ce5d9f2862
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
377
377
|
<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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes"><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-16-0/stock-logistics-barcode-16-0-stock_barcodes"><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&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
378
378
|
<p>This module provides a barcode reader interface for stock module.</p>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-stock_barcodes
|
3
|
-
Version: 16.0.2.0.
|
3
|
+
Version: 16.0.2.0.3
|
4
4
|
Summary: It provides read barcode on stock operations.
|
5
5
|
Home-page: https://github.com/OCA/stock-logistics-barcode
|
6
6
|
Author: Tecnativa, Odoo Community Association (OCA)
|
@@ -27,7 +27,7 @@ Stock Barcodes
|
|
27
27
|
!! This file is generated by oca-gen-addon-readme !!
|
28
28
|
!! changes will be overwritten. !!
|
29
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
30
|
-
!! source digest: sha256:
|
30
|
+
!! source digest: sha256:8f4516cab17cb883342f9c058969f6dddfa9d4029a028f83478352ce5d9f2862
|
31
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
32
32
|
|
33
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/stock_barcodes/README.rst,sha256=
|
1
|
+
odoo/addons/stock_barcodes/README.rst,sha256=wVxlJ_m3jwou4Y6zVmDmVIz652JqQzDiFdi1QiBGB0Y,15777
|
2
2
|
odoo/addons/stock_barcodes/__init__.py,sha256=CCs1p9fs5hDfOA_RK81fM0he5AMSZxCKcnbPaaj38mU,228
|
3
|
-
odoo/addons/stock_barcodes/__manifest__.py,sha256=
|
3
|
+
odoo/addons/stock_barcodes/__manifest__.py,sha256=hCWUyaXZUluQ5qTXcKBF3WtES_IALnXqFwLhbuKswnU,1929
|
4
4
|
odoo/addons/stock_barcodes/hooks.py,sha256=3xcCKDae0aUjvq5oUecBGUgJ5rdTtN_p4CtXvtZhbzA,679
|
5
5
|
odoo/addons/stock_barcodes/data/stock_barcodes_action.xml,sha256=VZr_wKtJzlJ4_qptgWZ2G4wdxuUHMo8eQr8-6ZwVGk8,2275
|
6
6
|
odoo/addons/stock_barcodes/data/stock_barcodes_option.xml,sha256=u0HkeX9qjmXajGbtQfne5tKTKHbFibsW42ApUsrR6lg,24276
|
@@ -15,7 +15,7 @@ odoo/addons/stock_barcodes/models/stock_barcodes_action.py,sha256=IAMlCbZBepFvxK
|
|
15
15
|
odoo/addons/stock_barcodes/models/stock_barcodes_option.py,sha256=Udi-uL_2bl6_84jAN2i7GGgDk9F-pP51AtvZOxGcduM,4987
|
16
16
|
odoo/addons/stock_barcodes/models/stock_move.py,sha256=f38m1yF7QY3fUVtWPymfV7nVAApSVmKODmpfPSboF0w,1289
|
17
17
|
odoo/addons/stock_barcodes/models/stock_move_line.py,sha256=H9Y034J-Cl4C9NIYoKDZpxVDOqzT0I-hn44ShQYtom8,1429
|
18
|
-
odoo/addons/stock_barcodes/models/stock_picking.py,sha256=
|
18
|
+
odoo/addons/stock_barcodes/models/stock_picking.py,sha256=q_ykIUd-0IObO7ZAO3RCb-ECE0AW05b5N_RGBcHRqGU,3095
|
19
19
|
odoo/addons/stock_barcodes/models/stock_picking_type.py,sha256=e71Ng05Jfcq9pKzI4Ieq5dv8syRyhUG1P032SG_SMnI,3932
|
20
20
|
odoo/addons/stock_barcodes/models/stock_quant.py,sha256=lwyRXiPI-D2DtYV89YcHQ5oo4V1QT0R-WbzcUiV6CNs,2715
|
21
21
|
odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst,sha256=Ulri1AKeyXXxrwo6RHJDbu82Sja9LvDXJg3TfaL7UdI,387
|
@@ -30,7 +30,7 @@ odoo/addons/stock_barcodes/reports/reports.xml,sha256=U6AthjQL2VAtkvFVm-i3z0iQAN
|
|
30
30
|
odoo/addons/stock_barcodes/security/ir.model.access.csv,sha256=1HlTnJb0Bsbl-UCdoy-f7r7Xec3UMs7uTppQWOfH8-0,1337
|
31
31
|
odoo/addons/stock_barcodes/static/description/icon.png,sha256=7ksDD35buxE_kBLoeXUGbdSW_5n-LC4S-SnQSs9tz1A,2994
|
32
32
|
odoo/addons/stock_barcodes/static/description/icon.svg,sha256=aMrHV2Isu4t_jJlnLVYqbcL_icg9wT2eSSAKxQ3pgDA,69299
|
33
|
-
odoo/addons/stock_barcodes/static/description/index.html,sha256=
|
33
|
+
odoo/addons/stock_barcodes/static/description/index.html,sha256=qm_BpFjVRXTgVd4Slpl9YEmCEwED1WfPE205WR4d7pI,29574
|
34
34
|
odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf,sha256=SEfoUCwiycH6k1IZiI5mR5WM1aI08dItfmNs-EK1XZU,7883
|
35
35
|
odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf,sha256=nJR_VkAxToTHPp7sis6sXThOtTaQQrjLIxItPK4G88E,64270
|
36
36
|
odoo/addons/stock_barcodes/static/src/img/add_product.png,sha256=gokmnHujAy-8iVnrzyThFYr7rCuRFNqIW4Tov_8IVnA,6351
|
@@ -97,7 +97,7 @@ odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml,sha256=84r_u
|
|
97
97
|
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml,sha256=Viv-Urgg-yvISu9Fds6buI0QjgOhpsnIDmXZTbiuytY,27086
|
98
98
|
odoo/addons/stock_barcodes/wizard/stock_production_lot.py,sha256=LXb8IykNsU6fHNzm6exiD2oyLmFdjrhnv9Z7ixDihWI,2195
|
99
99
|
odoo/addons/stock_barcodes/wizard/stock_production_lot_views.xml,sha256=MPR5_1Hieceb4a3klAQiLojMm4SBHEOF-8Ad3fBtaaE,1977
|
100
|
-
odoo_addon_stock_barcodes-16.0.2.0.
|
101
|
-
odoo_addon_stock_barcodes-16.0.2.0.
|
102
|
-
odoo_addon_stock_barcodes-16.0.2.0.
|
103
|
-
odoo_addon_stock_barcodes-16.0.2.0.
|
100
|
+
odoo_addon_stock_barcodes-16.0.2.0.3.dist-info/METADATA,sha256=vW9cg9D4Zu_8F0yLVBFBt8O_WOTkgO6OZ3RV7YrJkvg,16389
|
101
|
+
odoo_addon_stock_barcodes-16.0.2.0.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
102
|
+
odoo_addon_stock_barcodes-16.0.2.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
103
|
+
odoo_addon_stock_barcodes-16.0.2.0.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|