odoo-addon-stock-barcodes 16.0.1.1.0.10__py3-none-any.whl → 16.0.2.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.
Files changed (83) 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/es.po +343 -104
  7. odoo/addons/stock_barcodes/i18n/fr.po +357 -104
  8. odoo/addons/stock_barcodes/i18n/it.po +386 -112
  9. odoo/addons/stock_barcodes/i18n/stock_barcodes.pot +268 -79
  10. odoo/addons/stock_barcodes/i18n/tr.po +411 -124
  11. odoo/addons/stock_barcodes/models/__init__.py +1 -0
  12. odoo/addons/stock_barcodes/models/barcode_events_mixin.py +11 -0
  13. odoo/addons/stock_barcodes/models/stock_barcodes_action.py +137 -3
  14. odoo/addons/stock_barcodes/models/stock_picking.py +17 -2
  15. odoo/addons/stock_barcodes/models/stock_picking_type.py +35 -0
  16. odoo/addons/stock_barcodes/models/stock_quant.py +51 -1
  17. odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst +4 -0
  18. odoo/addons/stock_barcodes/readme/DESCRIPTION.rst +4 -0
  19. odoo/addons/stock_barcodes/readme/HISTORY.rst +12 -0
  20. odoo/addons/stock_barcodes/readme/USAGE.rst +191 -10
  21. odoo/addons/stock_barcodes/reports/__init__.py +1 -0
  22. odoo/addons/stock_barcodes/reports/barcode_actions_report.py +16 -0
  23. odoo/addons/stock_barcodes/reports/barcode_actions_report.xml +25 -0
  24. odoo/addons/stock_barcodes/reports/reports.xml +28 -0
  25. odoo/addons/stock_barcodes/static/description/index.html +189 -33
  26. odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf +0 -0
  27. odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf +0 -0
  28. odoo/addons/stock_barcodes/static/src/img/add_product.png +0 -0
  29. odoo/addons/stock_barcodes/static/src/img/apply_inventory.png +0 -0
  30. odoo/addons/stock_barcodes/static/src/img/apply_inventory_reason.png +0 -0
  31. odoo/addons/stock_barcodes/static/src/img/barcode_interface_picking.png +0 -0
  32. odoo/addons/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png +0 -0
  33. odoo/addons/stock_barcodes/static/src/img/confirm_items_picking.png +0 -0
  34. odoo/addons/stock_barcodes/static/src/img/create_barcode_action.png +0 -0
  35. odoo/addons/stock_barcodes/static/src/img/form_add_product.png +0 -0
  36. odoo/addons/stock_barcodes/static/src/img/form_add_product_quantity.png +0 -0
  37. odoo/addons/stock_barcodes/static/src/img/form_add_product_reset.png +0 -0
  38. odoo/addons/stock_barcodes/static/src/img/inventory_barcode_action.png +0 -0
  39. odoo/addons/stock_barcodes/static/src/img/list_action_items.png +0 -0
  40. odoo/addons/stock_barcodes/static/src/img/list_items.png +0 -0
  41. odoo/addons/stock_barcodes/static/src/img/list_items_picking.png +0 -0
  42. odoo/addons/stock_barcodes/static/src/img/list_items_picking_edit.png +0 -0
  43. odoo/addons/stock_barcodes/static/src/img/list_items_picking_quantity.png +0 -0
  44. odoo/addons/stock_barcodes/static/src/img/list_items_picking_scanned.png +0 -0
  45. odoo/addons/stock_barcodes/static/src/img/list_picking.png +0 -0
  46. odoo/addons/stock_barcodes/static/src/img/print_barcodes.png +0 -0
  47. odoo/addons/stock_barcodes/static/src/scss/barcode.scss +135 -0
  48. odoo/addons/stock_barcodes/static/src/scss/stock.scss +285 -0
  49. odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js +1 -0
  50. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.esm.js +88 -0
  51. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.scss +74 -0
  52. odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml +45 -0
  53. odoo/addons/stock_barcodes/static/src/views/form/form_controller.esm.js +71 -0
  54. odoo/addons/stock_barcodes/static/src/views/form/form_view.esm.js +14 -0
  55. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_record.esm.js +27 -0
  56. odoo/addons/stock_barcodes/static/src/views/{kanban_renderer.esm.js → kanban/kanban_renderer.esm.js} +78 -27
  57. odoo/addons/stock_barcodes/static/src/views/kanban/kanban_view.esm.js +8 -0
  58. odoo/addons/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml +28 -0
  59. odoo/addons/stock_barcodes/static/src/views/views.esm.js +35 -7
  60. odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js +46 -0
  61. odoo/addons/stock_barcodes/tests/common.py +25 -0
  62. odoo/addons/stock_barcodes/tests/test_stock_barcodes.py +65 -1
  63. odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py +97 -13
  64. odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml +83 -9
  65. odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml +1 -1
  66. odoo/addons/stock_barcodes/views/stock_picking_views.xml +29 -10
  67. odoo/addons/stock_barcodes/wizard/__init__.py +1 -0
  68. odoo/addons/stock_barcodes/wizard/stock_barcodes_candidate_picking.py +148 -0
  69. odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py +148 -55
  70. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py +30 -2
  71. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml +101 -92
  72. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py +77 -141
  73. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml +197 -219
  74. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py +45 -0
  75. odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml +87 -170
  76. odoo_addon_stock_barcodes-16.0.2.0.0.1.dist-info/METADATA +435 -0
  77. odoo_addon_stock_barcodes-16.0.2.0.0.1.dist-info/RECORD +103 -0
  78. odoo/addons/stock_barcodes/static/src/css/stock.scss +0 -136
  79. odoo/addons/stock_barcodes/static/src/views/form_view.esm.js +0 -17
  80. odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info/METADATA +0 -230
  81. odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info/RECORD +0 -68
  82. {odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.1.dist-info}/WHEEL +0 -0
  83. {odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.1.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,7 @@
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
+
1
5
  ==============
2
6
  Stock Barcodes
3
7
  ==============
@@ -7,13 +11,13 @@ Stock Barcodes
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:57d26158322c09cb66f30397e6644567bf9240ecc415f7fd48ec7bc6e6406ec9
14
+ !! source digest: sha256:e429e57aae9e2b85719c0aa8e1e85f19c26d6494f62b7ef84905992e263b043e
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Beta
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github
@@ -36,6 +40,10 @@ other modules.
36
40
  This module also makes use of this wizard for providing barcode support for
37
41
  doing inventories and picking operations.
38
42
 
43
+ This module provides configuring barcodes for barcode actions.
44
+
45
+
46
+
39
47
  **Table of contents**
40
48
 
41
49
  .. contents::
@@ -47,13 +55,74 @@ Usage
47
55
  Barcode interface for inventory operations
48
56
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
49
57
 
50
- To use the barcode interface on inventory:
58
+ Option 1: To use the barcode interface on inventory
59
+
60
+ #. Go to *Inventory > operations > Inventory Adjustments*.
61
+ #. Create new inventory with "Select products manually" option.
62
+ #. Start inventory.
63
+ #. Click to "Scan barcodes" smart button.
64
+ #. Start reading barcodes.
65
+
66
+ Option 2: Use the barcode interface inventory directly from the Barcodes application
67
+ #. Go to *Barcodes*.
68
+ #. Select the *Inventory* option.
69
+
70
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png
71
+ :height: 100
72
+ :width: 200
73
+ :alt: Inventory barcode action
74
+
75
+ #. Start scanning barcodes.
76
+
77
+ Actions
78
+ # Press the *+ Product* button to display the form for the new item.
79
+
80
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png
81
+ :height: 100
82
+ :width: 200
83
+ :alt: Add product
84
+
85
+ # When you select a product, a numeric field is displayed to add the quantity.
86
+
87
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png
88
+ :height: 100
89
+ :width: 200
90
+ :alt: Add quantity product
91
+
92
+ # When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.
93
+
94
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png
95
+ :height: 100
96
+ :width: 200
97
+ :alt: Reset data form
98
+
99
+ # When you press the *Clean values* button, all fields are reset and the form is closed.
100
+ # When you press the *Confirm* button, the new item is added and the form is closed.
101
+ # When the eye icon is closed, the created items greater than zero are displayed, and if not, those less than or equal to zero.
102
+
103
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items.png
104
+ :height: 100
105
+ :width: 200
106
+ :alt: Reset data form
107
+
108
+ # In the list, the trash can icon allows you to reset the quantity to zero and the edit icon allows you to change the item values.
109
+
110
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_action_items.png
111
+ :height: 100
112
+ :width: 200
113
+ :alt: Reset data form
114
+
115
+ # The *Apply* button is only displayed if there are items with quantities greater than zero, regardless of whether they were scanned or entered manually; If you press all the defined quantities will be processed after defining the reason for the inventory adjustment and then the main barcode menu will be displayed.
116
+
117
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory.png
118
+ :height: 100
119
+ :width: 200
120
+ :alt: Apply inventory
121
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory_reason.png
122
+ :height: 100
123
+ :width: 200
124
+ :alt: Apply inventory reason
51
125
 
52
- #. Go to *Inventory > operations > Inventory Adjustments*.
53
- #. Create new inventory with "Select products manually" option.
54
- #. Start inventory.
55
- #. Click to "Scan barcodes" smart button.
56
- #. Start reading barcodes.
57
126
 
58
127
  Barcode interface for picking operations
59
128
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -67,11 +136,109 @@ To use the barcode interface on picking operations:
67
136
  #. Click on scanner button on any operation type.
68
137
  #. Start reading barcodes.
69
138
 
70
- To use the barcode interface on a picking:
139
+ Option 1: To use the barcode interface on a picking:
71
140
 
72
- #. Go to *Inventory > Transfers*.
73
- #. Click to "Scan barcodes" smart button.
74
- #. Start reading barcodes.
141
+ #. Go to *Inventory > Transfers*.
142
+ #. Click to "Scan barcodes" smart button.
143
+ #. Start reading barcodes.
144
+
145
+ Option 2: Use the barcode interface picking directly from the Barcodes application
146
+ #. Go to *Barcodes*.
147
+ #. Select the option *OPERATIONS*.
148
+
149
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png
150
+ :height: 100
151
+ :width: 200
152
+ :alt: Operation barcode action
153
+
154
+ # Select the type of picking.
155
+ # The pickings in ready status are displayed, select the one you want to start scanning.
156
+
157
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_picking.png
158
+ :height: 100
159
+ :width: 200
160
+ :alt: List picking
161
+
162
+ #. Start scanning barcodes.
163
+
164
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/barcode_interface_picking.png
165
+ :height: 100
166
+ :width: 200
167
+ :alt: List picking
168
+
169
+ Actions
170
+ # All the items that have been configured for the selected picking are listed.
171
+
172
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking.png
173
+ :height: 100
174
+ :width: 200
175
+ :alt: List picking
176
+
177
+ # The edit icon in the list allows you to modify the data.
178
+
179
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_edit.png
180
+ :height: 100
181
+ :width: 200
182
+ :alt: Edit picking
183
+
184
+ # The button that contains a *+120* (in this case), allows you to define all the
185
+ remaining quantities. Once defined, this button disappears and if you want to change the
186
+ quantities, press the edit button.
187
+
188
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_quantity.png
189
+ :height: 100
190
+ :width: 200
191
+ :alt: Quantity picking
192
+
193
+ # If there is at least one item with a quantity already defined, an eye icon is displayed,
194
+ which if closed shows the items and their quantities already scanned.
195
+
196
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_scanned.png
197
+ :height: 100
198
+ :width: 200
199
+ :alt: Picking scanned
200
+
201
+ # When you press the *Validate* button, a wizard will be displayed to confirm the action.
202
+ If everything is correct, it is validated and you return to the picking list mentioned above.
203
+
204
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_items_picking.png
205
+ :height: 100
206
+ :width: 200
207
+ :alt: Picking scanned
208
+
209
+ # If there is an item whose quantity is zero, a wizard will be displayed after the one mentioned
210
+ above, to confirm if you want to process all the quantities. If positive, you will proceed
211
+ and be directed to the list mentioned above in the previous point.
212
+
213
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png
214
+ :height: 100
215
+ :width: 200
216
+ :alt: Picking scanned
217
+
218
+ # Press the *+ Product* button to display the form for the new item.
219
+
220
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png
221
+ :height: 100
222
+ :width: 200
223
+ :alt: Add product
224
+
225
+ # When you select a product, a numeric field is displayed to add the quantity.
226
+
227
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png
228
+ :height: 100
229
+ :width: 200
230
+ :alt: Add quantity product
231
+
232
+ # When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.
233
+
234
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png
235
+ :height: 100
236
+ :width: 200
237
+ :alt: Reset data form
238
+
239
+ # When you press the *Clean values* button, all fields are reset and the form is closed.
240
+ # When you press the *Confirm* button, the new item is added and the form is closed.
241
+ # When adding the new item all the quantities are assigned to it, if you want to modify it, press the edit icon.
75
242
 
76
243
  The barcode scanner interface has two operation modes. In both of them user
77
244
  can scan:
@@ -124,6 +291,28 @@ this log is show to user other reads with the same product and location done
124
291
  by other users.
125
292
  User can remove the last read scan.
126
293
 
294
+ Barcode interface for barcode actions
295
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
296
+ To use the barcode interface for actions:
297
+
298
+ #. Go to *Inventory > Configuration > Barcode Actions*.
299
+ #. Create a new barcode action and configure the barcode.
300
+
301
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/create_barcode_action.png
302
+ :height: 100
303
+ :width: 200
304
+ :alt: Print barcodes
305
+
306
+ #. Select the barcode actions you want to use, a button (PRINT BARCODES) will appear that allows you to print the configured barcodes to PDF.
307
+
308
+ .. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/print_barcodes.png
309
+ :height: 100
310
+ :width: 200
311
+ :alt: Print barcodes
312
+
313
+ #. Go to *Barcodes*.
314
+ #. Start scanning barcodes from actions.
315
+
127
316
  Known issues / Roadmap
128
317
  ======================
129
318
 
@@ -153,6 +342,18 @@ Changelog
153
342
  * [ADD] New feature.
154
343
  Add security for users.
155
344
 
345
+ 16.0.1.0.0 (2025-01-23)
346
+ ~~~~~~~~~~~~~~~~~~~~~~~
347
+ * [IMP]
348
+ Improved views to optimize navigation and functionality.
349
+ Intuitive and mobile-friendly views.
350
+ Visual improvement of the main view accessed from the Barcodes menu.
351
+
352
+ * [ADD] New feature.
353
+ Barcode reading to barcode actions.
354
+ Generate PDF document for the barcodes of the selected barcode actions.
355
+
356
+
156
357
  Bug Tracker
157
358
  ===========
158
359
 
@@ -196,6 +397,10 @@ Contributors
196
397
 
197
398
  * Enric Tobella
198
399
 
400
+ * `Binhex Cloud <https://www.binhex.cloud/>`_:
401
+
402
+ * Edilio Escalona Almira
403
+
199
404
  Maintainers
200
405
  ~~~~~~~~~~~
201
406
 
@@ -3,4 +3,5 @@
3
3
 
4
4
  from . import models
5
5
  from . import wizard
6
+ from . import reports
6
7
  from .hooks import pre_init_hook
@@ -3,12 +3,12 @@
3
3
  {
4
4
  "name": "Stock Barcodes",
5
5
  "summary": "It provides read barcode on stock operations.",
6
- "version": "16.0.1.1.0",
6
+ "version": "16.0.2.0.0",
7
7
  "author": "Tecnativa, " "Odoo Community Association (OCA)",
8
8
  "website": "https://github.com/OCA/stock-logistics-barcode",
9
9
  "license": "AGPL-3",
10
10
  "category": "Extra Tools",
11
- "depends": ["barcodes", "stock", "web_widget_numeric_step"],
11
+ "depends": ["barcodes", "stock", "web_widget_numeric_step", "web", "mail"],
12
12
  "data": [
13
13
  "security/ir.model.access.csv",
14
14
  "views/stock_barcodes_action_view.xml",
@@ -24,6 +24,9 @@
24
24
  "data/stock_barcodes_action.xml",
25
25
  "data/stock_barcodes_option.xml",
26
26
  "views/stock_barcodes_menu.xml",
27
+ # Reports
28
+ "reports/barcode_actions_report.xml",
29
+ "reports/reports.xml",
27
30
  ],
28
31
  "assets": {
29
32
  "web.assets_backend": [
@@ -33,8 +36,10 @@
33
36
  "/web_widget_numeric_step/static/src/numeric_step.xml",
34
37
  "/stock_barcodes/static/src/widgets/numeric_step.xml",
35
38
  ),
39
+ "/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml",
36
40
  "/stock_barcodes/static/src/widgets/view_button.xml",
37
- "/stock_barcodes/static/src/css/stock.scss",
41
+ "/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml",
42
+ "/stock_barcodes/static/src/**/*.scss",
38
43
  ],
39
44
  },
40
45
  "installable": True,
@@ -39,4 +39,12 @@
39
39
  <field name="key_char_shortcut">8</field>
40
40
  <field name="context">{'inventory_mode': True}</field>
41
41
  </record>
42
+
43
+ <record id="stock_barcodes_action_barcode_operations" model="stock.barcodes.action">
44
+ <field name="name">Operations</field>
45
+ <field name="sequence">40</field>
46
+ <field name="action_window_id" ref="stock.stock_picking_type_action" />
47
+ <field name="key_char_shortcut">9</field>
48
+ <field name="context">{'operations_mode': True}</field>
49
+ </record>
42
50
  </odoo>
@@ -533,5 +533,103 @@
533
533
  ref="stock_barcodes.stock_barcodes_option_group_inventory"
534
534
  />
535
535
  </record>
536
- <!-- End inventory options -->
536
+
537
+
538
+ <!-- Option group for Operations -->
539
+ <record
540
+ id="stock_barcodes_option_group_operation"
541
+ model="stock.barcodes.option.group"
542
+ >
543
+ <field name="name">Operation options</field>
544
+ <field name="code">OPE</field>
545
+ <field name="barcode_guided_mode" />
546
+ </record>
547
+ <record
548
+ id="stock_barcodes_option_location_id_operation"
549
+ model="stock.barcodes.option"
550
+ >
551
+ <field name="name">Location</field>
552
+ <field name="step">1</field>
553
+ <field name="sequence">10</field>
554
+ <field name="field_name">location_id</field>
555
+ <field name="filled_default">True</field>
556
+ <field name="forced">False</field>
557
+ <field name="to_scan">False</field>
558
+ <field name="required">True</field>
559
+ <field name="clean_after_done">False</field>
560
+ <field
561
+ name="option_group_id"
562
+ ref="stock_barcodes.stock_barcodes_option_group_operation"
563
+ />
564
+ </record>
565
+ <record
566
+ id="stock_barcodes_option_packaging_id_operation"
567
+ model="stock.barcodes.option"
568
+ >
569
+ <field name="name">Packaging</field>
570
+ <field name="step">2</field>
571
+ <field name="sequence">10</field>
572
+ <field name="field_name">packaging_id</field>
573
+ <field name="filled_default">False</field>
574
+ <field name="forced">False</field>
575
+ <field name="to_scan">True</field>
576
+ <field name="required">False</field>
577
+ <field name="clean_after_done">True</field>
578
+ <field
579
+ name="option_group_id"
580
+ ref="stock_barcodes.stock_barcodes_option_group_operation"
581
+ />
582
+ </record>
583
+ <record
584
+ id="stock_barcodes_option_product_id_operation"
585
+ model="stock.barcodes.option"
586
+ >
587
+ <field name="name">Product</field>
588
+ <field name="step">2</field>
589
+ <field name="sequence">20</field>
590
+ <field name="field_name">product_id</field>
591
+ <field name="filled_default">False</field>
592
+ <field name="forced">False</field>
593
+ <field name="to_scan">True</field>
594
+ <field name="required">True</field>
595
+ <field name="clean_after_done">True</field>
596
+ <field
597
+ name="option_group_id"
598
+ ref="stock_barcodes.stock_barcodes_option_group_operation"
599
+ />
600
+ </record>
601
+ <record id="stock_barcodes_option_lot_id_operation" model="stock.barcodes.option">
602
+ <field name="name">Lot</field>
603
+ <field name="step">2</field>
604
+ <field name="sequence">30</field>
605
+ <field name="field_name">lot_id</field>
606
+ <field name="filled_default">False</field>
607
+ <field name="forced">False</field>
608
+ <field name="to_scan">True</field>
609
+ <field name="required">True</field>
610
+ <field name="clean_after_done">True</field>
611
+ <field
612
+ name="option_group_id"
613
+ ref="stock_barcodes.stock_barcodes_option_group_operation"
614
+ />
615
+ </record>
616
+ <record
617
+ id="stock_barcodes_option_product_qty_operation"
618
+ model="stock.barcodes.option"
619
+ >
620
+ <field name="name">Product Qty</field>
621
+ <field name="step">3</field>
622
+ <field name="sequence">50</field>
623
+ <field name="field_name">product_qty</field>
624
+ <field name="filled_default">False</field>
625
+ <field name="forced">False</field>
626
+ <field name="to_scan">False</field>
627
+ <field name="required">True</field>
628
+ <field name="clean_after_done">True</field>
629
+ <field
630
+ name="option_group_id"
631
+ ref="stock_barcodes.stock_barcodes_option_group_operation"
632
+ />
633
+ </record>
634
+ <!-- End operation options -->
537
635
  </odoo>