odoo-addon-stock-barcodes 16.0.1.1.0.10__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.
- odoo/addons/stock_barcodes/README.rst +217 -12
- odoo/addons/stock_barcodes/__init__.py +1 -0
- odoo/addons/stock_barcodes/__manifest__.py +8 -3
- odoo/addons/stock_barcodes/data/stock_barcodes_action.xml +8 -0
- odoo/addons/stock_barcodes/data/stock_barcodes_option.xml +99 -1
- odoo/addons/stock_barcodes/i18n/stock_barcodes.pot +268 -79
- odoo/addons/stock_barcodes/models/__init__.py +1 -0
- odoo/addons/stock_barcodes/models/barcode_events_mixin.py +11 -0
- odoo/addons/stock_barcodes/models/stock_barcodes_action.py +137 -3
- odoo/addons/stock_barcodes/models/stock_picking.py +17 -2
- odoo/addons/stock_barcodes/models/stock_picking_type.py +35 -0
- odoo/addons/stock_barcodes/models/stock_quant.py +51 -1
- odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst +4 -0
- odoo/addons/stock_barcodes/readme/DESCRIPTION.rst +4 -0
- odoo/addons/stock_barcodes/readme/HISTORY.rst +12 -0
- odoo/addons/stock_barcodes/readme/USAGE.rst +191 -10
- odoo/addons/stock_barcodes/reports/__init__.py +1 -0
- odoo/addons/stock_barcodes/reports/barcode_actions_report.py +16 -0
- odoo/addons/stock_barcodes/reports/barcode_actions_report.xml +25 -0
- odoo/addons/stock_barcodes/reports/reports.xml +28 -0
- odoo/addons/stock_barcodes/static/description/index.html +189 -33
- odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf +0 -0
- odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf +0 -0
- odoo/addons/stock_barcodes/static/src/img/add_product.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/apply_inventory.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/apply_inventory_reason.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/barcode_interface_picking.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/confirm_items_picking.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/create_barcode_action.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/form_add_product.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/form_add_product_quantity.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/form_add_product_reset.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/inventory_barcode_action.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_action_items.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_items.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_items_picking.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_items_picking_edit.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_items_picking_quantity.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_items_picking_scanned.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/list_picking.png +0 -0
- odoo/addons/stock_barcodes/static/src/img/print_barcodes.png +0 -0
- odoo/addons/stock_barcodes/static/src/scss/barcode.scss +135 -0
- odoo/addons/stock_barcodes/static/src/scss/stock.scss +285 -0
- odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js +1 -0
- odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.esm.js +88 -0
- odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.scss +74 -0
- odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml +45 -0
- odoo/addons/stock_barcodes/static/src/views/form/form_controller.esm.js +71 -0
- odoo/addons/stock_barcodes/static/src/views/form/form_view.esm.js +14 -0
- odoo/addons/stock_barcodes/static/src/views/kanban/kanban_record.esm.js +27 -0
- odoo/addons/stock_barcodes/static/src/views/{kanban_renderer.esm.js → kanban/kanban_renderer.esm.js} +78 -27
- odoo/addons/stock_barcodes/static/src/views/kanban/kanban_view.esm.js +8 -0
- odoo/addons/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml +28 -0
- odoo/addons/stock_barcodes/static/src/views/views.esm.js +35 -7
- odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js +46 -0
- odoo/addons/stock_barcodes/tests/common.py +25 -0
- odoo/addons/stock_barcodes/tests/test_stock_barcodes.py +65 -1
- odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py +97 -13
- odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml +83 -9
- odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml +1 -1
- odoo/addons/stock_barcodes/views/stock_picking_views.xml +29 -10
- odoo/addons/stock_barcodes/wizard/__init__.py +1 -0
- odoo/addons/stock_barcodes/wizard/stock_barcodes_candidate_picking.py +148 -0
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py +148 -55
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py +30 -2
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml +101 -92
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py +77 -141
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml +197 -219
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py +45 -0
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml +87 -170
- odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/METADATA +435 -0
- odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/RECORD +103 -0
- odoo/addons/stock_barcodes/static/src/css/stock.scss +0 -136
- odoo/addons/stock_barcodes/static/src/views/form_view.esm.js +0 -17
- odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info/METADATA +0 -230
- odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info/RECORD +0 -68
- {odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/WHEEL +0 -0
- {odoo_addon_stock_barcodes-16.0.1.1.0.10.dist-info → odoo_addon_stock_barcodes-16.0.2.0.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,435 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: odoo-addon-stock_barcodes
|
3
|
+
Version: 16.0.2.0.0
|
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
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
19
|
+
:alt: Odoo Community Association
|
20
|
+
|
21
|
+
==============
|
22
|
+
Stock Barcodes
|
23
|
+
==============
|
24
|
+
|
25
|
+
..
|
26
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
|
+
!! This file is generated by oca-gen-addon-readme !!
|
28
|
+
!! changes will be overwritten. !!
|
29
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
30
|
+
!! source digest: sha256:e429e57aae9e2b85719c0aa8e1e85f19c26d6494f62b7ef84905992e263b043e
|
31
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
32
|
+
|
33
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
34
|
+
:target: https://odoo-community.org/page/development-status
|
35
|
+
:alt: Beta
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
37
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
38
|
+
:alt: License: AGPL-3
|
39
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--barcode-lightgray.png?logo=github
|
40
|
+
:target: https://github.com/OCA/stock-logistics-barcode/tree/16.0/stock_barcodes
|
41
|
+
:alt: OCA/stock-logistics-barcode
|
42
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
43
|
+
:target: https://translation.odoo-community.org/projects/stock-logistics-barcode-16-0/stock-logistics-barcode-16-0-stock_barcodes
|
44
|
+
:alt: Translate me on Weblate
|
45
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
46
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-barcode&target_branch=16.0
|
47
|
+
:alt: Try me on Runboat
|
48
|
+
|
49
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
50
|
+
|
51
|
+
This module provides a barcode reader interface for stock module.
|
52
|
+
|
53
|
+
This module contains a base wizard read barcode that can be extended by
|
54
|
+
other modules.
|
55
|
+
|
56
|
+
This module also makes use of this wizard for providing barcode support for
|
57
|
+
doing inventories and picking operations.
|
58
|
+
|
59
|
+
This module provides configuring barcodes for barcode actions.
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
**Table of contents**
|
64
|
+
|
65
|
+
.. contents::
|
66
|
+
:local:
|
67
|
+
|
68
|
+
Usage
|
69
|
+
=====
|
70
|
+
|
71
|
+
Barcode interface for inventory operations
|
72
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
73
|
+
|
74
|
+
Option 1: To use the barcode interface on inventory
|
75
|
+
|
76
|
+
#. Go to *Inventory > operations > Inventory Adjustments*.
|
77
|
+
#. Create new inventory with "Select products manually" option.
|
78
|
+
#. Start inventory.
|
79
|
+
#. Click to "Scan barcodes" smart button.
|
80
|
+
#. Start reading barcodes.
|
81
|
+
|
82
|
+
Option 2: Use the barcode interface inventory directly from the Barcodes application
|
83
|
+
#. Go to *Barcodes*.
|
84
|
+
#. Select the *Inventory* option.
|
85
|
+
|
86
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png
|
87
|
+
:height: 100
|
88
|
+
:width: 200
|
89
|
+
:alt: Inventory barcode action
|
90
|
+
|
91
|
+
#. Start scanning barcodes.
|
92
|
+
|
93
|
+
Actions
|
94
|
+
# Press the *+ Product* button to display the form for the new item.
|
95
|
+
|
96
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png
|
97
|
+
:height: 100
|
98
|
+
:width: 200
|
99
|
+
:alt: Add product
|
100
|
+
|
101
|
+
# When you select a product, a numeric field is displayed to add the quantity.
|
102
|
+
|
103
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png
|
104
|
+
:height: 100
|
105
|
+
:width: 200
|
106
|
+
:alt: Add quantity product
|
107
|
+
|
108
|
+
# When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.
|
109
|
+
|
110
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png
|
111
|
+
:height: 100
|
112
|
+
:width: 200
|
113
|
+
:alt: Reset data form
|
114
|
+
|
115
|
+
# When you press the *Clean values* button, all fields are reset and the form is closed.
|
116
|
+
# When you press the *Confirm* button, the new item is added and the form is closed.
|
117
|
+
# When the eye icon is closed, the created items greater than zero are displayed, and if not, those less than or equal to zero.
|
118
|
+
|
119
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items.png
|
120
|
+
:height: 100
|
121
|
+
:width: 200
|
122
|
+
:alt: Reset data form
|
123
|
+
|
124
|
+
# 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.
|
125
|
+
|
126
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_action_items.png
|
127
|
+
:height: 100
|
128
|
+
:width: 200
|
129
|
+
:alt: Reset data form
|
130
|
+
|
131
|
+
# 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.
|
132
|
+
|
133
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory.png
|
134
|
+
:height: 100
|
135
|
+
:width: 200
|
136
|
+
:alt: Apply inventory
|
137
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/apply_inventory_reason.png
|
138
|
+
:height: 100
|
139
|
+
:width: 200
|
140
|
+
:alt: Apply inventory reason
|
141
|
+
|
142
|
+
|
143
|
+
Barcode interface for picking operations
|
144
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
145
|
+
You can use the barcode interface in a picking or an operation type, the main
|
146
|
+
difference is that if you open the barcode interface from a picking, this
|
147
|
+
picking is locked and you read products for it.
|
148
|
+
|
149
|
+
To use the barcode interface on picking operations:
|
150
|
+
|
151
|
+
#. Go to *Inventory*.
|
152
|
+
#. Click on scanner button on any operation type.
|
153
|
+
#. Start reading barcodes.
|
154
|
+
|
155
|
+
Option 1: To use the barcode interface on a picking:
|
156
|
+
|
157
|
+
#. Go to *Inventory > Transfers*.
|
158
|
+
#. Click to "Scan barcodes" smart button.
|
159
|
+
#. Start reading barcodes.
|
160
|
+
|
161
|
+
Option 2: Use the barcode interface picking directly from the Barcodes application
|
162
|
+
#. Go to *Barcodes*.
|
163
|
+
#. Select the option *OPERATIONS*.
|
164
|
+
|
165
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/inventory_barcode_action.png
|
166
|
+
:height: 100
|
167
|
+
:width: 200
|
168
|
+
:alt: Operation barcode action
|
169
|
+
|
170
|
+
# Select the type of picking.
|
171
|
+
# The pickings in ready status are displayed, select the one you want to start scanning.
|
172
|
+
|
173
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_picking.png
|
174
|
+
:height: 100
|
175
|
+
:width: 200
|
176
|
+
:alt: List picking
|
177
|
+
|
178
|
+
#. Start scanning barcodes.
|
179
|
+
|
180
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/barcode_interface_picking.png
|
181
|
+
:height: 100
|
182
|
+
:width: 200
|
183
|
+
:alt: List picking
|
184
|
+
|
185
|
+
Actions
|
186
|
+
# All the items that have been configured for the selected picking are listed.
|
187
|
+
|
188
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking.png
|
189
|
+
:height: 100
|
190
|
+
:width: 200
|
191
|
+
:alt: List picking
|
192
|
+
|
193
|
+
# The edit icon in the list allows you to modify the data.
|
194
|
+
|
195
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_edit.png
|
196
|
+
:height: 100
|
197
|
+
:width: 200
|
198
|
+
:alt: Edit picking
|
199
|
+
|
200
|
+
# The button that contains a *+120* (in this case), allows you to define all the
|
201
|
+
remaining quantities. Once defined, this button disappears and if you want to change the
|
202
|
+
quantities, press the edit button.
|
203
|
+
|
204
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_quantity.png
|
205
|
+
:height: 100
|
206
|
+
:width: 200
|
207
|
+
:alt: Quantity picking
|
208
|
+
|
209
|
+
# If there is at least one item with a quantity already defined, an eye icon is displayed,
|
210
|
+
which if closed shows the items and their quantities already scanned.
|
211
|
+
|
212
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/list_items_picking_scanned.png
|
213
|
+
:height: 100
|
214
|
+
:width: 200
|
215
|
+
:alt: Picking scanned
|
216
|
+
|
217
|
+
# When you press the *Validate* button, a wizard will be displayed to confirm the action.
|
218
|
+
If everything is correct, it is validated and you return to the picking list mentioned above.
|
219
|
+
|
220
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_items_picking.png
|
221
|
+
:height: 100
|
222
|
+
:width: 200
|
223
|
+
:alt: Picking scanned
|
224
|
+
|
225
|
+
# If there is an item whose quantity is zero, a wizard will be displayed after the one mentioned
|
226
|
+
above, to confirm if you want to process all the quantities. If positive, you will proceed
|
227
|
+
and be directed to the list mentioned above in the previous point.
|
228
|
+
|
229
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png
|
230
|
+
:height: 100
|
231
|
+
:width: 200
|
232
|
+
:alt: Picking scanned
|
233
|
+
|
234
|
+
# Press the *+ Product* button to display the form for the new item.
|
235
|
+
|
236
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/add_product.png
|
237
|
+
:height: 100
|
238
|
+
:width: 200
|
239
|
+
:alt: Add product
|
240
|
+
|
241
|
+
# When you select a product, a numeric field is displayed to add the quantity.
|
242
|
+
|
243
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_quantity.png
|
244
|
+
:height: 100
|
245
|
+
:width: 200
|
246
|
+
:alt: Add quantity product
|
247
|
+
|
248
|
+
# When you press the button with the trash can icon, the values of the form are reset (except for the location) without closing it.
|
249
|
+
|
250
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/form_add_product_reset.png
|
251
|
+
:height: 100
|
252
|
+
:width: 200
|
253
|
+
:alt: Reset data form
|
254
|
+
|
255
|
+
# When you press the *Clean values* button, all fields are reset and the form is closed.
|
256
|
+
# When you press the *Confirm* button, the new item is added and the form is closed.
|
257
|
+
# When adding the new item all the quantities are assigned to it, if you want to modify it, press the edit icon.
|
258
|
+
|
259
|
+
The barcode scanner interface has two operation modes. In both of them user
|
260
|
+
can scan:
|
261
|
+
|
262
|
+
#. Warehouse locations with barcode.
|
263
|
+
#. Product packaging with barcode.
|
264
|
+
#. Product with barcode.
|
265
|
+
#. Product Lots (The barcode is name field in this case).
|
266
|
+
|
267
|
+
|
268
|
+
Automatic operation mode
|
269
|
+
~~~~~~~~~~~~~~~~~~~~~~~~
|
270
|
+
|
271
|
+
This is the default mode, all screen controls are locked to avoid scan into
|
272
|
+
fields.
|
273
|
+
|
274
|
+
The user only has to scan barcode in physical warehouse locations with a
|
275
|
+
scanner hardward, the interface read the barcode and do operations in this
|
276
|
+
order:
|
277
|
+
|
278
|
+
#. Try search a product, if found, is assigned to product_id field and creates
|
279
|
+
or update inventory line with 1.0 unit. (If product has tracking by lots
|
280
|
+
the interface wait for a lot to be scanned).
|
281
|
+
#. Try search a product packaging, if found, the product_id related is set,
|
282
|
+
product quantities are updated and create or update inventory line with
|
283
|
+
product quantities defined in the product packaging.
|
284
|
+
#. Try search a lot (The product is mandatory in this case so you first scan a
|
285
|
+
product and then scann a lot), this lot field is not erased until that
|
286
|
+
product change, so for each product scann the interface add or update a
|
287
|
+
inventory line with this lot.
|
288
|
+
#. Try to search a location, if found the field location is set and next scan
|
289
|
+
action will be done with this warehouse location.
|
290
|
+
|
291
|
+
If barcode has not found, when message is displayed you can create this lot
|
292
|
+
scanning the product.
|
293
|
+
|
294
|
+
Manual entry mode
|
295
|
+
~~~~~~~~~~~~~~~~~
|
296
|
+
|
297
|
+
You can change to "manual entry" to allow to select data without scanner
|
298
|
+
hardware, but hardward scanner still active on, so a use case would be when
|
299
|
+
user wants set quantities manually instead increment 1.0 unit peer scan action.
|
300
|
+
|
301
|
+
Scan logs
|
302
|
+
~~~~~~~~~
|
303
|
+
|
304
|
+
All scanned barcodes are saved into model.
|
305
|
+
Barcode scanning interface display 10 last records linked to model, the goal of
|
306
|
+
this log is show to user other reads with the same product and location done
|
307
|
+
by other users.
|
308
|
+
User can remove the last read scan.
|
309
|
+
|
310
|
+
Barcode interface for barcode actions
|
311
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
312
|
+
To use the barcode interface for actions:
|
313
|
+
|
314
|
+
#. Go to *Inventory > Configuration > Barcode Actions*.
|
315
|
+
#. Create a new barcode action and configure the barcode.
|
316
|
+
|
317
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/create_barcode_action.png
|
318
|
+
:height: 100
|
319
|
+
:width: 200
|
320
|
+
:alt: Print barcodes
|
321
|
+
|
322
|
+
#. Select the barcode actions you want to use, a button (PRINT BARCODES) will appear that allows you to print the configured barcodes to PDF.
|
323
|
+
|
324
|
+
.. image:: https://raw.githubusercontent.com/stock_barcodes/static/src/img/print_barcodes.png
|
325
|
+
:height: 100
|
326
|
+
:width: 200
|
327
|
+
:alt: Print barcodes
|
328
|
+
|
329
|
+
#. Go to *Barcodes*.
|
330
|
+
#. Start scanning barcodes from actions.
|
331
|
+
|
332
|
+
Known issues / Roadmap
|
333
|
+
======================
|
334
|
+
|
335
|
+
* Excute action_done() method outside onchange environment.
|
336
|
+
* Allow create product when a barcode has not been found.
|
337
|
+
* Allow to select picking reading its barcode.
|
338
|
+
* Allow to select multiple pickings to process scanned products.
|
339
|
+
|
340
|
+
Changelog
|
341
|
+
=========
|
342
|
+
|
343
|
+
11.0.1.1.0 (2019-09-24)
|
344
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
345
|
+
|
346
|
+
* [ADD] New feature.
|
347
|
+
User can uses barcode interface in picking operations.
|
348
|
+
|
349
|
+
13.0.1.1.1 (2021-02-06)
|
350
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
351
|
+
|
352
|
+
* [ADD] New feature.
|
353
|
+
Add option to get lots automatically based on removal strategy in inventory.
|
354
|
+
|
355
|
+
14.0.1.0.0 (2021-04-05)
|
356
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
357
|
+
|
358
|
+
* [ADD] New feature.
|
359
|
+
Add security for users.
|
360
|
+
|
361
|
+
16.0.1.0.0 (2025-01-23)
|
362
|
+
~~~~~~~~~~~~~~~~~~~~~~~
|
363
|
+
* [IMP]
|
364
|
+
Improved views to optimize navigation and functionality.
|
365
|
+
Intuitive and mobile-friendly views.
|
366
|
+
Visual improvement of the main view accessed from the Barcodes menu.
|
367
|
+
|
368
|
+
* [ADD] New feature.
|
369
|
+
Barcode reading to barcode actions.
|
370
|
+
Generate PDF document for the barcodes of the selected barcode actions.
|
371
|
+
|
372
|
+
|
373
|
+
Bug Tracker
|
374
|
+
===========
|
375
|
+
|
376
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-barcode/issues>`_.
|
377
|
+
In case of trouble, please check there if your issue has already been reported.
|
378
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
379
|
+
`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**>`_.
|
380
|
+
|
381
|
+
Do not contact contributors directly about support or help with technical issues.
|
382
|
+
|
383
|
+
Credits
|
384
|
+
=======
|
385
|
+
|
386
|
+
Authors
|
387
|
+
~~~~~~~
|
388
|
+
|
389
|
+
* Tecnativa
|
390
|
+
|
391
|
+
Contributors
|
392
|
+
~~~~~~~~~~~~
|
393
|
+
|
394
|
+
|
395
|
+
* `Tecnativa <https://www.tecnativa.com>`_:
|
396
|
+
|
397
|
+
* Sergio Teruel
|
398
|
+
* Carlos Dauden
|
399
|
+
* Pedro M. Baeza
|
400
|
+
* Alexandre D. Díaz
|
401
|
+
|
402
|
+
* `Onestein <https://www.onestein.eu>`_:
|
403
|
+
|
404
|
+
* Andrea Stirpe
|
405
|
+
|
406
|
+
* `InitOS <https://www.initos.com>`_:
|
407
|
+
|
408
|
+
* Foram Shah
|
409
|
+
|
410
|
+
* `ForgeFlow <https://www.forgeflow.com>`_:
|
411
|
+
|
412
|
+
* Lois Rilo
|
413
|
+
|
414
|
+
* Enric Tobella
|
415
|
+
|
416
|
+
* `Binhex Cloud <https://www.binhex.cloud/>`_:
|
417
|
+
|
418
|
+
* Edilio Escalona Almira
|
419
|
+
|
420
|
+
Maintainers
|
421
|
+
~~~~~~~~~~~
|
422
|
+
|
423
|
+
This module is maintained by the OCA.
|
424
|
+
|
425
|
+
.. image:: https://odoo-community.org/logo.png
|
426
|
+
:alt: Odoo Community Association
|
427
|
+
:target: https://odoo-community.org
|
428
|
+
|
429
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
430
|
+
mission is to support the collaborative development of Odoo features and
|
431
|
+
promote its widespread use.
|
432
|
+
|
433
|
+
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.
|
434
|
+
|
435
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
@@ -0,0 +1,103 @@
|
|
1
|
+
odoo/addons/stock_barcodes/README.rst,sha256=v-f-fyUxxt5QQ8NlNZy27oWas9ONzt5W5KhZDS8JN8A,15056
|
2
|
+
odoo/addons/stock_barcodes/__init__.py,sha256=CCs1p9fs5hDfOA_RK81fM0he5AMSZxCKcnbPaaj38mU,228
|
3
|
+
odoo/addons/stock_barcodes/__manifest__.py,sha256=y-VgNeZcnsIgfom42fJeCoLLGCjGP1GooHXMUw35ApI,1929
|
4
|
+
odoo/addons/stock_barcodes/hooks.py,sha256=3xcCKDae0aUjvq5oUecBGUgJ5rdTtN_p4CtXvtZhbzA,679
|
5
|
+
odoo/addons/stock_barcodes/data/stock_barcodes_action.xml,sha256=VZr_wKtJzlJ4_qptgWZ2G4wdxuUHMo8eQr8-6ZwVGk8,2275
|
6
|
+
odoo/addons/stock_barcodes/data/stock_barcodes_option.xml,sha256=u0HkeX9qjmXajGbtQfne5tKTKHbFibsW42ApUsrR6lg,24276
|
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=Zm2GjR0mxvHN-l81WpDJruVO2dEt6SrB93_c45jVMCs,82672
|
11
|
+
odoo/addons/stock_barcodes/i18n/tr.po,sha256=rB5BwUthWEXsbeRWNx2d5SrtH1Ru8WZrJaAL0OcW5CM,84649
|
12
|
+
odoo/addons/stock_barcodes/models/__init__.py,sha256=NXyuez3f4d9zdLwk07UT-ib--UlR0l_Sp-Vlt31k1nU,249
|
13
|
+
odoo/addons/stock_barcodes/models/barcode_events_mixin.py,sha256=9l8xT65cn5JsWPyuNJebCsJ4WAreIV_YJF5_6-TucL0,389
|
14
|
+
odoo/addons/stock_barcodes/models/stock_barcodes_action.py,sha256=IAMlCbZBepFvxKK3BZSkXsyVHXGQHfzWC89MOD5hZ00,6797
|
15
|
+
odoo/addons/stock_barcodes/models/stock_barcodes_option.py,sha256=Tvx_A6WHgyeTiMomQReVujmlnJA8xYdlHkKL4OhABYE,4882
|
16
|
+
odoo/addons/stock_barcodes/models/stock_move.py,sha256=f38m1yF7QY3fUVtWPymfV7nVAApSVmKODmpfPSboF0w,1289
|
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=zDMbQagJg3koV5oIVVoWvZ-otKY2dTKZ7FB--2Kj3WQ,2991
|
19
|
+
odoo/addons/stock_barcodes/models/stock_picking_type.py,sha256=e71Ng05Jfcq9pKzI4Ieq5dv8syRyhUG1P032SG_SMnI,3932
|
20
|
+
odoo/addons/stock_barcodes/models/stock_quant.py,sha256=lwyRXiPI-D2DtYV89YcHQ5oo4V1QT0R-WbzcUiV6CNs,2715
|
21
|
+
odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst,sha256=sROdEU7xJvkxy-jzTB90KMg0nvoOBHk-bvq-4OWFUTI,393
|
22
|
+
odoo/addons/stock_barcodes/readme/DESCRIPTION.rst,sha256=bB8JRMOBew4_E0t-YN12hzpwEaa834UoYe-zBKjVFEw,339
|
23
|
+
odoo/addons/stock_barcodes/readme/HISTORY.rst,sha256=7qfJO9w-q8WZCmArtR8zCbMiRDQuucqWJ7vjqEIUpdY,735
|
24
|
+
odoo/addons/stock_barcodes/readme/ROADMAP.rst,sha256=Mt3sxpxWWN1se9eU5JQzu3u9aY7TnDg08jvqGcHjJvk,230
|
25
|
+
odoo/addons/stock_barcodes/readme/USAGE.rst,sha256=6cq6U5m1amFD3qCV-1i8uEnGYKlq4AH2w7tidOREp8E,9568
|
26
|
+
odoo/addons/stock_barcodes/reports/__init__.py,sha256=imZLq4XRkpzGAXPsOcQxxSBGUE0QYO0XTu096QrNBxM,37
|
27
|
+
odoo/addons/stock_barcodes/reports/barcode_actions_report.py,sha256=9D6aNu1pqupT-xxV6D_a-DDkEuxLUVhM50Olchn8M7k,514
|
28
|
+
odoo/addons/stock_barcodes/reports/barcode_actions_report.xml,sha256=B-cdZ9r2Ep7teXdhmwgyyVimRPa6q2bV5hcU9Ot-w-A,1015
|
29
|
+
odoo/addons/stock_barcodes/reports/reports.xml,sha256=U6AthjQL2VAtkvFVm-i3z0iQANfm_JDeJcxOSsjCnS8,1288
|
30
|
+
odoo/addons/stock_barcodes/security/ir.model.access.csv,sha256=1HlTnJb0Bsbl-UCdoy-f7r7Xec3UMs7uTppQWOfH8-0,1337
|
31
|
+
odoo/addons/stock_barcodes/static/description/icon.png,sha256=7ksDD35buxE_kBLoeXUGbdSW_5n-LC4S-SnQSs9tz1A,2994
|
32
|
+
odoo/addons/stock_barcodes/static/description/icon.svg,sha256=aMrHV2Isu4t_jJlnLVYqbcL_icg9wT2eSSAKxQ3pgDA,69299
|
33
|
+
odoo/addons/stock_barcodes/static/description/index.html,sha256=lK4sQtl5OWrc9acaZ79-QqO8UmMRvidKZYAJSCwgVHk,28854
|
34
|
+
odoo/addons/stock_barcodes/static/src/docs/barcodes_actions.pdf,sha256=SEfoUCwiycH6k1IZiI5mR5WM1aI08dItfmNs-EK1XZU,7883
|
35
|
+
odoo/addons/stock_barcodes/static/src/docs/barcodes_demo.pdf,sha256=nJR_VkAxToTHPp7sis6sXThOtTaQQrjLIxItPK4G88E,64270
|
36
|
+
odoo/addons/stock_barcodes/static/src/img/add_product.png,sha256=gokmnHujAy-8iVnrzyThFYr7rCuRFNqIW4Tov_8IVnA,6351
|
37
|
+
odoo/addons/stock_barcodes/static/src/img/apply_inventory.png,sha256=8oe_7HYZnqUflbUMqbgVFE0kqO1q5BZ_KbrqVOmd5Xo,6214
|
38
|
+
odoo/addons/stock_barcodes/static/src/img/apply_inventory_reason.png,sha256=TLZ-J41GpOy2PjqVj4iCro1vDSAhw1M2JXtOHJS48Hc,23054
|
39
|
+
odoo/addons/stock_barcodes/static/src/img/barcode_interface_picking.png,sha256=VBfPLzdYrxB6L4OTvAW7FE1Vfom5eqtDbwWVapwAaZ8,63492
|
40
|
+
odoo/addons/stock_barcodes/static/src/img/confirm_all_quantity_items_picking.png,sha256=CIhVLi1ltEK_qB9jOWLxjWCc3AdSC2wxGWHN7JvLhvs,22371
|
41
|
+
odoo/addons/stock_barcodes/static/src/img/confirm_items_picking.png,sha256=bH8i7HwN9SSBpAhzkiylPtQlVQjqVIx9p3NMGIMScCc,14957
|
42
|
+
odoo/addons/stock_barcodes/static/src/img/create_barcode_action.png,sha256=zJdrxS9CaeTcwXX5TM2ynrX9lyOloBpezCXsTTLgfXQ,19880
|
43
|
+
odoo/addons/stock_barcodes/static/src/img/form_add_product.png,sha256=pnAqy2Sf8kS3lw_0TcUXG-LKRBNpVcGHMBI6MwS4AO4,60984
|
44
|
+
odoo/addons/stock_barcodes/static/src/img/form_add_product_quantity.png,sha256=Yfjdn01IaBQ7oGYaF6XVwv__MLQ4a0sHDyYaC_f-D2Q,24353
|
45
|
+
odoo/addons/stock_barcodes/static/src/img/form_add_product_reset.png,sha256=dUxXWdt5CxB3D0yzCY9AJjCDRMUqEd5QGOI1QOu4TZ8,22790
|
46
|
+
odoo/addons/stock_barcodes/static/src/img/inventory_barcode_action.png,sha256=kHnl2eVZ9pTLt0UXk-ZwCUNwoe387vq8oWZ7plthl0M,35164
|
47
|
+
odoo/addons/stock_barcodes/static/src/img/list_action_items.png,sha256=Hbwibk03ibkcbpSXYxbA8IgCLfc5Sm1Srnq86AU4noU,19198
|
48
|
+
odoo/addons/stock_barcodes/static/src/img/list_items.png,sha256=vEjhSQu58PcgGaEbfIHzc5Diz5dvbw9gkbErcCxH4B0,64067
|
49
|
+
odoo/addons/stock_barcodes/static/src/img/list_items_picking.png,sha256=VBfPLzdYrxB6L4OTvAW7FE1Vfom5eqtDbwWVapwAaZ8,63492
|
50
|
+
odoo/addons/stock_barcodes/static/src/img/list_items_picking_edit.png,sha256=0Sl595eIpJNMVVMAPrwik2WVd3lA_aTu-RfV37pCvTQ,15760
|
51
|
+
odoo/addons/stock_barcodes/static/src/img/list_items_picking_quantity.png,sha256=qh9oNhyGJYBuc7sKND54XunzdGFFmMHdKxmUoxSfMFk,15294
|
52
|
+
odoo/addons/stock_barcodes/static/src/img/list_items_picking_scanned.png,sha256=mL796xy1yT1jhKAIODZp2OiVkrMdX69x0RsK6Wp0dP4,65272
|
53
|
+
odoo/addons/stock_barcodes/static/src/img/list_picking.png,sha256=EtguBqrfy-bhjUH-YVRS-2rCsE_3vlUTPoMJDjJPWlQ,55065
|
54
|
+
odoo/addons/stock_barcodes/static/src/img/print_barcodes.png,sha256=iz2VN3Iix0f3-ygsUnu1autlCwZUjxJo-rCtrYMfNnA,22284
|
55
|
+
odoo/addons/stock_barcodes/static/src/img/scan.png,sha256=DIN3r_B9kzMGmeRpqSx8K0S7RO8_FEwZudxGUYIPqSM,5405
|
56
|
+
odoo/addons/stock_barcodes/static/src/scss/barcode.scss,sha256=fzcKawJ7xm2XQshJ9_BPvItUGKkwW-ts_yCZH35cdKM,3251
|
57
|
+
odoo/addons/stock_barcodes/static/src/scss/stock.scss,sha256=QlTVKcYGhoYE49l4-4aG3uX9rUzy8SAdBvbDG_CQb8Y,6337
|
58
|
+
odoo/addons/stock_barcodes/static/src/sounds/bell.wav,sha256=s8_EchNk9OuAZzpZljON8IEAcKjmMD9yXZorizse24I,17684
|
59
|
+
odoo/addons/stock_barcodes/static/src/sounds/error.wav,sha256=CorSmtFges2PaeOd8l15_scmq_Dv0AxPe4_nBYb43Pk,25190
|
60
|
+
odoo/addons/stock_barcodes/static/src/utils/barcode_handler_field.esm.js,sha256=bhb4VoraERrnqzVirA8ipPxGf17DdZHCCXW9yQnJXAU,1366
|
61
|
+
odoo/addons/stock_barcodes/static/src/utils/barcodes_models_utils.esm.js,sha256=ssGjl1pzkb9gN7nG4ilLkEqm8GGpRA0_138jtl6lAk0,720
|
62
|
+
odoo/addons/stock_barcodes/static/src/views/view_compiler.esm.js,sha256=gu7DFkjmZ3SQ4wzAZfLReiwe8CUzU8WyXPUlCqKyrQU,483
|
63
|
+
odoo/addons/stock_barcodes/static/src/views/views.esm.js,sha256=P3YBKYXdsQpS5h2RpbJ2fhwz0MFE8o0ovdoD-nlwEZU,8172
|
64
|
+
odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.esm.js,sha256=aWX_S3b7Hn3nu3REq-pvaHVtmrzZKquKRnTCJdbr9-Q,3179
|
65
|
+
odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.scss,sha256=DQiUYts20wUY-wHWgmrIDlAkKrn4dDSdV5P6HWEWnVs,1735
|
66
|
+
odoo/addons/stock_barcodes/static/src/views/actions/stock_barcode_main_menu.xml,sha256=3LYU_LxvOmKoXZ3BqVuqVBRn2SzJXTSIX7NFkgKYhwI,1590
|
67
|
+
odoo/addons/stock_barcodes/static/src/views/form/form_controller.esm.js,sha256=FMN0kufHmq1zrgE3zqiPVhITIE0MbLAjgvyVZ4nbZcs,2698
|
68
|
+
odoo/addons/stock_barcodes/static/src/views/form/form_view.esm.js,sha256=ItK4UB3QubUtx8GXmXKMXe8LGHU9eJOedbzr4kHdB0E,486
|
69
|
+
odoo/addons/stock_barcodes/static/src/views/kanban/kanban_record.esm.js,sha256=rWBUggb9aE0rUFR96r4uqOYn3Va2whryYVEJLBbbtpQ,838
|
70
|
+
odoo/addons/stock_barcodes/static/src/views/kanban/kanban_renderer.esm.js,sha256=nennfImQo7l58XshUeEumcNxbPZ3xYiiC_r3idt9L1I,7287
|
71
|
+
odoo/addons/stock_barcodes/static/src/views/kanban/kanban_view.esm.js,sha256=jsHGGd2JmxNUNWYlV2DlQBDTJnivdUtZzVGaDClAqFw,206
|
72
|
+
odoo/addons/stock_barcodes/static/src/views/kanban/stock_barcodes_kanban.xml,sha256=jqJTk38h7NCJ3ZhrIuqLU2u3v8YSPV7YYWk6JsRxRfk,1050
|
73
|
+
odoo/addons/stock_barcodes/static/src/widgets/boolean_toggle.esm.js,sha256=Kx1VASK419Zz-Cqb9sVSz7Yhh0zAqq-NOqYywNX2STQ,2722
|
74
|
+
odoo/addons/stock_barcodes/static/src/widgets/numeric_step.esm.js,sha256=MFBTwgoAJduBdFjBbIfaFCoIoCG2qIMPyJEgpqRr6Iw,1296
|
75
|
+
odoo/addons/stock_barcodes/static/src/widgets/numeric_step.xml,sha256=7JaqswX6LACgIqpF5FwienwDtPp13Kespa6mqqXjXdQ,485
|
76
|
+
odoo/addons/stock_barcodes/static/src/widgets/view_button.esm.js,sha256=gNaLCwqwPcBMkjUv5I8LS2BRD7dTRIHnglyf5dlxp74,223
|
77
|
+
odoo/addons/stock_barcodes/static/src/widgets/view_button.xml,sha256=-kcLlTeRn7LbtP0jObtySHIiedMVTuAdcEEVsbg8RvU,372
|
78
|
+
odoo/addons/stock_barcodes/tests/__init__.py,sha256=A1xFvq5EyzK2lwNHCz7G34Nz3Ynwtq9CNgEdbVdL-M0,182
|
79
|
+
odoo/addons/stock_barcodes/tests/common.py,sha256=PKVbFGxJYRAGft2wUuJ1T5aP8Wf9BoU5RqvOcj-et00,6812
|
80
|
+
odoo/addons/stock_barcodes/tests/test_stock_barcodes.py,sha256=l7coSFvIO0BWQTC-pDa-Fe-Y9iDQQ4JrBfqNsMBySOM,6358
|
81
|
+
odoo/addons/stock_barcodes/tests/test_stock_barcodes_new_lot.py,sha256=ERso6qMYkv6-XT6xImxzi1osO04iRf22sQLWhVFhJkM,1040
|
82
|
+
odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py,sha256=xFwfSS08qsjMU5gPrE2CSumgKHn9Yr0SB65SMaW-bpQ,22537
|
83
|
+
odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml,sha256=AEFZB1kUe8fid6hE2_pHaafffAbuFQ7iKoAJYK6fwe4,4669
|
84
|
+
odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml,sha256=8604wj385rovod3DSELy1Wjxj2m1pdlOipNPCiIl66k,303
|
85
|
+
odoo/addons/stock_barcodes/views/stock_barcodes_option_view.xml,sha256=4TZval-U8im0VgqeTHdOAymsnGli1pSf9NJqlT68FGY,5243
|
86
|
+
odoo/addons/stock_barcodes/views/stock_location_views.xml,sha256=ZjbIEGztSEqNcl6xN4R8H0Np68Y0-K05QP-R47Sscps,716
|
87
|
+
odoo/addons/stock_barcodes/views/stock_picking_views.xml,sha256=1hx6EvkE22JLEm_k6CntjlVmq4hX_ZWVutio73h-7lE,5677
|
88
|
+
odoo/addons/stock_barcodes/wizard/__init__.py,sha256=hTcbfpew4i3GyAAPL7geLG7JdgeND7bqvXuHsISrXwk,241
|
89
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_candidate_picking.py,sha256=qKWQN56U_jQ82QbjeYVA3-kClMlBVqJZjakP_hK6dlE,5155
|
90
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py,sha256=mQ1l5teqNwkc5WJ64_PBPwt-1REvkfo-pt4f3aqy9yY,34368
|
91
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py,sha256=ZpkSXNVGmEKS-wtaiJ18F9l1WE1-btQJ0lf9C8WcdkM,5905
|
92
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml,sha256=hRbfWSoyiZ6UhvUoOvwv0LGcZCDXgFRobiObcYnlmeA,10906
|
93
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py,sha256=flYxOex_Cihs06aBWLVj7Hs73QP5-G5QNEmFuQMOotE,42571
|
94
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml,sha256=cJM7zsNZOpO-zR7tZKxeziDxO4kI2WCJyAJs2RlkmKQ,21577
|
95
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py,sha256=CTl4t7nGCT2vPbvHQ6BYMMREXNdcSywhAgyFmfRSOTQ,8653
|
96
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml,sha256=84r_uF6FAaKq9R7I81Boomp3o7VuMYHeuo-ebwTyolY,12551
|
97
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml,sha256=Viv-Urgg-yvISu9Fds6buI0QjgOhpsnIDmXZTbiuytY,27086
|
98
|
+
odoo/addons/stock_barcodes/wizard/stock_production_lot.py,sha256=LXb8IykNsU6fHNzm6exiD2oyLmFdjrhnv9Z7ixDihWI,2195
|
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.0.dist-info/METADATA,sha256=j9aECEeRkd1_nyHaDCRfSLr1kJpntOuhGw6cKQtKb4g,15668
|
101
|
+
odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
102
|
+
odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
103
|
+
odoo_addon_stock_barcodes-16.0.2.0.0.dist-info/RECORD,,
|
@@ -1,136 +0,0 @@
|
|
1
|
-
.oe_stock_scan_button {
|
2
|
-
border: none !important;
|
3
|
-
background: none !important;
|
4
|
-
box-shadow: none !important;
|
5
|
-
}
|
6
|
-
|
7
|
-
.oe_stock_barcodes_bottombar {
|
8
|
-
bottom: 0;
|
9
|
-
padding: 0.5em;
|
10
|
-
background-color: $o-view-background-color;
|
11
|
-
border: 0 solid $border-color;
|
12
|
-
border-width: 1px 0 0 0;
|
13
|
-
}
|
14
|
-
|
15
|
-
// Avoid too big small buttons from core
|
16
|
-
.o_web_client.o_touch_device {
|
17
|
-
.oe_stock_barcordes_form {
|
18
|
-
.btn {
|
19
|
-
&,
|
20
|
-
.btn-sm {
|
21
|
-
padding: 0.25rem 0.5rem;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|
25
|
-
}
|
26
|
-
|
27
|
-
.oe_stock_barcordes_form {
|
28
|
-
padding: 0 !important;
|
29
|
-
height: 100%;
|
30
|
-
// Recover useless space
|
31
|
-
div[name="_barcode_scanned"] {
|
32
|
-
min-height: 0 !important;
|
33
|
-
}
|
34
|
-
.o_group .scan_fields {
|
35
|
-
&.o_inner_group {
|
36
|
-
margin-bottom: 0 !important;
|
37
|
-
}
|
38
|
-
margin: 0 !important;
|
39
|
-
}
|
40
|
-
|
41
|
-
.o_form_sheet,
|
42
|
-
.o_form_sheet_bg {
|
43
|
-
padding: 0 !important;
|
44
|
-
margin: 0 !important;
|
45
|
-
max-width: 100% !important;
|
46
|
-
border: 0 !important;
|
47
|
-
}
|
48
|
-
|
49
|
-
// In Odoo 16 the flat input styling lacks proper usability
|
50
|
-
.o_field_widget {
|
51
|
-
margin-bottom: 1px !important;
|
52
|
-
.o_input {
|
53
|
-
border-radius: 3px;
|
54
|
-
border-width: 1px;
|
55
|
-
background-color: white;
|
56
|
-
}
|
57
|
-
.o_x2m_control_panel {
|
58
|
-
margin: 0px !important;
|
59
|
-
}
|
60
|
-
}
|
61
|
-
|
62
|
-
.o_kanban_record {
|
63
|
-
flex-basis: 100%;
|
64
|
-
|
65
|
-
.btn-full-width {
|
66
|
-
margin: -9px;
|
67
|
-
width: calc(100% + 18px);
|
68
|
-
height: calc(100% + 18px);
|
69
|
-
}
|
70
|
-
|
71
|
-
&.o_kanban_ghost {
|
72
|
-
display: none;
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
.alert {
|
77
|
-
position: fixed;
|
78
|
-
top: 0;
|
79
|
-
width: 100%;
|
80
|
-
border-radius: 0;
|
81
|
-
padding: 0;
|
82
|
-
min-height: 50px;
|
83
|
-
z-index: 999;
|
84
|
-
}
|
85
|
-
|
86
|
-
.oe_stock_barcordes_content {
|
87
|
-
overflow: hidden scroll;
|
88
|
-
}
|
89
|
-
}
|
90
|
-
|
91
|
-
.o_kanban_barcode {
|
92
|
-
.o_kanban_record.oe_kanban_details {
|
93
|
-
@extend .btn;
|
94
|
-
@extend .btn-secondary;
|
95
|
-
padding: 0.6em 0;
|
96
|
-
margin-bottom: 0.5em;
|
97
|
-
}
|
98
|
-
}
|
99
|
-
// TODO: Define class for all elements
|
100
|
-
.oe_kanban_action_button:focus {
|
101
|
-
background-color: lightgray;
|
102
|
-
}
|
103
|
-
// Left icon in small screens
|
104
|
-
.oe_span_small_icon {
|
105
|
-
width: 25px;
|
106
|
-
text-align: center;
|
107
|
-
}
|
108
|
-
|
109
|
-
// Display 100% all menu elements
|
110
|
-
.oe_kanban_card_full_width {
|
111
|
-
width: 100% !important;
|
112
|
-
}
|
113
|
-
|
114
|
-
// The kanban view adds some pre-styles that we want to be able to tweak
|
115
|
-
div[name="menu_actions"] {
|
116
|
-
div[role="article"] {
|
117
|
-
margin-top: 10px !important;
|
118
|
-
}
|
119
|
-
}
|
120
|
-
|
121
|
-
// Dropdown that is desactivated at lg width
|
122
|
-
@media (min-width: 992px) {
|
123
|
-
.d-lg-flex-no-dropdown {
|
124
|
-
position: relative !important;
|
125
|
-
display: flex !important;
|
126
|
-
border: none;
|
127
|
-
box-shadow: none;
|
128
|
-
bottom: auto !important;
|
129
|
-
transform: none !important;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
.dropdown-menu.d-lg-flex-no-dropdown {
|
133
|
-
.d-flex {
|
134
|
-
margin-bottom: 5px;
|
135
|
-
}
|
136
|
-
}
|