odoo-addon-stock-move-location 16.0.1.4.1__py3-none-any.whl → 18.0.1.0.0.4__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_move_location/README.rst +8 -7
- odoo/addons/stock_move_location/__manifest__.py +1 -1
- odoo/addons/stock_move_location/i18n/sk.po +301 -0
- odoo/addons/stock_move_location/i18n/stock_move_location.pot +37 -10
- odoo/addons/stock_move_location/init_hook.py +1 -5
- odoo/addons/stock_move_location/models/stock_picking.py +9 -7
- odoo/addons/stock_move_location/readme/CONTRIBUTORS.md +2 -0
- odoo/addons/stock_move_location/readme/USAGE.md +0 -1
- odoo/addons/stock_move_location/static/description/index.html +6 -5
- odoo/addons/stock_move_location/tests/test_common.py +16 -13
- odoo/addons/stock_move_location/tests/test_move_location.py +19 -24
- odoo/addons/stock_move_location/tests/test_stock_fillwithstock.py +23 -28
- odoo/addons/stock_move_location/views/stock_picking.xml +1 -3
- odoo/addons/stock_move_location/views/stock_picking_type_views.xml +4 -7
- odoo/addons/stock_move_location/wizard/stock_move_location.py +46 -65
- odoo/addons/stock_move_location/wizard/stock_move_location.xml +60 -32
- odoo/addons/stock_move_location/wizard/stock_move_location_line.py +18 -30
- {odoo_addon_stock_move_location-16.0.1.4.1.dist-info → odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info}/METADATA +14 -12
- {odoo_addon_stock_move_location-16.0.1.4.1.dist-info → odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info}/RECORD +21 -20
- {odoo_addon_stock_move_location-16.0.1.4.1.dist-info → odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info}/WHEEL +1 -1
- odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info/top_level.txt +1 -0
- odoo_addon_stock_move_location-16.0.1.4.1.dist-info/top_level.txt +0 -1
@@ -10,15 +10,24 @@
|
|
10
10
|
<form>
|
11
11
|
<sheet>
|
12
12
|
<div class="oe_button_box" name="button_box" />
|
13
|
-
<
|
13
|
+
<div>
|
14
|
+
<label for="edit_locations">
|
15
|
+
Edit Locations
|
16
|
+
</label>
|
14
17
|
<field name="edit_locations" widget="boolean_toggle" />
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
/>
|
21
|
-
</
|
18
|
+
</div>
|
19
|
+
<div>
|
20
|
+
<label for="exclude_reserved_qty">
|
21
|
+
Exclude Reserved Quantities
|
22
|
+
</label>
|
23
|
+
<field name="exclude_reserved_qty" widget="boolean_toggle" />
|
24
|
+
</div>
|
25
|
+
<div groups="stock.group_stock_multi_locations">
|
26
|
+
<label for="apply_putaway_strategy">
|
27
|
+
Apply putaway strategy for moving products
|
28
|
+
</label>
|
29
|
+
<field name="apply_putaway_strategy" widget="boolean_toggle" />
|
30
|
+
</div>
|
22
31
|
<group name="picking_type">
|
23
32
|
<field name="picking_type_id" />
|
24
33
|
</group>
|
@@ -26,24 +35,23 @@
|
|
26
35
|
<field name="origin_location_disable" invisible="True" />
|
27
36
|
<field
|
28
37
|
name="origin_location_id"
|
29
|
-
|
38
|
+
readonly="origin_location_disable"
|
30
39
|
/>
|
31
40
|
<field name="destination_location_disable" invisible="True" />
|
32
41
|
<field
|
33
42
|
name="destination_location_id"
|
34
|
-
|
43
|
+
readonly="destination_location_disable"
|
35
44
|
/>
|
36
|
-
|
37
|
-
<group name="filters">
|
45
|
+
<field name="company_id" invisible="1" />
|
38
46
|
</group>
|
39
47
|
<group name="lines">
|
40
48
|
<field
|
41
49
|
name="stock_move_location_line_ids"
|
42
50
|
nolabel="1"
|
43
|
-
mode="
|
51
|
+
mode="list,kanban"
|
44
52
|
colspan="2"
|
45
53
|
>
|
46
|
-
<
|
54
|
+
<list
|
47
55
|
editable="bottom"
|
48
56
|
decoration-info="move_quantity != max_quantity"
|
49
57
|
decoration-danger="(move_quantity < 0) or (move_quantity > max_quantity)"
|
@@ -58,6 +66,11 @@
|
|
58
66
|
string="UoM"
|
59
67
|
groups="uom.group_uom"
|
60
68
|
/>
|
69
|
+
<field
|
70
|
+
name="product_uom_id"
|
71
|
+
string="UoM"
|
72
|
+
column_invisible="1"
|
73
|
+
/>
|
61
74
|
<field
|
62
75
|
name="origin_location_id"
|
63
76
|
readonly="1"
|
@@ -85,7 +98,7 @@
|
|
85
98
|
<field name="custom" invisible="1" />
|
86
99
|
<field
|
87
100
|
name="max_quantity"
|
88
|
-
|
101
|
+
readonly="not custom"
|
89
102
|
force_save="1"
|
90
103
|
/>
|
91
104
|
<field
|
@@ -93,27 +106,42 @@
|
|
93
106
|
readonly="1"
|
94
107
|
force_save="1"
|
95
108
|
/>
|
96
|
-
|
109
|
+
<field
|
110
|
+
name="total_quantity"
|
111
|
+
readonly="1"
|
112
|
+
force_save="1"
|
113
|
+
/>
|
114
|
+
</list>
|
97
115
|
<kanban class="o_kanban_mobile">
|
98
116
|
<templates>
|
99
|
-
<t t-name="
|
100
|
-
<
|
101
|
-
|
102
|
-
|
103
|
-
|
117
|
+
<t t-name="card">
|
118
|
+
<field name="product_id" class="fw-bolder" />
|
119
|
+
<div
|
120
|
+
groups="stock.group_production_lot"
|
121
|
+
invisible="not lot_id"
|
122
|
+
>
|
123
|
+
Lot/SN:
|
124
|
+
<field
|
125
|
+
name="lot_id"
|
126
|
+
invisible="not lot_id"
|
127
|
+
/>
|
128
|
+
</div>
|
129
|
+
<div groups="stock.group_stock_multi_locations">
|
130
|
+
<field name="origin_location_id" />
|
131
|
+
→
|
132
|
+
<field name="destination_location_id" />
|
133
|
+
</div>
|
134
|
+
<div class="row">
|
135
|
+
<div class="col-6">
|
104
136
|
<field
|
105
|
-
name="
|
106
|
-
|
137
|
+
name="move_quantity"
|
138
|
+
string="Quantity"
|
139
|
+
/>
|
140
|
+
<field
|
141
|
+
name="product_uom_id"
|
142
|
+
string="Unit of Measure"
|
143
|
+
groups="uom.group_uom"
|
107
144
|
/>
|
108
|
-
<field name="origin_location_id" />
|
109
|
-
<field name="destination_location_id" />
|
110
|
-
</div>
|
111
|
-
<div class="o_kanban_record_bottom">
|
112
|
-
<div class="oe_kanban_bottom_right">
|
113
|
-
<span>
|
114
|
-
<field name="move_quantity" />
|
115
|
-
</span>
|
116
|
-
</div>
|
117
145
|
</div>
|
118
146
|
</div>
|
119
147
|
</t>
|
@@ -22,7 +22,9 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
22
22
|
string="Origin Location", comodel_name="stock.location"
|
23
23
|
)
|
24
24
|
destination_location_id = fields.Many2one(
|
25
|
-
string="Destination Location",
|
25
|
+
string="Destination Location",
|
26
|
+
comodel_name="stock.location",
|
27
|
+
compute="_compute_destination_location_id",
|
26
28
|
)
|
27
29
|
product_uom_id = fields.Many2one(
|
28
30
|
string="Product Unit of Measure", comodel_name="uom.uom"
|
@@ -44,9 +46,19 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
44
46
|
max_quantity = fields.Float(
|
45
47
|
string="Maximum available quantity", digits="Product Unit of Measure"
|
46
48
|
)
|
49
|
+
total_quantity = fields.Float(
|
50
|
+
string="Total existence quantity", digits="Product Unit of Measure"
|
51
|
+
)
|
47
52
|
reserved_quantity = fields.Float(digits="Product Unit of Measure")
|
48
53
|
custom = fields.Boolean(string="Custom line", default=True)
|
49
54
|
|
55
|
+
@api.depends("move_location_wizard_id.destination_location_id")
|
56
|
+
def _compute_destination_location_id(self):
|
57
|
+
for record in self:
|
58
|
+
record.destination_location_id = (
|
59
|
+
record.move_location_wizard_id.destination_location_id
|
60
|
+
)
|
61
|
+
|
50
62
|
@staticmethod
|
51
63
|
def _compare(qty1, qty2, precision_rounding):
|
52
64
|
return float_compare(qty1, qty2, precision_rounding=precision_rounding)
|
@@ -64,32 +76,10 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
64
76
|
_("Move quantity can not exceed max quantity or be negative")
|
65
77
|
)
|
66
78
|
|
67
|
-
def get_max_quantity(self):
|
68
|
-
self.product_uom_id = self.product_id.uom_id
|
69
|
-
search_args = [
|
70
|
-
("location_id", "=", self.origin_location_id.id),
|
71
|
-
("product_id", "=", self.product_id.id),
|
72
|
-
]
|
73
|
-
if self.lot_id:
|
74
|
-
search_args.append(("lot_id", "=", self.lot_id.id))
|
75
|
-
else:
|
76
|
-
search_args.append(("lot_id", "=", False))
|
77
|
-
if self.package_id:
|
78
|
-
search_args.append(("package_id", "=", self.package_id.id))
|
79
|
-
else:
|
80
|
-
search_args.append(("package_id", "=", False))
|
81
|
-
if self.owner_id:
|
82
|
-
search_args.append(("owner_id", "=", self.owner_id.id))
|
83
|
-
else:
|
84
|
-
search_args.append(("owner_id", "=", False))
|
85
|
-
res = self.env["stock.quant"].read_group(search_args, ["quantity"], [])
|
86
|
-
max_quantity = res[0]["quantity"]
|
87
|
-
return max_quantity
|
88
|
-
|
89
79
|
def create_move_lines(self, picking, move):
|
90
80
|
for line in self:
|
91
81
|
values = line._get_move_line_values(picking, move)
|
92
|
-
if not self.env.context.get("planned") and values.get("
|
82
|
+
if not self.env.context.get("planned") and values.get("quantity") <= 0:
|
93
83
|
continue
|
94
84
|
self.env["stock.move.line"].create(values)
|
95
85
|
return True
|
@@ -101,7 +91,7 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
101
91
|
and self.destination_location_id._get_putaway_strategy(self.product_id).id
|
102
92
|
or self.destination_location_id.id
|
103
93
|
)
|
104
|
-
|
94
|
+
qty_done = self._get_available_quantity()
|
105
95
|
return {
|
106
96
|
"product_id": self.product_id.id,
|
107
97
|
"lot_id": self.lot_id.id,
|
@@ -110,7 +100,7 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
110
100
|
"owner_id": self.owner_id.id,
|
111
101
|
"location_id": self.origin_location_id.id,
|
112
102
|
"location_dest_id": location_dest_id,
|
113
|
-
"
|
103
|
+
"quantity": qty_done,
|
114
104
|
"product_uom_id": self.product_uom_id.id,
|
115
105
|
"picking_id": picking.id,
|
116
106
|
"move_id": move.id,
|
@@ -126,7 +116,7 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
126
116
|
return 0
|
127
117
|
if self.env.context.get("planned"):
|
128
118
|
# for planned transfer we don't care about the amounts at all
|
129
|
-
return
|
119
|
+
return 0.0
|
130
120
|
search_args = [
|
131
121
|
("location_id", "=", self.origin_location_id.id),
|
132
122
|
("product_id", "=", self.product_id.id),
|
@@ -153,6 +143,4 @@ class StockMoveLocationWizardLine(models.TransientModel):
|
|
153
143
|
available_qty_lt_move_qty = (
|
154
144
|
self._compare(available_qty, self.move_quantity, rounding) == -1
|
155
145
|
)
|
156
|
-
if available_qty_lt_move_qty
|
157
|
-
return available_qty
|
158
|
-
return 0, self.move_quantity
|
146
|
+
return available_qty if available_qty_lt_move_qty else self.move_quantity
|
@@ -1,17 +1,18 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-stock_move_location
|
3
|
-
Version:
|
3
|
+
Version: 18.0.1.0.0.4
|
4
|
+
Requires-Python: >=3.10
|
5
|
+
Requires-Dist: odoo==18.0.*
|
4
6
|
Summary: This module allows to move all stock in a stock location to an other one.
|
5
7
|
Home-page: https://github.com/OCA/stock-logistics-warehouse
|
8
|
+
License: AGPL-3
|
6
9
|
Author: Julius Network Solutions, BCIM,Camptocamp,Odoo Community Association (OCA)
|
7
10
|
Author-email: support@odoo-community.org
|
8
|
-
License: AGPL-3
|
9
11
|
Classifier: Programming Language :: Python
|
10
12
|
Classifier: Framework :: Odoo
|
11
|
-
Classifier: Framework :: Odoo ::
|
13
|
+
Classifier: Framework :: Odoo :: 18.0
|
12
14
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
13
|
-
|
14
|
-
Requires-Dist: odoo<16.1dev,>=16.0a
|
15
|
+
Description-Content-Type: text/x-rst
|
15
16
|
|
16
17
|
===================
|
17
18
|
Move Stock Location
|
@@ -22,7 +23,7 @@ Move Stock Location
|
|
22
23
|
!! This file is generated by oca-gen-addon-readme !!
|
23
24
|
!! changes will be overwritten. !!
|
24
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
25
|
-
!! source digest: sha256:
|
26
|
+
!! source digest: sha256:d4e4ea6fb0a6f2f34b451c22d5ab139e4f867621b65786664f6b93d57558b66d
|
26
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
28
|
|
28
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -32,13 +33,13 @@ Move Stock Location
|
|
32
33
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
33
34
|
:alt: License: AGPL-3
|
34
35
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
|
35
|
-
:target: https://github.com/OCA/stock-logistics-warehouse/tree/
|
36
|
+
:target: https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_move_location
|
36
37
|
:alt: OCA/stock-logistics-warehouse
|
37
38
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
38
|
-
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-
|
39
|
+
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-18-0/stock-logistics-warehouse-18-0-stock_move_location
|
39
40
|
:alt: Translate me on Weblate
|
40
41
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
41
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=
|
42
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=18.0
|
42
43
|
:alt: Try me on Runboat
|
43
44
|
|
44
45
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
@@ -58,7 +59,6 @@ Usage
|
|
58
59
|
where 2 locations can be specified.
|
59
60
|
- Select origin and destination locations and press "IMMEDIATE TRANSFER"
|
60
61
|
or "PLANNED TRANSFER"
|
61
|
-
- Press ADD ALL button to add all products available
|
62
62
|
- Those lines can be edited. Move quantity can't be more than a max
|
63
63
|
available quantity
|
64
64
|
- Move doesn't care about the reservations and will move stuff anyway
|
@@ -121,7 +121,7 @@ Bug Tracker
|
|
121
121
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
|
122
122
|
In case of trouble, please check there if your issue has already been reported.
|
123
123
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
124
|
-
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_move_location%0Aversion:%
|
124
|
+
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_move_location%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
125
125
|
|
126
126
|
Do not contact contributors directly about support or help with technical issues.
|
127
127
|
|
@@ -148,6 +148,7 @@ Contributors
|
|
148
148
|
|
149
149
|
- Sergio Teruel
|
150
150
|
- João Marques
|
151
|
+
- Carlos Roca
|
151
152
|
|
152
153
|
- Jacques-Etienne Baudoux <je@bcim.be>
|
153
154
|
- Iryna Vyshnevska <i.vyshnevska@mobilunity.com>
|
@@ -158,6 +159,7 @@ Contributors
|
|
158
159
|
- Aung Ko Ko Lin
|
159
160
|
|
160
161
|
- Laurent Mignon <laurent.mignon@acsone.eu>
|
162
|
+
- Maksym Yankin <maksym.yankin@camptocamp.com>
|
161
163
|
|
162
164
|
Maintainers
|
163
165
|
-----------
|
@@ -172,6 +174,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
172
174
|
mission is to support the collaborative development of Odoo features and
|
173
175
|
promote its widespread use.
|
174
176
|
|
175
|
-
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/
|
177
|
+
This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/18.0/stock_move_location>`_ project on GitHub.
|
176
178
|
|
177
179
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
@@ -1,7 +1,7 @@
|
|
1
|
-
odoo/addons/stock_move_location/README.rst,sha256=
|
1
|
+
odoo/addons/stock_move_location/README.rst,sha256=99sEG5BcHNuPiqq3Xqwy9Df5YixAw9blAx1MFHds0es,6302
|
2
2
|
odoo/addons/stock_move_location/__init__.py,sha256=a529MU97ndMyMZsToYJmFXUHanvFmTyIZL9lmHsflPM,88
|
3
|
-
odoo/addons/stock_move_location/__manifest__.py,sha256=
|
4
|
-
odoo/addons/stock_move_location/init_hook.py,sha256=
|
3
|
+
odoo/addons/stock_move_location/__manifest__.py,sha256=7ISs67qDzkbCllb_LswdUMe8GTxI1d6zp7wb86vvveI,901
|
4
|
+
odoo/addons/stock_move_location/init_hook.py,sha256=pn0ImiSskPc37V9N_ROZoVt94KZISxBWfewnE8_NqAc,325
|
5
5
|
odoo/addons/stock_move_location/data/stock_quant_view.xml,sha256=g7KS13Q9jEIZTKiNHjWrFcggfYyfK2ZW2VONnCLSZaI,635
|
6
6
|
odoo/addons/stock_move_location/i18n/de.po,sha256=dyopS_aZa9EMOWt81RehSGIbZrHuwUmXMG4v4hHG03M,11088
|
7
7
|
odoo/addons/stock_move_location/i18n/es.po,sha256=olg6wiEsYwQr6MTLzYmk0g-LnNrs9PFcs69QsedDy2g,11810
|
@@ -12,29 +12,30 @@ odoo/addons/stock_move_location/i18n/it.po,sha256=qvZ-lyJzwS-gpZD6N1R1yubgHPfr8K
|
|
12
12
|
odoo/addons/stock_move_location/i18n/ja.po,sha256=rlv8kp8D0CPeIb_LQ4xacEVrI-GKOiNjOd_t7FGBlg4,11422
|
13
13
|
odoo/addons/stock_move_location/i18n/ja_JP.po,sha256=G1q0uhsodyzzNEcU-bjtjQZ8Ef3OxQ2KqXgzLh7hF_I,10033
|
14
14
|
odoo/addons/stock_move_location/i18n/pt.po,sha256=fgS2Y6wUxHmLahSEhdQWQV6mHS66GYkfHcbvqtk7EYw,10596
|
15
|
-
odoo/addons/stock_move_location/i18n/
|
15
|
+
odoo/addons/stock_move_location/i18n/sk.po,sha256=JklUgKxESHfD2dA0nYHYDqqBHYlwB2YlzgkcDeYEjOI,11064
|
16
|
+
odoo/addons/stock_move_location/i18n/stock_move_location.pot,sha256=oaHuaH_Nmn6T3i-CGzHSdyt7-ptFJbvrYOfKuI5O0y8,10965
|
16
17
|
odoo/addons/stock_move_location/models/__init__.py,sha256=UrroaZ7L0mQgueiSi7qJ-maQp61uMedod-xbfhGNBMI,181
|
17
18
|
odoo/addons/stock_move_location/models/stock_move.py,sha256=UxsvfgwL_bfAEDrMdu_HGLlabPyZCjnf4MfeFzNPPI0,604
|
18
|
-
odoo/addons/stock_move_location/models/stock_picking.py,sha256=
|
19
|
+
odoo/addons/stock_move_location/models/stock_picking.py,sha256=y0odlF6YhtCU2e5orslKrSguq_j25nerWJWNFEM2HZQ,1708
|
19
20
|
odoo/addons/stock_move_location/models/stock_picking_type.py,sha256=9czGhJxYbgoB9umbf3Vw2TuyGWDC_cBXhaDq_cSN0t0,962
|
20
|
-
odoo/addons/stock_move_location/readme/CONTRIBUTORS.md,sha256=
|
21
|
+
odoo/addons/stock_move_location/readme/CONTRIBUTORS.md,sha256=pkp1DTEEEMW0iQNLxkRhp8Lt5bGq3IDNI0ek1MGMjPg,724
|
21
22
|
odoo/addons/stock_move_location/readme/DESCRIPTION.md,sha256=cVmKIDWpKU3Ep66adAVRrNkMQB-yeJ-8QTRayNHTX1M,116
|
22
23
|
odoo/addons/stock_move_location/readme/ROADMAP.md,sha256=HW9tNWBGh6oAjRj8qWMlXPc0XQu7325gRxcs9jeR4ZM,487
|
23
|
-
odoo/addons/stock_move_location/readme/USAGE.md,sha256=
|
24
|
+
odoo/addons/stock_move_location/readme/USAGE.md,sha256=BQt9MkOrhdCCbSgSjaHbkOlR0bGpm9v-fHriMcqpSEY,2007
|
24
25
|
odoo/addons/stock_move_location/security/ir.model.access.csv,sha256=sLpkI9b3t8YdWBbYPjzlQrCbmv-_C0bUwzd10cMF14M,338
|
25
26
|
odoo/addons/stock_move_location/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
26
|
-
odoo/addons/stock_move_location/static/description/index.html,sha256=
|
27
|
+
odoo/addons/stock_move_location/static/description/index.html,sha256=sQMvekEhlD3pbtT_qgcLZITTZ9-aT3i8F5Z55qs-Yo4,17390
|
27
28
|
odoo/addons/stock_move_location/tests/__init__.py,sha256=gDGhCnhTYQONkRkGhPtOhgWTJ8sj6zs-sl2YRRvqGvQ,98
|
28
|
-
odoo/addons/stock_move_location/tests/test_common.py,sha256=
|
29
|
-
odoo/addons/stock_move_location/tests/test_move_location.py,sha256=
|
30
|
-
odoo/addons/stock_move_location/tests/test_stock_fillwithstock.py,sha256=
|
31
|
-
odoo/addons/stock_move_location/views/stock_picking.xml,sha256=
|
32
|
-
odoo/addons/stock_move_location/views/stock_picking_type_views.xml,sha256=
|
29
|
+
odoo/addons/stock_move_location/tests/test_common.py,sha256=0KmNLghRNtVDdRy2rDB5R3zZaATQqX8ZDbI1tCDkHBw,6198
|
30
|
+
odoo/addons/stock_move_location/tests/test_move_location.py,sha256=UVQhxFA1J3ta4ZkoqB7mX_E25Td1Yc-rPb-Bv6HXVXs,14897
|
31
|
+
odoo/addons/stock_move_location/tests/test_stock_fillwithstock.py,sha256=csUUo6V_pH1iq7xYkwzrCkY5Hpg-YHGtote-qlLPtyM,2679
|
32
|
+
odoo/addons/stock_move_location/views/stock_picking.xml,sha256=tLbhAUpl49uzb2V9RAN1G2q9waeZJgNY4CPaZfWNJ-w,742
|
33
|
+
odoo/addons/stock_move_location/views/stock_picking_type_views.xml,sha256=gTs-XGBnQ06Cz8JgFp1cbwB6mxIUlAI2CTlbhYo35JU,1391
|
33
34
|
odoo/addons/stock_move_location/wizard/__init__.py,sha256=0YXi68VJIkwZDO1-ZFirM2ANY3Mi7PEPdYW0Gg46lmY,239
|
34
|
-
odoo/addons/stock_move_location/wizard/stock_move_location.py,sha256=
|
35
|
-
odoo/addons/stock_move_location/wizard/stock_move_location.xml,sha256=
|
36
|
-
odoo/addons/stock_move_location/wizard/stock_move_location_line.py,sha256=
|
37
|
-
odoo_addon_stock_move_location-
|
38
|
-
odoo_addon_stock_move_location-
|
39
|
-
odoo_addon_stock_move_location-
|
40
|
-
odoo_addon_stock_move_location-
|
35
|
+
odoo/addons/stock_move_location/wizard/stock_move_location.py,sha256=6x0xPPoh5OzlgAV7FYrkA9msQ7LIooPheJAYwu2d9Ik,14905
|
36
|
+
odoo/addons/stock_move_location/wizard/stock_move_location.xml,sha256=1p2sQEZl9Opd_dxTpCJXXIq3YJkyej4EbplA1j7aE9Y,9074
|
37
|
+
odoo/addons/stock_move_location/wizard/stock_move_location_line.py,sha256=fFH-DId5RMMGVLZTyGCdZIMiIFL0InAE07kW1YNb-yo,5844
|
38
|
+
odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info/METADATA,sha256=fyBhOYSWjFhYfanZhDjtqeUag1mfMHIBo33WorHZ2pQ,6943
|
39
|
+
odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
40
|
+
odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
41
|
+
odoo_addon_stock_move_location-18.0.1.0.0.4.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
odoo
|
@@ -1 +0,0 @@
|
|
1
|
-
odoo
|