odoo-addon-stock-barcodes 15.0.3.1.6__py3-none-any.whl → 15.0.3.2.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.
- odoo/addons/stock_barcodes/README.rst +1 -1
- odoo/addons/stock_barcodes/__manifest__.py +1 -1
- odoo/addons/stock_barcodes/hooks.py +15 -13
- odoo/addons/stock_barcodes/i18n/es.po +64 -124
- odoo/addons/stock_barcodes/i18n/it.po +61 -8
- odoo/addons/stock_barcodes/i18n/stock_barcodes.pot +55 -2
- odoo/addons/stock_barcodes/models/__init__.py +1 -0
- odoo/addons/stock_barcodes/models/stock_barcodes_action.py +1 -1
- odoo/addons/stock_barcodes/models/stock_move.py +37 -0
- odoo/addons/stock_barcodes/models/stock_move_line.py +6 -12
- odoo/addons/stock_barcodes/models/stock_picking.py +9 -36
- odoo/addons/stock_barcodes/models/stock_picking_type.py +5 -6
- odoo/addons/stock_barcodes/static/description/index.html +1 -1
- odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py +1 -0
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py +3 -20
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py +230 -24
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml +12 -1
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py +42 -105
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml +45 -3
- odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml +0 -1
- {odoo_addon_stock_barcodes-15.0.3.1.6.dist-info → odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info}/METADATA +4 -4
- {odoo_addon_stock_barcodes-15.0.3.1.6.dist-info → odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info}/RECORD +24 -23
- {odoo_addon_stock_barcodes-15.0.3.1.6.dist-info → odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info}/WHEEL +1 -1
- {odoo_addon_stock_barcodes-15.0.3.1.6.dist-info → odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,8 @@
|
|
1
1
|
# Copyright 2019 Sergio Teruel <sergio.teruel@tecnativa.com>
|
2
2
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
3
|
-
from collections import OrderedDict
|
4
3
|
|
5
4
|
from odoo import api, fields, models
|
6
|
-
from odoo.tools.
|
5
|
+
from odoo.tools.float_utils import float_compare
|
7
6
|
|
8
7
|
|
9
8
|
class WizStockBarcodesReadTodo(models.TransientModel):
|
@@ -62,111 +61,38 @@ class WizStockBarcodesReadTodo(models.TransientModel):
|
|
62
61
|
stock_move_ids = fields.Many2many(comodel_name="stock.move")
|
63
62
|
position_index = fields.Integer()
|
64
63
|
picking_code = fields.Char("Type of Operation")
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
if group_key_for_todo_records:
|
69
|
-
return safe_eval(group_key_for_todo_records, globals_dict={"object": line})
|
70
|
-
if wiz.option_group_id.source_pending_moves == "move_line_ids":
|
71
|
-
return (line.location_id, line.product_id, line.lot_id, line.package_id)
|
72
|
-
else:
|
73
|
-
return (line.location_id, line.product_id)
|
74
|
-
|
75
|
-
def _get_all_products_quantities_in_package(self, package):
|
76
|
-
res = {}
|
77
|
-
for quant in package._get_contained_quants():
|
78
|
-
if quant.product_id not in res:
|
79
|
-
res[quant.product_id] = 0
|
80
|
-
res[quant.product_id] += quant.quantity
|
81
|
-
return res
|
82
|
-
|
83
|
-
def _prepare_fill_record_values(self, wiz_barcode, line, position):
|
84
|
-
vals = {
|
85
|
-
"product_id": line.product_id.id,
|
86
|
-
"product_uom_qty": line.product_uom_qty,
|
87
|
-
"name": "To do action",
|
88
|
-
"position_index": position,
|
89
|
-
"picking_code": line.picking_code,
|
90
|
-
}
|
91
|
-
if wiz_barcode.option_group_id.source_pending_moves == "move_line_ids":
|
92
|
-
package_product_dic = self._get_all_products_quantities_in_package(
|
93
|
-
line.package_id
|
94
|
-
)
|
95
|
-
vals.update(
|
96
|
-
{
|
97
|
-
"location_id": line.location_id.id,
|
98
|
-
"location_dest_id": line.location_dest_id.id,
|
99
|
-
"lot_id": line.lot_id.id,
|
100
|
-
"package_id": line.package_id.id,
|
101
|
-
"result_package_id": line.result_package_id.id,
|
102
|
-
"uom_id": line.product_uom_id.id,
|
103
|
-
"product_qty_reserved": line.product_qty,
|
104
|
-
"line_ids": [(6, 0, line.ids)],
|
105
|
-
"stock_move_ids": [(6, 0, line.move_id.ids)],
|
106
|
-
"package_product_qty": package_product_dic
|
107
|
-
and package_product_dic[line.product_id]
|
108
|
-
or 0.0,
|
109
|
-
}
|
110
|
-
)
|
111
|
-
else:
|
112
|
-
vals.update(
|
113
|
-
{
|
114
|
-
"location_id": (line.move_line_ids[:1] or line).location_id.id,
|
115
|
-
"location_dest_id": (
|
116
|
-
line.move_line_ids[:1] or line
|
117
|
-
).location_dest_id.id,
|
118
|
-
"uom_id": line.product_uom.id,
|
119
|
-
"product_qty_reserved": line.move_line_ids
|
120
|
-
and sum(line.move_line_ids.mapped("product_qty"))
|
121
|
-
or line.product_uom_qty,
|
122
|
-
"line_ids": [(6, 0, line.move_line_ids.ids)],
|
123
|
-
"stock_move_ids": [(6, 0, line.ids)],
|
124
|
-
}
|
125
|
-
)
|
126
|
-
return vals
|
127
|
-
|
128
|
-
def _update_fill_record_values(self, wiz_barcode, line, vals):
|
129
|
-
vals["product_uom_qty"] += line.product_uom_qty
|
130
|
-
if wiz_barcode.option_group_id.source_pending_moves == "move_line_ids":
|
131
|
-
vals["product_qty_reserved"] += line.product_qty
|
132
|
-
vals["line_ids"][0][2].append(line.id)
|
133
|
-
vals["stock_move_ids"][0][2].append(line.move_id.id)
|
134
|
-
else:
|
135
|
-
vals["product_qty_reserved"] += (
|
136
|
-
line.move_line_ids
|
137
|
-
and sum(line.move_line_ids.mapped("product_qty"))
|
138
|
-
or line.product_uom_qty
|
139
|
-
)
|
140
|
-
vals["line_ids"][0][2].extend(line.move_line_ids.ids)
|
141
|
-
vals["stock_move_ids"][0][2].extend(line.ids)
|
142
|
-
return vals
|
143
|
-
|
144
|
-
@api.model
|
145
|
-
def fill_records(self, wiz_barcode, lines_list):
|
146
|
-
"""
|
147
|
-
:param lines_list: browse list
|
148
|
-
:return:
|
149
|
-
"""
|
150
|
-
wiz_barcode.todo_line_ids = self.browse()
|
151
|
-
todo_vals = OrderedDict()
|
152
|
-
position = 0
|
153
|
-
for lines in lines_list:
|
154
|
-
for line in lines:
|
155
|
-
key = self._group_key(wiz_barcode, line)
|
156
|
-
if key not in todo_vals:
|
157
|
-
todo_vals[key] = self._prepare_fill_record_values(
|
158
|
-
wiz_barcode, line, position
|
159
|
-
)
|
160
|
-
position += 1
|
161
|
-
else:
|
162
|
-
todo_vals[key] = self._update_fill_record_values(
|
163
|
-
wiz_barcode, line, todo_vals[key]
|
164
|
-
)
|
165
|
-
wiz_barcode.todo_line_ids = self.create(list(todo_vals.values()))
|
64
|
+
is_extra_line = fields.Boolean()
|
65
|
+
# Used in kanban view
|
66
|
+
is_stock_move_line_origin = fields.Boolean()
|
166
67
|
|
167
68
|
def action_todo_next(self):
|
168
69
|
self.state = "done_forced"
|
169
70
|
self.line_ids.barcode_scan_state = "done_forced"
|
71
|
+
for sml in self.line_ids:
|
72
|
+
if (
|
73
|
+
float_compare(
|
74
|
+
sml.product_uom_qty,
|
75
|
+
sml.qty_done,
|
76
|
+
precision_rounding=sml.product_uom_id.rounding,
|
77
|
+
)
|
78
|
+
== 0
|
79
|
+
):
|
80
|
+
continue
|
81
|
+
if sml.move_id.state == "confirmed" and sml.qty_done:
|
82
|
+
sml.move_id.state = "partially_available"
|
83
|
+
if sml.move_id.state in ["partially_available", "assigned"]:
|
84
|
+
sml.product_uom_qty = sml.qty_done
|
85
|
+
if self.is_extra_line or not self.is_stock_move_line_origin:
|
86
|
+
barcode_backorder_action = self.env.context.get(
|
87
|
+
"barcode_backorder_action", "create_backorder"
|
88
|
+
)
|
89
|
+
self.stock_move_ids.barcode_backorder_action = barcode_backorder_action
|
90
|
+
if barcode_backorder_action == "pending":
|
91
|
+
self.stock_move_ids.move_line_ids.unlink()
|
92
|
+
self.stock_move_ids._action_assign()
|
93
|
+
wiz_barcode = self.wiz_barcode_id
|
94
|
+
self.wiz_barcode_id.fill_todo_records()
|
95
|
+
self.wiz_barcode_id = wiz_barcode
|
170
96
|
self.wiz_barcode_id.determine_todo_action()
|
171
97
|
|
172
98
|
def action_reset_lines(self):
|
@@ -174,6 +100,7 @@ class WizStockBarcodesReadTodo(models.TransientModel):
|
|
174
100
|
self.line_ids.barcode_scan_state = "pending"
|
175
101
|
self.line_ids.qty_done = 0.0
|
176
102
|
self.wiz_barcode_id.action_clean_values()
|
103
|
+
self.wiz_barcode_id.fill_todo_records()
|
177
104
|
self.wiz_barcode_id.determine_todo_action()
|
178
105
|
|
179
106
|
def action_back_line(self):
|
@@ -201,11 +128,21 @@ class WizStockBarcodesReadTodo(models.TransientModel):
|
|
201
128
|
)
|
202
129
|
def _compute_state(self):
|
203
130
|
for rec in self:
|
204
|
-
if
|
131
|
+
if float_compare(
|
132
|
+
rec.qty_done,
|
133
|
+
rec.product_uom_qty,
|
134
|
+
precision_rounding=rec.uom_id.rounding,
|
135
|
+
) > -1 or (
|
205
136
|
rec.wiz_barcode_id.option_group_id.source_pending_moves
|
206
137
|
== "move_line_ids"
|
207
138
|
and rec.line_ids
|
208
|
-
and
|
139
|
+
and (
|
140
|
+
sum(rec.stock_move_ids.mapped("quantity_done"))
|
141
|
+
>= sum(rec.stock_move_ids.mapped("product_uom_qty"))
|
142
|
+
or not any(
|
143
|
+
ln.barcode_scan_state == "pending" for ln in rec.line_ids
|
144
|
+
)
|
145
|
+
)
|
209
146
|
):
|
210
147
|
rec.state = "done"
|
211
148
|
else:
|
@@ -20,11 +20,13 @@
|
|
20
20
|
<field name="qty_done" />
|
21
21
|
<field name="line_ids" invisible="1" />
|
22
22
|
<field name="state" />
|
23
|
+
<field name="is_extra_line" />
|
24
|
+
<field name="is_stock_move_line_origin" />
|
23
25
|
<templates>
|
24
26
|
<t t-name="kanban-box">
|
25
27
|
<div
|
26
28
|
t-attf-class="oe_kanban_content "
|
27
|
-
style="background-color: #
|
29
|
+
t-attf-style="background-color: {{record.is_extra_line.raw_value == true and '#ffd683' or '#f0f9fb'}};"
|
28
30
|
>
|
29
31
|
<div class="row">
|
30
32
|
<div class="col">
|
@@ -100,6 +102,10 @@
|
|
100
102
|
t-esc="record.product_uom_qty.value"
|
101
103
|
/> <t t-esc="record.uom_id.value.slice(0,3)" />
|
102
104
|
</span>
|
105
|
+
<strong
|
106
|
+
class="bg-danger"
|
107
|
+
t-if="record.is_extra_line.raw_value == true"
|
108
|
+
>NOT AVAILABLE</strong>
|
103
109
|
</div>
|
104
110
|
</div>
|
105
111
|
<div name="action" class="row">
|
@@ -135,7 +141,7 @@
|
|
135
141
|
class="btn btn-warning pull-right btn-sm"
|
136
142
|
context="{'wiz_barcode_id': parent.id}"
|
137
143
|
data-hotkey="3"
|
138
|
-
attrs="{'invisible': [('qty_done', '=', 0.0)]} "
|
144
|
+
attrs="{'invisible': ['|','|', ('qty_done', '=', 0.0), ('is_extra_line', '=', True), ('is_stock_move_line_origin', '=', False)]} "
|
139
145
|
>
|
140
146
|
Ignore rest
|
141
147
|
</button>
|
@@ -145,7 +151,7 @@
|
|
145
151
|
class="btn btn-danger pull-right btn-sm"
|
146
152
|
context="{'wiz_barcode_id': parent.id}"
|
147
153
|
data-hotkey="3"
|
148
|
-
attrs="{'invisible': [('qty_done', '!=', 0.0)]} "
|
154
|
+
attrs="{'invisible': ['|', '|', ('qty_done', '!=', 0.0), ('is_extra_line', '=', True), ('is_stock_move_line_origin', '=', False)]} "
|
149
155
|
confirm="You have not set any quantity to this operation and it will be removed from pending moves. Are you sure?"
|
150
156
|
>
|
151
157
|
Ignore rest
|
@@ -163,6 +169,42 @@
|
|
163
169
|
</button>
|
164
170
|
</div>
|
165
171
|
</div>
|
172
|
+
<div name="action_extra" class="row mt-2">
|
173
|
+
<div class="col-12">
|
174
|
+
<button
|
175
|
+
name="action_todo_next"
|
176
|
+
type="object"
|
177
|
+
class="btn btn-warning pull-right btn-sm"
|
178
|
+
context="{'wiz_barcode_id': parent.id, 'barcode_backorder_action': 'pending'}"
|
179
|
+
data-hotkey="3"
|
180
|
+
attrs="{'invisible': [('is_extra_line', '=', False), ('is_stock_move_line_origin', '=', True)]} "
|
181
|
+
confirm="This move will be set to pending. Are you sure?"
|
182
|
+
>
|
183
|
+
Restore to pending
|
184
|
+
</button>
|
185
|
+
<button
|
186
|
+
name="action_todo_next"
|
187
|
+
type="object"
|
188
|
+
class="btn btn-danger pull-right btn-sm mr-5"
|
189
|
+
context="{'wiz_barcode_id': parent.id, 'barcode_backorder_action': 'skip_backorder'}"
|
190
|
+
data-hotkey="3"
|
191
|
+
attrs="{'invisible': [('is_extra_line', '=', False), ('is_stock_move_line_origin', '=', True)]} "
|
192
|
+
confirm="Odoo will not create a backorder for this move. Are you sure?"
|
193
|
+
>
|
194
|
+
No Backorder
|
195
|
+
</button>
|
196
|
+
<button
|
197
|
+
name="action_todo_next"
|
198
|
+
type="object"
|
199
|
+
class="btn btn-primary pull-right btn-sm mr-3"
|
200
|
+
context="{'wiz_barcode_id': parent.id, 'barcode_backorder_action': 'create_backorder'}"
|
201
|
+
data-hotkey="3"
|
202
|
+
attrs="{'invisible': [('is_extra_line', '=', False), ('is_stock_move_line_origin', '=', True)]} "
|
203
|
+
>
|
204
|
+
Create Backorder
|
205
|
+
</button>
|
206
|
+
</div>
|
207
|
+
</div>
|
166
208
|
</div>
|
167
209
|
</t>
|
168
210
|
</templates>
|
@@ -113,7 +113,6 @@
|
|
113
113
|
<field name="res_id" invisible="1" />
|
114
114
|
<field name="option_group_id" invisible="1" force_save="1" />
|
115
115
|
<field name="confirmed_moves" invisible="1" force_save="1" />
|
116
|
-
<field name="qty_available" invisible="1" />
|
117
116
|
<field name="owner_id" invisible="1" force_save="1" />
|
118
117
|
<field name="keep_result_package" invisible="1" />
|
119
118
|
<field name="create_lot" invisible="1" />
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-stock_barcodes
|
3
|
-
Version: 15.0.3.1
|
3
|
+
Version: 15.0.3.2.0.1
|
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)
|
@@ -11,8 +11,8 @@ Classifier: Framework :: Odoo
|
|
11
11
|
Classifier: Framework :: Odoo :: 15.0
|
12
12
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
13
13
|
Requires-Python: >=3.8
|
14
|
-
Requires-Dist: odoo-addon-web-widget-numeric-step
|
15
|
-
Requires-Dist: odoo
|
14
|
+
Requires-Dist: odoo-addon-web-widget-numeric-step<15.1dev,>=15.0dev
|
15
|
+
Requires-Dist: odoo<15.1dev,>=15.0a
|
16
16
|
|
17
17
|
==============
|
18
18
|
Stock Barcodes
|
@@ -23,7 +23,7 @@ Stock Barcodes
|
|
23
23
|
!! This file is generated by oca-gen-addon-readme !!
|
24
24
|
!! changes will be overwritten. !!
|
25
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
26
|
-
!! source digest: sha256:
|
26
|
+
!! source digest: sha256:aaf3270f55f43b616a2ceb165378f0909ba3cc1a3d0d36d21a65e4c04c06998f
|
27
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
28
28
|
|
29
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,20 +1,21 @@
|
|
1
|
-
odoo/addons/stock_barcodes/README.rst,sha256=
|
1
|
+
odoo/addons/stock_barcodes/README.rst,sha256=AuEI7sxYyLy7Ny5-UEY2t-OBAYbVN2WHuxfFDLUjyx0,7000
|
2
2
|
odoo/addons/stock_barcodes/__init__.py,sha256=GJDFROBciW9KNOlikIfV-4Gu8TPCJRp8ZWZCxngbDtI,206
|
3
|
-
odoo/addons/stock_barcodes/__manifest__.py,sha256=
|
4
|
-
odoo/addons/stock_barcodes/hooks.py,sha256=
|
3
|
+
odoo/addons/stock_barcodes/__manifest__.py,sha256=Y3jGY-drVBVjdrHOvy_hPIw56l1ib06EeEfwSETVIp8,1721
|
4
|
+
odoo/addons/stock_barcodes/hooks.py,sha256=rotNh7ZWzGmt9tZEnTMRgjTPEmKbpwbHAyL5WzW2yyk,677
|
5
5
|
odoo/addons/stock_barcodes/data/stock_barcodes_action.xml,sha256=BYvm7V39dkqfLPCtNVpYKzqinOaIuRGCjTz9Fo5U3m4,1889
|
6
6
|
odoo/addons/stock_barcodes/data/stock_barcodes_option.xml,sha256=gBDOLurvDcRlBRg7Ni2_Uk_an9uJOpRM55LiRl9u7aA,20711
|
7
|
-
odoo/addons/stock_barcodes/i18n/es.po,sha256=
|
8
|
-
odoo/addons/stock_barcodes/i18n/it.po,sha256=
|
9
|
-
odoo/addons/stock_barcodes/i18n/stock_barcodes.pot,sha256=
|
7
|
+
odoo/addons/stock_barcodes/i18n/es.po,sha256=sexwWeCQcAi0pI5g8rpuyW8e6AhII2QpMRE6zehWQGQ,89095
|
8
|
+
odoo/addons/stock_barcodes/i18n/it.po,sha256=BKNx_uU3J820thPOhpUNA42nn9H6ERr93Ger31IoDc4,89011
|
9
|
+
odoo/addons/stock_barcodes/i18n/stock_barcodes.pot,sha256=c3CDGdvcXAH_VxbqpBIoUXuAp951LzIaE8cwPHL22xk,78398
|
10
10
|
odoo/addons/stock_barcodes/migrations/15.0.1.0.0/pre-migration.py,sha256=HAhq_Q8pCUpu8vHs0ukSTFX7RmEvurJDN2M49HTGomI,400
|
11
|
-
odoo/addons/stock_barcodes/models/__init__.py,sha256=
|
12
|
-
odoo/addons/stock_barcodes/models/stock_barcodes_action.py,sha256=
|
11
|
+
odoo/addons/stock_barcodes/models/__init__.py,sha256=6sfSEAyDqSuB-1jM52AfJeS_-lf4Z7EUUqxEQ6hQ2vA,252
|
12
|
+
odoo/addons/stock_barcodes/models/stock_barcodes_action.py,sha256=mLI4VRJ5vWffquXPhPukC7pV9aDq0RehTijw8KAf6dI,2002
|
13
13
|
odoo/addons/stock_barcodes/models/stock_barcodes_option.py,sha256=CNkfNdD9q28Lewf-kMi6VlwMSzTdMc2oocwPO1y7MoA,4924
|
14
14
|
odoo/addons/stock_barcodes/models/stock_barcodes_read_log.py,sha256=MXm4gKUDjmS8SoM-ZB5hb4NH6p9SdCo2vebinzP9270,2084
|
15
|
-
odoo/addons/stock_barcodes/models/
|
16
|
-
odoo/addons/stock_barcodes/models/
|
17
|
-
odoo/addons/stock_barcodes/models/
|
15
|
+
odoo/addons/stock_barcodes/models/stock_move.py,sha256=f38m1yF7QY3fUVtWPymfV7nVAApSVmKODmpfPSboF0w,1289
|
16
|
+
odoo/addons/stock_barcodes/models/stock_move_line.py,sha256=YIvnfQ7UyM0GVrRh9PCNEr5B3lp3W0ChqYkSAtNTgTQ,1427
|
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
|
18
19
|
odoo/addons/stock_barcodes/models/stock_quant.py,sha256=2QdFE59Evu-9zyNVa8XUxPp4pOf2oGvldG3w_x5PItY,1038
|
19
20
|
odoo/addons/stock_barcodes/readme/CONTRIBUTORS.rst,sha256=YwIWfY0nMK40FKKAJnRLWWlTZIJmEQtfr1mq3dAuWWc,317
|
20
21
|
odoo/addons/stock_barcodes/readme/DESCRIPTION.rst,sha256=fMAHjb-c2tqBWN0iQ6VcYCDx6jn4PwWfxPjXwEEjOAI,273
|
@@ -24,7 +25,7 @@ odoo/addons/stock_barcodes/readme/USAGE.rst,sha256=I3vBT7ih0lReN147-tDO6imDTuHWs
|
|
24
25
|
odoo/addons/stock_barcodes/security/ir.model.access.csv,sha256=GUAIZrn35Oh4aTIr7qJmtrWwNg8BvP1avdIzQhiOPIE,1584
|
25
26
|
odoo/addons/stock_barcodes/static/description/icon.png,sha256=7ksDD35buxE_kBLoeXUGbdSW_5n-LC4S-SnQSs9tz1A,2994
|
26
27
|
odoo/addons/stock_barcodes/static/description/icon.svg,sha256=aMrHV2Isu4t_jJlnLVYqbcL_icg9wT2eSSAKxQ3pgDA,69299
|
27
|
-
odoo/addons/stock_barcodes/static/description/index.html,sha256=
|
28
|
+
odoo/addons/stock_barcodes/static/description/index.html,sha256=xFnmfzYIF6Mz4MXF37xYa5vJmYRDzM5ceBJlgrX29No,19151
|
28
29
|
odoo/addons/stock_barcodes/static/src/css/stock.css,sha256=6U9n2kttW8cXYWMU04eEtHmY6-7Bcn3o1LAMCpC5J3c,121
|
29
30
|
odoo/addons/stock_barcodes/static/src/css/stock.scss,sha256=w8oMsOijg8cwC5uDefUr-PFMHB_NNMgK3roONAK5OLY,1984
|
30
31
|
odoo/addons/stock_barcodes/static/src/img/scan.png,sha256=DIN3r_B9kzMGmeRpqSx8K0S7RO8_FEwZudxGUYIPqSM,5405
|
@@ -39,24 +40,24 @@ odoo/addons/stock_barcodes/static/src/sounds/error.wav,sha256=CorSmtFges2PaeOd8l
|
|
39
40
|
odoo/addons/stock_barcodes/tests/__init__.py,sha256=A1xFvq5EyzK2lwNHCz7G34Nz3Ynwtq9CNgEdbVdL-M0,182
|
40
41
|
odoo/addons/stock_barcodes/tests/test_stock_barcodes.py,sha256=DvTT8Ak0nAmNOofjoUc941WEuncTGIXxLHCR1a0Uago,9232
|
41
42
|
odoo/addons/stock_barcodes/tests/test_stock_barcodes_new_lot.py,sha256=aKdJnQv0qQgpt4xv2IHKxoOOKxByUBOcu4kUWfcqezQ,1063
|
42
|
-
odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py,sha256=
|
43
|
+
odoo/addons/stock_barcodes/tests/test_stock_barcodes_picking.py,sha256=d8pgrO9abFjy7kiDR7OTV4GH3CMTstZq6g67Iad2KrQ,19362
|
43
44
|
odoo/addons/stock_barcodes/views/stock_barcodes_action_view.xml,sha256=trxWfNOODRM5Qzxq4pSnmjz4bssFdE2FXxZcwdD9Utk,1706
|
44
45
|
odoo/addons/stock_barcodes/views/stock_barcodes_menu.xml,sha256=gYfZly4O55Pn78o6cwewlIDJqyfOJPNQicsoi-4vyak,296
|
45
46
|
odoo/addons/stock_barcodes/views/stock_barcodes_option_view.xml,sha256=spHnKXz9OYenihRW9Cnvfv-7jC6xrq2e-ZtsCNf8m4k,5238
|
46
47
|
odoo/addons/stock_barcodes/views/stock_location_views.xml,sha256=ZjbIEGztSEqNcl6xN4R8H0Np68Y0-K05QP-R47Sscps,716
|
47
48
|
odoo/addons/stock_barcodes/views/stock_picking_views.xml,sha256=Ulev5113Gir1CzKzoiWMp_e3cSk_OkT3btrMS_Ac5Gs,4753
|
48
49
|
odoo/addons/stock_barcodes/wizard/__init__.py,sha256=uUoIvaVAJWYetOqNRsGyYFjsBfMevz4UC3jkeZn_CTY,194
|
49
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py,sha256
|
50
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read.py,sha256=qed1EpNl1ew3_Vj5KPjaI11GG7E894OaZrk3Ava1LZk,32511
|
50
51
|
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory.py,sha256=OA4v2gPdiKhLReQ4ZjHTTIq_xUQbbRrERTU8JZuwR9k,5089
|
51
52
|
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_inventory_views.xml,sha256=98XV32z771eWTeAgZ19NsL9_UOJroFJr9WqSpLDI8j4,10179
|
52
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py,sha256=
|
53
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml,sha256=
|
54
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py,sha256=
|
55
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml,sha256=
|
56
|
-
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml,sha256=
|
53
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking.py,sha256=zVHymimGoJQEf5J_z-X6D3r2OlNPQzD9Wqi2TUQZOR4,45992
|
54
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_picking_views.xml,sha256=bXH2jsjzQ-e5uqjlchCQdZ8JRqPYZUIAP-a_vtJqLvE,23875
|
55
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo.py,sha256=4i8J_mp7ym31FN1MTxlsbiKbotX_b1FkSkWi3gvsrxI,6788
|
56
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_todo_view.xml,sha256=8hYKRcPWxPGmdPYxsvPhpX4U46Qi0jjeNvWZY_xbj5s,12448
|
57
|
+
odoo/addons/stock_barcodes/wizard/stock_barcodes_read_views.xml,sha256=oUuIzLhQVKD-ipg9EOyistvegbEEiOYu9ZxLJy88DCQ,33306
|
57
58
|
odoo/addons/stock_barcodes/wizard/stock_production_lot.py,sha256=-xxa2_y0Ln3THilCi5DZpauTesdtiRp9SIZiTFHff9k,2217
|
58
59
|
odoo/addons/stock_barcodes/wizard/stock_production_lot_views.xml,sha256=rsX8DUnwQVkGFfGcsYcrsfkgCh5JGmiO3BrSJilIhJc,2056
|
59
|
-
odoo_addon_stock_barcodes-15.0.3.1.
|
60
|
-
odoo_addon_stock_barcodes-15.0.3.1.
|
61
|
-
odoo_addon_stock_barcodes-15.0.3.1.
|
62
|
-
odoo_addon_stock_barcodes-15.0.3.1.
|
60
|
+
odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info/METADATA,sha256=t84-JDz6HlZjKMc3Jc6OTNkfcf-6ROaWOVRfNJVw078,7613
|
61
|
+
odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
62
|
+
odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
63
|
+
odoo_addon_stock_barcodes-15.0.3.2.0.1.dist-info/RECORD,,
|
File without changes
|