odoo-addon-stock-barcodes 16.0.1.1.0.8__py3-none-any.whl → 16.0.2.0.0__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 (80) hide show
  1. odoo/addons/stock_barcodes/README.rst +217 -12
  2. odoo/addons/stock_barcodes/__init__.py +1 -0
  3. odoo/addons/stock_barcodes/__manifest__.py +8 -3
  4. odoo/addons/stock_barcodes/data/stock_barcodes_action.xml +8 -0
  5. odoo/addons/stock_barcodes/data/stock_barcodes_option.xml +99 -1
  6. odoo/addons/stock_barcodes/i18n/stock_barcodes.pot +268 -79
  7. odoo/addons/stock_barcodes/i18n/tr.po +326 -276
  8. odoo/addons/stock_barcodes/models/__init__.py +1 -0
  9. odoo/addons/stock_barcodes/models/barcode_events_mixin.py +11 -0
  10. odoo/addons/stock_barcodes/models/stock_barcodes_action.py +137 -3
  11. odoo/addons/stock_barcodes/models/stock_picking.py +17 -2
  12. odoo/addons/stock_barcodes/models/stock_picking_type.py +35 -0
  13. odoo/addons/stock_barcodes/models/stock_quant.py +51 -1
  14. odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst +4 -0
  15. odoo/addons/stock_barcodes/readme/DESCRIPTION.rst +4 -0
  16. odoo/addons/stock_barcodes/readme/HISTORY.rst +12 -0
  17. odoo/addons/stock_barcodes/readme/USAGE.rst +191 -10
  18. odoo/addons/stock_barcodes/reports/__init__.py +1 -0
  19. odoo/addons/stock_barcodes/reports/barcode_actions_report.py +16 -0
  20. odoo/addons/stock_barcodes/reports/barcode_actions_report.xml +25 -0
  21. odoo/addons/stock_barcodes/reports/reports.xml +28 -0
  22. odoo/addons/stock_barcodes/static/description/index.html +189 -33
  23. odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf +0 -0
  24. odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf +0 -0
  25. odoo/addons/stock_barcodes/static/src/img/add_product.png +0 -0
  26. odoo/addons/stock_barcodes/static/src/img/apply_inventory.png +0 -0
  27. odoo/addons/stock_barcodes/static/src/img/apply_inventory_reason.png +0 -0
  28. odoo/addons/stock_barcodes/static/src/img/barcode_interface_picking.png +0 -0
  29. odoo/addons/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png +0 -0
  30. odoo/addons/stock_barcodes/static/src/img/confirm_items_picking.png +0 -0
  31. odoo/addons/stock_barcodes/static/src/img/create_barcode_action.png +0 -0
  32. odoo/addons/stock_barcodes/static/src/img/form_add_product.png +0 -0
  33. odoo/addons/stock_barcodes/static/src/img/form_add_product_quantity.png +0 -0
  34. odoo/addons/stock_barcodes/static/src/img/form_add_product_reset.png +0 -0
  35. odoo/addons/stock_barcodes/static/src/img/inventory_barcode_action.png +0 -0
  36. odoo/addons/stock_barcodes/static/src/img/list_action_items.png +0 -0
  37. odoo/addons/stock_barcodes/static/src/img/list_items.png +0 -0
  38. odoo/addons/stock_barcodes/static/src/img/list_items_picking.png +0 -0
  39. odoo/addons/stock_barcodes/static/src/img/list_items_picking_edit.png +0 -0
  40. odoo/addons/stock_barcodes/static/src/img/list_items_picking_quantity.png +0 -0
  41. odoo/addons/stock_barcodes/static/src/img/list_items_picking_scanned.png +0 -0
  42. odoo/addons/stock_barcodes/static/src/img/list_picking.png +0 -0
  43. odoo/addons/stock_barcodes/static/src/img/print_barcodes.png +0 -0
  44. odoo/addons/stock_barcodes/static/src/scss/barcode.scss +135 -0
  45. odoo/addons/stock_barcodes/static/src/scss/stock.scss +285 -0
  46. odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js +1 -0
  47. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.esm.js +88 -0
  48. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.scss +74 -0
  49. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml +45 -0
  50. odoo/addons/stock_barcodes/static/src/views/form/form_controller.esm.js +71 -0
  51. odoo/addons/stock_barcodes/static/src/views/form/form_view.esm.js +14 -0
  52. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_record.esm.js +27 -0
  53. odoo/addons/stock_barcodes/static/src/views/{kanban_renderer.esm.js → kanban/kanban_renderer.esm.js} +78 -27
  54. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_view.esm.js +8 -0
  55. odoo/addons/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml +28 -0
  56. odoo/addons/stock_barcodes/static/src/views/views.esm.js +35 -7
  57. odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js +46 -0
  58. odoo/addons/stock_barcodes/tests/common.py +25 -0
  59. odoo/addons/stock_barcodes/tests/test_stock_barcodes.py +65 -1
  60. odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py +97 -13
  61. odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml +83 -9
  62. odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml +1 -1
  63. odoo/addons/stock_barcodes/views/stock_picking_views.xml +29 -10
  64. odoo/addons/stock_barcodes/wizard/__init__.py +1 -0
  65. odoo/addons/stock_barcodes/wizard/stock_barcodes_candidate_picking.py +148 -0
  66. odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py +148 -55
  67. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py +30 -2
  68. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml +101 -92
  69. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py +77 -141
  70. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml +197 -219
  71. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py +45 -0
  72. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml +87 -170
  73. odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/METADATA +435 -0
  74. odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/RECORD +103 -0
  75. odoo/addons/stock_barcodes/static/src/css/stock.scss +0 -136
  76. odoo/addons/stock_barcodes/static/src/views/form_view.esm.js +0 -17
  77. odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/METADATA +0 -230
  78. odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/RECORD +0 -68
  79. {odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/WHEEL +0 -0
  80. {odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/top_level.txt +0 -0
@@ -1,17 +0,0 @@
1
- /** @odoo-module */
2
- /* Copyright 2021 Tecnativa - Alexandre D. Díaz
3
- * License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
4
-
5
- import {FormController} from "@web/views/form/form_controller";
6
- import {patch} from "@web/core/utils/patch";
7
-
8
- patch(FormController.prototype, "Allow display.controlPanel overriding", {
9
- setup() {
10
- this._super(...arguments);
11
- // Adds support to use control_pannel_hidden from the
12
- // context to disable the control panel
13
- if (this.props.context.control_panel_hidden) {
14
- this.display.controlPanel = false;
15
- }
16
- },
17
- });
@@ -1,230 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: odoo-addon-stock_barcodes
3
- Version: 16.0.1.1.0.8
4
- Summary: It provides read barcode on stock operations.
5
- Home-page: https://github.com/OCA/stock-logistics-barcode
6
- Author: Tecnativa, Odoo Community Association (OCA)
7
- Author-email: support@odoo-community.org
8
- License: AGPL-3
9
- Classifier: Programming Language :: Python
10
- Classifier: Framework :: Odoo
11
- Classifier: Framework :: Odoo :: 16.0
12
- Classifier: License :: OSI Approved :: GNU Affero General Public License v3
13
- Requires-Python: >=3.10
14
- Requires-Dist: odoo-addon-web-widget-numeric-step<16.1dev,>=16.0dev
15
- Requires-Dist: odoo<16.1dev,>=16.0a
16
-
17
- ==============
18
- Stock Barcodes
19
- ==============
20
-
21
- ..
22
- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
23
- !! This file is generated by oca-gen-addon-readme !!
24
- !! changes will be overwritten. !!
25
- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:57d26158322c09cb66f30397e6644567bf9240ecc415f7fd48ec7bc6e6406ec9
27
- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
-
29
- .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
30
- :target: https://odoo-community.org/page/development-status
31
- :alt: Beta
32
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
33
- :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
34
- :alt: License: AGPL-3
35
- .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github
36
- :target: https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes
37
- :alt: OCA/stock-logistics-barcode
38
- .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
39
- :target: https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-stock_barcodes
40
- :alt: Translate me on Weblate
41
- .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
42
- :target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&target_branch=16.0
43
- :alt: Try me on Runboat
44
-
45
- |badge1| |badge2| |badge3| |badge4| |badge5|
46
-
47
- This module provides a barcode reader interface for stock module.
48
-
49
- This module contains a base wizard read barcode that can be extended by
50
- other modules.
51
-
52
- This module also makes use of this wizard for providing barcode support for
53
- doing inventories and picking operations.
54
-
55
- **Table of contents**
56
-
57
- .. contents::
58
- :local:
59
-
60
- Usage
61
- =====
62
-
63
- Barcode interface for inventory operations
64
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
-
66
- To use the barcode interface on inventory:
67
-
68
- #. Go to *Inventory > operations > Inventory Adjustments*.
69
- #. Create new inventory with "Select products manually" option.
70
- #. Start inventory.
71
- #. Click to "Scan barcodes" smart button.
72
- #. Start reading barcodes.
73
-
74
- Barcode interface for picking operations
75
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
76
- You can use the barcode interface in a picking or an operation type, the main
77
- difference is that if you open the barcode interface from a picking, this
78
- picking is locked and you read products for it.
79
-
80
- To use the barcode interface on picking operations:
81
-
82
- #. Go to *Inventory*.
83
- #. Click on scanner button on any operation type.
84
- #. Start reading barcodes.
85
-
86
- To use the barcode interface on a picking:
87
-
88
- #. Go to *Inventory > Transfers*.
89
- #. Click to "Scan barcodes" smart button.
90
- #. Start reading barcodes.
91
-
92
- The barcode scanner interface has two operation modes. In both of them user
93
- can scan:
94
-
95
- #. Warehouse locations with barcode.
96
- #. Product packaging with barcode.
97
- #. Product with barcode.
98
- #. Product Lots (The barcode is name field in this case).
99
-
100
-
101
- Automatic operation mode
102
- ~~~~~~~~~~~~~~~~~~~~~~~~
103
-
104
- This is the default mode, all screen controls are locked to avoid scan into
105
- fields.
106
-
107
- The user only has to scan barcode in physical warehouse locations with a
108
- scanner hardward, the interface read the barcode and do operations in this
109
- order:
110
-
111
- #. Try search a product, if found, is assigned to product_id field and creates
112
- or update inventory line with 1.0 unit. (If product has tracking by lots
113
- the interface wait for a lot to be scanned).
114
- #. Try search a product packaging, if found, the product_id related is set,
115
- product quantities are updated and create or update inventory line with
116
- product quantities defined in the product packaging.
117
- #. Try search a lot (The product is mandatory in this case so you first scan a
118
- product and then scann a lot), this lot field is not erased until that
119
- product change, so for each product scann the interface add or update a
120
- inventory line with this lot.
121
- #. Try to search a location, if found the field location is set and next scan
122
- action will be done with this warehouse location.
123
-
124
- If barcode has not found, when message is displayed you can create this lot
125
- scanning the product.
126
-
127
- Manual entry mode
128
- ~~~~~~~~~~~~~~~~~
129
-
130
- You can change to "manual entry" to allow to select data without scanner
131
- hardware, but hardward scanner still active on, so a use case would be when
132
- user wants set quantities manually instead increment 1.0 unit peer scan action.
133
-
134
- Scan logs
135
- ~~~~~~~~~
136
-
137
- All scanned barcodes are saved into model.
138
- Barcode scanning interface display 10 last records linked to model, the goal of
139
- this log is show to user other reads with the same product and location done
140
- by other users.
141
- User can remove the last read scan.
142
-
143
- Known issues / Roadmap
144
- ======================
145
-
146
- * Excute action_done() method outside onchange environment.
147
- * Allow create product when a barcode has not been found.
148
- * Allow to select picking reading its barcode.
149
- * Allow to select multiple pickings to process scanned products.
150
-
151
- Changelog
152
- =========
153
-
154
- 11.0.1.1.0 (2019-09-24)
155
- ~~~~~~~~~~~~~~~~~~~~~~~
156
-
157
- * [ADD] New feature.
158
- User can uses barcode interface in picking operations.
159
-
160
- 13.0.1.1.1 (2021-02-06)
161
- ~~~~~~~~~~~~~~~~~~~~~~~
162
-
163
- * [ADD] New feature.
164
- Add option to get lots automatically based on removal strategy in inventory.
165
-
166
- 14.0.1.0.0 (2021-04-05)
167
- ~~~~~~~~~~~~~~~~~~~~~~~
168
-
169
- * [ADD] New feature.
170
- Add security for users.
171
-
172
- Bug Tracker
173
- ===========
174
-
175
- Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-barcode/issues>`_.
176
- In case of trouble, please check there if your issue has already been reported.
177
- If you spotted it first, help us to smash it by providing a detailed and welcomed
178
- `feedback <https://github.com/OCA/stock-logistics-barcode/issues/new?body=module:%20stock_barcodes%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
179
-
180
- Do not contact contributors directly about support or help with technical issues.
181
-
182
- Credits
183
- =======
184
-
185
- Authors
186
- ~~~~~~~
187
-
188
- * Tecnativa
189
-
190
- Contributors
191
- ~~~~~~~~~~~~
192
-
193
-
194
- * `Tecnativa <https://www.tecnativa.com>`_:
195
-
196
- * Sergio Teruel
197
- * Carlos Dauden
198
- * Pedro M. Baeza
199
- * Alexandre D. Díaz
200
-
201
- * `Onestein <https://www.onestein.eu>`_:
202
-
203
- * Andrea Stirpe
204
-
205
- * `InitOS <https://www.initos.com>`_:
206
-
207
- * Foram Shah
208
-
209
- * `ForgeFlow <https://www.forgeflow.com>`_:
210
-
211
- * Lois Rilo
212
-
213
- * Enric Tobella
214
-
215
- Maintainers
216
- ~~~~~~~~~~~
217
-
218
- This module is maintained by the OCA.
219
-
220
- .. image:: https://odoo-community.org/logo.png
221
- :alt: Odoo Community Association
222
- :target: https://odoo-community.org
223
-
224
- OCA, or the Odoo Community Association, is a nonprofit organization whose
225
- mission is to support the collaborative development of Odoo features and
226
- promote its widespread use.
227
-
228
- This module is part of the `OCA/stock-logistics-barcode <https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes>`_ project on GitHub.
229
-
230
- You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -1,68 +0,0 @@
1
- odoo/addons/stock_barcodes/README.rst,sha256=u8WCC5zDh5CoiulmcdegPkKHa1v55S1Jql9OSY9kUfg,7000
2
- odoo/addons/stock_barcodes/__init__.py,sha256=GJDFROBciW9KNOlikIfV-4Gu8TPCJRp8ZWZCxngbDtI,206
3
- odoo/addons/stock_barcodes/__manifest__.py,sha256=_qn7ujzd88UiMgBlPbSvEEhSs4A48oibxDynPr6F_jw,1659
4
- odoo/addons/stock_barcodes/hooks.py,sha256=3xcCKDae0aUjvq5oUecBGUgJ5rdTtN_p4CtXvtZhbzA,679
5
- odoo/addons/stock_barcodes/data/stock_barcodes_action.xml,sha256=BYvm7V39dkqfLPCtNVpYKzqinOaIuRGCjTz9Fo5U3m4,1889
6
- odoo/addons/stock_barcodes/data/stock_barcodes_option.xml,sha256=MZU_hpOxL-QDsmRlMmB4k9-pBkBi516Y1_vkixtSLvI,20659
7
- odoo/addons/stock_barcodes/i18n/es.po,sha256=6ocwD04TxiwpWgg57twbFBgO2wWGSlaWMAzgefCCL0s,90547
8
- odoo/addons/stock_barcodes/i18n/fr.po,sha256=OhuKVFFIIkaZZNoZTnNqzpqFN1M06VDEEhVDBUgWDS8,82007
9
- odoo/addons/stock_barcodes/i18n/it.po,sha256=KomhZsB4vV4xxq3uu_uauMlwhv_WUrYOmq9wwOZD3h0,90071
10
- odoo/addons/stock_barcodes/i18n/stock_barcodes.pot,sha256=F8C92t4otxYLc-n1nlzUxiHM6ocypGnD4N2tVz8DuZM,74968
11
- odoo/addons/stock_barcodes/i18n/tr.po,sha256=gsTvdCaghgJchvBffirkIIIVX12vkYLF3t9DKKKWGWY,76111
12
- odoo/addons/stock_barcodes/models/__init__.py,sha256=eZ69_HEkewi4PXIQlwlDWivmXExhyl91vohvyGjqpo4,214
13
- odoo/addons/stock_barcodes/models/stock_barcodes_action.py,sha256=2mCH92ZYn6qPjShKSZAKxxeD4SEaJA5fNHGqvladvyA,2069
14
- odoo/addons/stock_barcodes/models/stock_barcodes_option.py,sha256=Tvx_A6WHgyeTiMomQReVujmlnJA8xYdlHkKL4OhABYE,4882
15
- odoo/addons/stock_barcodes/models/stock_move.py,sha256=f38m1yF7QY3fUVtWPymfV7nVAApSVmKODmpfPSboF0w,1289
16
- odoo/addons/stock_barcodes/models/stock_move_line.py,sha256=H9Y034J-Cl4C9NIYoKDZpxVDOqzT0I-hn44ShQYtom8,1429
17
- odoo/addons/stock_barcodes/models/stock_picking.py,sha256=oSQZIP5kWgtYmcxpT4OgmJQNaFqSGAgpLJ2o1s5Awmk,2438
18
- odoo/addons/stock_barcodes/models/stock_picking_type.py,sha256=KQqT5wmNruEYa4ClDOl2rQ8dNHGdefeTbNfnrqmPVb0,2729
19
- odoo/addons/stock_barcodes/models/stock_quant.py,sha256=Oq2ZcuW9oe5DVy7WAnWLJiskTZWrQ_rPDB7pAdSSzQY,1052
20
- odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst,sha256=YwIWfY0nMK40FKKAJnRLWWlTZIJmEQtfr1mq3dAuWWc,317
21
- odoo/addons/stock_barcodes/readme/DESCRIPTION.rst,sha256=fMAHjb-c2tqBWN0iQ6VcYCDx6jn4PwWfxPjXwEEjOAI,273
22
- odoo/addons/stock_barcodes/readme/HISTORY.rst,sha256=pKGjt3TefR5ZnrjyLQxXP-6lDM0uX-KQoHlgBPXdE3k,374
23
- odoo/addons/stock_barcodes/readme/ROADMAP.rst,sha256=Mt3sxpxWWN1se9eU5JQzu3u9aY7TnDg08jvqGcHjJvk,230
24
- odoo/addons/stock_barcodes/readme/USAGE.rst,sha256=I3vBT7ih0lReN147-tDO6imDTuHWs-cN6PvHN06aQk8,2906
25
- odoo/addons/stock_barcodes/security/ir.model.access.csv,sha256=1HlTnJb0Bsbl-UCdoy-f7r7Xec3UMs7uTppQWOfH8-0,1337
26
- odoo/addons/stock_barcodes/static/description/icon.png,sha256=7ksDD35buxE_kBLoeXUGbdSW_5n-LC4S-SnQSs9tz1A,2994
27
- odoo/addons/stock_barcodes/static/description/icon.svg,sha256=aMrHV2Isu4t_jJlnLVYqbcL_icg9wT2eSSAKxQ3pgDA,69299
28
- odoo/addons/stock_barcodes/static/description/index.html,sha256=zuG9SsgjFWCSXYRa-e9-4TQMgm6BAxpJD4tvMMmLj3Q,19151
29
- odoo/addons/stock_barcodes/static/src/css/stock.scss,sha256=kSjiQyBTIFohLk-tTlux1GVXYiKdijzFrlONQNorlbs,2914
30
- odoo/addons/stock_barcodes/static/src/img/scan.png,sha256=DIN3r_B9kzMGmeRpqSx8K0S7RO8_FEwZudxGUYIPqSM,5405
31
- odoo/addons/stock_barcodes/static/src/sounds/bell.wav,sha256=s8_EchNk9OuAZzpZljON8IEAcKjmMD9yXZorizse24I,17684
32
- odoo/addons/stock_barcodes/static/src/sounds/error.wav,sha256=CorSmtFges2PaeOd8l15_scmq_Dv0AxPe4_nBYb43Pk,25190
33
- odoo/addons/stock_barcodes/static/src/utils/barcode_handler_field.esm.js,sha256=bhb4VoraERrnqzVirA8ipPxGf17DdZHCCXW9yQnJXAU,1366
34
- odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js,sha256=oH9jjJhOIH8vwBVZ5g2Vuei5O_-NxEs6U7mf0NRFNOo,691
35
- odoo/addons/stock_barcodes/static/src/views/form_view.esm.js,sha256=qTwS8O0NjDwDFCAMxLKLfHa-ALi2OC2Cc23rjvki7lQ,605
36
- odoo/addons/stock_barcodes/static/src/views/kanban_renderer.esm.js,sha256=IWNOOHQGVkt4K4JxtIwr53STFIzFWwHMttGo66kOdSw,5362
37
- odoo/addons/stock_barcodes/static/src/views/view_compiler.esm.js,sha256=gu7DFkjmZ3SQ4wzAZfLReiwe8CUzU8WyXPUlCqKyrQU,483
38
- odoo/addons/stock_barcodes/static/src/views/views.esm.js,sha256=KJyItV032Dib4m-BCQ1P75pVuYQuZ9jfWto386tiYDk,6789
39
- odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js,sha256=OMz0JvmVdRh-Qyys5TC5SWcYHjDjBCgNHUWQ-qhWOnQ,994
40
- odoo/addons/stock_barcodes/static/src/widgets/numeric_step.esm.js,sha256=MFBTwgoAJduBdFjBbIfaFCoIoCG2qIMPyJEgpqRr6Iw,1296
41
- odoo/addons/stock_barcodes/static/src/widgets/numeric_step.xml,sha256=7JaqswX6LACgIqpF5FwienwDtPp13Kespa6mqqXjXdQ,485
42
- odoo/addons/stock_barcodes/static/src/widgets/view_button.esm.js,sha256=gNaLCwqwPcBMkjUv5I8LS2BRD7dTRIHnglyf5dlxp74,223
43
- odoo/addons/stock_barcodes/static/src/widgets/view_button.xml,sha256=-kcLlTeRn7LbtP0jObtySHIiedMVTuAdcEEVsbg8RvU,372
44
- odoo/addons/stock_barcodes/tests/__init__.py,sha256=A1xFvq5EyzK2lwNHCz7G34Nz3Ynwtq9CNgEdbVdL-M0,182
45
- odoo/addons/stock_barcodes/tests/common.py,sha256=xCrbkTiSt0V4GRnbnLTnYMlMz0vRj7NIn-a_DbYvCco,5833
46
- odoo/addons/stock_barcodes/tests/test_stock_barcodes.py,sha256=7zdpFTIkc5dSJQsGNKFmmVly2rHt6IeBe4E3HbdKnJQ,3365
47
- odoo/addons/stock_barcodes/tests/test_stock_barcodes_new_lot.py,sha256=ERso6qMYkv6-XT6xImxzi1osO04iRf22sQLWhVFhJkM,1040
48
- odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py,sha256=AUGjrwkGqsE_2nNb_k90XSw1a1Ls7OSIr8cL0llWIHc,19288
49
- odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml,sha256=trxWfNOODRM5Qzxq4pSnmjz4bssFdE2FXxZcwdD9Utk,1706
50
- odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml,sha256=gYfZly4O55Pn78o6cwewlIDJqyfOJPNQicsoi-4vyak,296
51
- odoo/addons/stock_barcodes/views/stock_barcodes_option_view.xml,sha256=4TZval-U8im0VgqeTHdOAymsnGli1pSf9NJqlT68FGY,5243
52
- odoo/addons/stock_barcodes/views/stock_location_views.xml,sha256=ZjbIEGztSEqNcl6xN4R8H0Np68Y0-K05QP-R47Sscps,716
53
- odoo/addons/stock_barcodes/views/stock_picking_views.xml,sha256=yMuIoeOk9fVkpe8Ws0gC4PEWaZFqRk4HJWCWdUkatdc,4873
54
- odoo/addons/stock_barcodes/wizard/__init__.py,sha256=uUoIvaVAJWYetOqNRsGyYFjsBfMevz4UC3jkeZn_CTY,194
55
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py,sha256=Zu7mlQNjq8W_NkxadY7o3kRH8W9DFcnyqY1WQtKwA7w,31012
56
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py,sha256=72PrWzH2shYNeuYtLWd995PLO_kSxXJzdWuuSIv--y8,4970
57
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml,sha256=MhFH7zZ1ud1GFDvt9534MK7-EOP8rrElu9moGKk_Svw,10032
58
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py,sha256=uQhDD5YJ0vroYCB9rgUCx7iAiOKi3OrqRAxxcieQhtU,44259
59
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml,sha256=O-zF3GbCRWq2AdO0djmwuIS33y7j-h10rqoN3S4m2d4,24343
60
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py,sha256=_RqzmmcJ4xStRhyFaHo7BCpebC_DkBEqrlajzmClW60,6780
61
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml,sha256=84r_uF6FAaKq9R7I81Boomp3o7VuMYHeuo-ebwTyolY,12551
62
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml,sha256=-JiHxJ0E36Ll_UwACLzbYHz2jiwolx5xJbPDp_3QqYc,31778
63
- odoo/addons/stock_barcodes/wizard/stock_production_lot.py,sha256=LXb8IykNsU6fHNzm6exiD2oyLmFdjrhnv9Z7ixDihWI,2195
64
- odoo/addons/stock_barcodes/wizard/stock_production_lot_views.xml,sha256=MPR5_1Hieceb4a3klAQiLojMm4SBHEOF-8Ad3fBtaaE,1977
65
- odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/METADATA,sha256=wP3V6FxlZoetYz8KTE43wovJIAZZyXBkXDjv5VlKdGY,7614
66
- odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
67
- odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
68
- odoo_addon_stock_barcodes-16.0.1.1.0.8.dist-info/RECORD,,