odoo-addon-shopfloor-mobile 16.0.1.2.0.1__py3-none-any.whl → 16.0.1.4.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.
Potentially problematic release.
This version of odoo-addon-shopfloor-mobile might be problematic. Click here for more details.
- odoo/addons/shopfloor_mobile/README.rst +1 -1
- odoo/addons/shopfloor_mobile/__manifest__.py +1 -1
- odoo/addons/shopfloor_mobile/static/description/index.html +1 -1
- odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_location.js +74 -0
- odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_lot.js +1 -1
- odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_product.js +86 -1
- odoo/addons/shopfloor_mobile/static/wms/src/scenario/checkout_states.js +1 -0
- {odoo_addon_shopfloor_mobile-16.0.1.2.0.1.dist-info → odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info}/METADATA +5 -5
- {odoo_addon_shopfloor_mobile-16.0.1.2.0.1.dist-info → odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info}/RECORD +11 -11
- {odoo_addon_shopfloor_mobile-16.0.1.2.0.1.dist-info → odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info}/WHEEL +1 -1
- {odoo_addon_shopfloor_mobile-16.0.1.2.0.1.dist-info → odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info}/top_level.txt +0 -0
|
@@ -7,7 +7,7 @@ Shopfloor mobile
|
|
|
7
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
8
|
!! changes will be overwritten. !!
|
|
9
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
10
|
+
!! source digest: sha256:e2e8c5dda324092d44eb40ecd4e2bfd44696c59cdc3af9ded861ef7401f7d971
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
{
|
|
6
6
|
"name": "Shopfloor mobile",
|
|
7
7
|
"summary": "Mobile frontend for WMS Shopfloor app",
|
|
8
|
-
"version": "16.0.1.
|
|
8
|
+
"version": "16.0.1.4.0",
|
|
9
9
|
"depends": ["shopfloor", "shopfloor_mobile_base"],
|
|
10
10
|
"author": "Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)",
|
|
11
11
|
"maintainers": ["simahawk"],
|
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
370
|
+
!! source digest: sha256:e2e8c5dda324092d44eb40ecd4e2bfd44696c59cdc3af9ded861ef7401f7d971
|
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/wms/tree/16.0/shopfloor_mobile"><img alt="OCA/wms" src="https://img.shields.io/badge/github-OCA%2Fwms-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/wms-16-0/wms-16-0-shopfloor_mobile"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/wms&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
373
|
<p>Frontend for Shopfloor app.</p>
|
|
@@ -37,6 +37,48 @@ Vue.component("detail-location", {
|
|
|
37
37
|
{path: "product.qty_available", label: "Qty in stock"},
|
|
38
38
|
];
|
|
39
39
|
},
|
|
40
|
+
available_product_list_options() {
|
|
41
|
+
return {
|
|
42
|
+
main: true,
|
|
43
|
+
key_title: "display_name",
|
|
44
|
+
klass: "loud-labels",
|
|
45
|
+
fields: this.available_product_list_fields(),
|
|
46
|
+
};
|
|
47
|
+
},
|
|
48
|
+
available_product_list_fields() {
|
|
49
|
+
return [
|
|
50
|
+
{path: "supplier_code", label: "Vendor code", klass: "loud"},
|
|
51
|
+
{path: "quantity", label: "Qty in stock"},
|
|
52
|
+
];
|
|
53
|
+
},
|
|
54
|
+
lot_detail_options() {
|
|
55
|
+
return {
|
|
56
|
+
main: false,
|
|
57
|
+
key_title: "name",
|
|
58
|
+
fields: this.lot_detail_fields(),
|
|
59
|
+
klass: "loud-labels",
|
|
60
|
+
};
|
|
61
|
+
},
|
|
62
|
+
lot_detail_fields() {
|
|
63
|
+
const self = this;
|
|
64
|
+
return [
|
|
65
|
+
{path: "quantity", label: "Qty in stock"},
|
|
66
|
+
{
|
|
67
|
+
path: "expiration_date",
|
|
68
|
+
label: "Expiry date",
|
|
69
|
+
renderer: function (rec, field) {
|
|
70
|
+
return self.utils.display.render_field_date(rec, field);
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
path: "removal_date",
|
|
75
|
+
label: "Removal date",
|
|
76
|
+
renderer: function (rec, field) {
|
|
77
|
+
return self.utils.display.render_field_date(rec, field);
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
},
|
|
40
82
|
},
|
|
41
83
|
template: `
|
|
42
84
|
<div :class="$options._componentTag">
|
|
@@ -60,6 +102,38 @@ Vue.component("detail-location", {
|
|
|
60
102
|
/>
|
|
61
103
|
|
|
62
104
|
</div>
|
|
105
|
+
<div class="available_products" v-if="record.products.length">
|
|
106
|
+
<separator-title>Available products</separator-title>
|
|
107
|
+
|
|
108
|
+
<v-expansion-panels v-if="record.products.length > 0" flat :color="utils.colors.color_for('detail_main_card')">
|
|
109
|
+
<v-expansion-panel v-for="(product, index) in record.products" :key="make_component_key(['product', index])">
|
|
110
|
+
<v-expansion-panel-header>
|
|
111
|
+
<item-detail-card
|
|
112
|
+
v-bind="$props"
|
|
113
|
+
:record="product"
|
|
114
|
+
:key="make_component_key(['product', product.id])"
|
|
115
|
+
:options="available_product_list_options()"
|
|
116
|
+
:card_color="utils.colors.color_for('detail_main_card')"
|
|
117
|
+
/>
|
|
118
|
+
</v-expansion-panel-header>
|
|
119
|
+
<v-expansion-panel-content>
|
|
120
|
+
<item-detail-card
|
|
121
|
+
v-for="(lot, i) in product.lots"
|
|
122
|
+
:record="lot"
|
|
123
|
+
v-bind="$props"
|
|
124
|
+
:key="make_component_key(['lot', lot.id])"
|
|
125
|
+
:options="lot_detail_options()"
|
|
126
|
+
:card_color="utils.colors.color_for('screen_step_todo')"
|
|
127
|
+
/>
|
|
128
|
+
</v-expansion-panel-content>
|
|
129
|
+
</v-expansion-panel>
|
|
130
|
+
</v-expansion-panels>
|
|
131
|
+
<!-- list
|
|
132
|
+
:records="record.products"
|
|
133
|
+
:options="available_product_list_options()"
|
|
134
|
+
/-->
|
|
135
|
+
|
|
136
|
+
</div>
|
|
63
137
|
|
|
64
138
|
</div>
|
|
65
139
|
`,
|
|
@@ -20,7 +20,7 @@ Vue.component("detail-product", {
|
|
|
20
20
|
return [
|
|
21
21
|
// Image TODO
|
|
22
22
|
{path: "lot.name", label: "Lot"},
|
|
23
|
-
{path: "
|
|
23
|
+
{path: "expiration_date", label: "Expiry date"},
|
|
24
24
|
{path: "default_code", label: "Internal ref"},
|
|
25
25
|
{path: "barcode", label: "Barcode"},
|
|
26
26
|
{path: "product.supplier_code", label: "Supplier ref"},
|
|
@@ -39,6 +39,59 @@ Vue.component("detail-product", {
|
|
|
39
39
|
render_packaging(record, field) {
|
|
40
40
|
return [record.name, "(" + record.code + ")", "= " + record.qty].join(" ");
|
|
41
41
|
},
|
|
42
|
+
locations_options() {
|
|
43
|
+
return {
|
|
44
|
+
main: false,
|
|
45
|
+
key_title: "name",
|
|
46
|
+
fields: this.locations_fields(),
|
|
47
|
+
card_klass: "loud-labels",
|
|
48
|
+
};
|
|
49
|
+
},
|
|
50
|
+
locations_fields() {
|
|
51
|
+
return [{path: "quantity", label: "Reserved"}];
|
|
52
|
+
},
|
|
53
|
+
available_product_list_options() {
|
|
54
|
+
return {
|
|
55
|
+
main: true,
|
|
56
|
+
key_title: "display_name",
|
|
57
|
+
klass: "loud-labels",
|
|
58
|
+
title_action_field: {
|
|
59
|
+
action_val_path: "default_code",
|
|
60
|
+
},
|
|
61
|
+
fields: this.available_product_list_fields(),
|
|
62
|
+
};
|
|
63
|
+
},
|
|
64
|
+
available_product_list_fields() {
|
|
65
|
+
return [{path: "qty_available", label: "Qty on hand"}];
|
|
66
|
+
},
|
|
67
|
+
lot_detail_options() {
|
|
68
|
+
return {
|
|
69
|
+
main: false,
|
|
70
|
+
key_title: "name",
|
|
71
|
+
fields: this.lot_detail_fields(),
|
|
72
|
+
klass: "loud-labels",
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
lot_detail_fields() {
|
|
76
|
+
const self = this;
|
|
77
|
+
return [
|
|
78
|
+
{path: "quantity", label: "Qty in stock"},
|
|
79
|
+
{
|
|
80
|
+
path: "expiration_date",
|
|
81
|
+
label: "Expiry date",
|
|
82
|
+
renderer: function (rec, field) {
|
|
83
|
+
return self.utils.display.render_field_date(rec, field);
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
path: "removal_date",
|
|
88
|
+
label: "Removal date",
|
|
89
|
+
renderer: function (rec, field) {
|
|
90
|
+
return self.utils.display.render_field_date(rec, field);
|
|
91
|
+
},
|
|
92
|
+
},
|
|
93
|
+
];
|
|
94
|
+
},
|
|
42
95
|
},
|
|
43
96
|
template: `
|
|
44
97
|
<div :class="$options._componentTag">
|
|
@@ -65,6 +118,38 @@ Vue.component("detail-product", {
|
|
|
65
118
|
:options="{key_title: 'display_name', list_item_fields: packaging_detail_fields()}"
|
|
66
119
|
/>
|
|
67
120
|
</div>
|
|
121
|
+
|
|
122
|
+
<div class="locations mb-4" v-if="record.locations">
|
|
123
|
+
<separator-title>Locations</separator-title>
|
|
124
|
+
<v-expansion-panels v-if="record.locations.length > 0" flat :color="utils.colors.color_for('detail_main_card')">
|
|
125
|
+
<v-expansion-panel v-for="(location, index) in record.locations" :key="make_component_key(['location', index])">
|
|
126
|
+
<v-expansion-panel-header>
|
|
127
|
+
<item-detail-card
|
|
128
|
+
v-bind="$props"
|
|
129
|
+
:record="location"
|
|
130
|
+
:key="make_component_key(['location', location.id])"
|
|
131
|
+
:options="locations_options()"
|
|
132
|
+
:card_color="utils.colors.color_for('detail_main_card')"
|
|
133
|
+
>
|
|
134
|
+
<template v-slot:subtitle>
|
|
135
|
+
{{ location.complete_name }}
|
|
136
|
+
</template>
|
|
137
|
+
</item-detail-card>
|
|
138
|
+
</v-expansion-panel-header>
|
|
139
|
+
<v-expansion-panel-content v-for="(lot, i) in location.lots">
|
|
140
|
+
<separator-title v-if="location.lots.length > 0">Lots</separator-title>
|
|
141
|
+
<item-detail-card
|
|
142
|
+
:record="lot"
|
|
143
|
+
v-bind="$props"
|
|
144
|
+
:key="make_component_key(['lot', lot.id])"
|
|
145
|
+
:options="lot_detail_options()"
|
|
146
|
+
:card_color="utils.colors.color_for('screen_step_todo')"
|
|
147
|
+
/>
|
|
148
|
+
</v-expansion-panel-content>
|
|
149
|
+
|
|
150
|
+
</v-expansion-panel>
|
|
151
|
+
</v-expansion-panels>
|
|
152
|
+
</div>
|
|
68
153
|
</div>
|
|
69
154
|
`,
|
|
70
155
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-shopfloor_mobile
|
|
3
|
-
Version: 16.0.1.
|
|
3
|
+
Version: 16.0.1.4.0
|
|
4
4
|
Summary: Mobile frontend for WMS Shopfloor app
|
|
5
5
|
Home-page: https://github.com/OCA/wms
|
|
6
6
|
Author: Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)
|
|
@@ -11,9 +11,9 @@ Classifier: Framework :: Odoo
|
|
|
11
11
|
Classifier: Framework :: Odoo :: 16.0
|
|
12
12
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
|
-
Requires-Dist: odoo-addon-shopfloor
|
|
15
|
-
Requires-Dist: odoo-addon-shopfloor-mobile-base
|
|
16
|
-
Requires-Dist: odoo
|
|
14
|
+
Requires-Dist: odoo-addon-shopfloor<16.1dev,>=16.0dev
|
|
15
|
+
Requires-Dist: odoo-addon-shopfloor-mobile-base<16.1dev,>=16.0dev
|
|
16
|
+
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
17
17
|
|
|
18
18
|
================
|
|
19
19
|
Shopfloor mobile
|
|
@@ -24,7 +24,7 @@ Shopfloor mobile
|
|
|
24
24
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
25
|
!! changes will be overwritten. !!
|
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
|
-
!! source digest: sha256:
|
|
27
|
+
!! source digest: sha256:e2e8c5dda324092d44eb40ecd4e2bfd44696c59cdc3af9ded861ef7401f7d971
|
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
29
29
|
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/shopfloor_mobile/README.rst,sha256=
|
|
1
|
+
odoo/addons/shopfloor_mobile/README.rst,sha256=kAYp1_fcrlxN9aSHkUZ9SkboSWOzt8EgP2ORH-H18Xc,7148
|
|
2
2
|
odoo/addons/shopfloor_mobile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
odoo/addons/shopfloor_mobile/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/shopfloor_mobile/__manifest__.py,sha256=TOq3Ofvqogry1Dnaebh5XTHJ7-ayOOvpVY9n02euRCg,683
|
|
4
4
|
odoo/addons/shopfloor_mobile/i18n/de.po,sha256=6eRN27NdcMT5a9_rC7t-L1IyssIf4d0sV8XcBlxYETU,411
|
|
5
5
|
odoo/addons/shopfloor_mobile/i18n/es_AR.po,sha256=8mGWCcMew3na_BE6yzC9aGqTSHNwLq_fu1r-JnZnYGE,1149
|
|
6
6
|
odoo/addons/shopfloor_mobile/i18n/it.po,sha256=Fuhk7nf_wDaq10_RJlCCe4xE6u8qKIml2r_4nUJ1O1w,412
|
|
@@ -13,7 +13,7 @@ odoo/addons/shopfloor_mobile/readme/HISTORY.rst,sha256=Ibf54quZVYNg74R-oWzny0XeM
|
|
|
13
13
|
odoo/addons/shopfloor_mobile/readme/ROADMAP.rst,sha256=Nm8uyGJvPQWMQtYwwxt8P4WBuLLpUZjZ_p8eqTrFRbM,1726
|
|
14
14
|
odoo/addons/shopfloor_mobile/readme/USAGE.rst,sha256=5NNHChxhLwFVo4m6XhCaSlagf_bpNaZgsF8oSGSQ2WY,677
|
|
15
15
|
odoo/addons/shopfloor_mobile/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
16
|
-
odoo/addons/shopfloor_mobile/static/description/index.html,sha256=
|
|
16
|
+
odoo/addons/shopfloor_mobile/static/description/index.html,sha256=e6pJ2VYLcppsmuxjrxf9vn4JIu4yv2yN_z3yILYEiPg,18026
|
|
17
17
|
odoo/addons/shopfloor_mobile/static/wms/.gitignore,sha256=rQCFL3FQm3Lll35BRUETzj1HYlakdld--GvTGLPeHpE,214
|
|
18
18
|
odoo/addons/shopfloor_mobile/static/wms/src/screen.js,sha256=77TQgYSfpnErCuhV9FjQujMFlrKU7EZ6OdeTJnZutV8,1461
|
|
19
19
|
odoo/addons/shopfloor_mobile/static/wms/src/wms_utils.js,sha256=DjIgQDuorreq8tH1FdzBR0CaGaF8eTlHbopcV54l2uk,12055
|
|
@@ -22,12 +22,12 @@ odoo/addons/shopfloor_mobile/static/wms/src/components/batch_picking_line_detail
|
|
|
22
22
|
odoo/addons/shopfloor_mobile/static/wms/src/components/manual_select_color.js,sha256=O07YP4zYDSZk1edV8ogvNJCkKyDWIiX7L_g_JzHS5Es,932
|
|
23
23
|
odoo/addons/shopfloor_mobile/static/wms/src/components/misc.js,sha256=9XwbtJimGN3jd2Gon0tgXcy9cBQLWo43rx8_EQIUKJw,6279
|
|
24
24
|
odoo/addons/shopfloor_mobile/static/wms/src/components/packaging-qty-picker.js,sha256=O16dYIr1WSNvO1Ng0CcFkJth2hHsr4_v2Gbdsn2OzFg,12039
|
|
25
|
-
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_location.js,sha256=
|
|
26
|
-
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_lot.js,sha256=
|
|
25
|
+
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_location.js,sha256=P3AUAsbkiDXLLqZotjEjejuIN9l6atvkd3QFmuKhP9g,5009
|
|
26
|
+
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_lot.js,sha256=M4FjU6mR5tTqI8KZduyMdjO2bcnltT40lnYWIzOzUSM,3186
|
|
27
27
|
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_operation.js,sha256=7JdppT91Klgm-vPkXevNB7wsy0wvgKm91qyC733KSD0,1740
|
|
28
28
|
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_package.js,sha256=FPT_WDXVDPg4m5wLrA9MunjLL9nsDe59qxW-yiLQpM4,2746
|
|
29
29
|
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_picking.js,sha256=PeavOYvJjfkKNeA-TGU9UGugyPD1DjeW3A02Cr0LY1k,1123
|
|
30
|
-
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_product.js,sha256=
|
|
30
|
+
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_product.js,sha256=SBp4mnOuGgcoc0enUGUOnNubdguUiSCnE6-TrvXOZ-M,5879
|
|
31
31
|
odoo/addons/shopfloor_mobile/static/wms/src/components/detail/detail_transfer.js,sha256=xUiKj-MAkJ4YIvE0o6wKK-iuoeslLfuh9e0rUyH3d_g,4681
|
|
32
32
|
odoo/addons/shopfloor_mobile/static/wms/src/components/forms/form_edit_stock_picking.js,sha256=lgn_2rG50gbLH7h2K6iqZHeEFeWguemJPURAR1eWJeU,1153
|
|
33
33
|
odoo/addons/shopfloor_mobile/static/wms/src/components/scenario_picking_detail/mixins.js,sha256=ExPE5POHn6PCe32Kt6S70wNwTZ8UJZg21uPKXO1xaEU,4119
|
|
@@ -46,14 +46,14 @@ odoo/addons/shopfloor_mobile/static/wms/src/i18n/add_translations_to_registry.js
|
|
|
46
46
|
odoo/addons/shopfloor_mobile/static/wms/src/i18n/en.json,sha256=gn981MlQXNBYiVZHWOV4o0LzdrCqZ2Z9ptjPArF8C-Q,1944
|
|
47
47
|
odoo/addons/shopfloor_mobile/static/wms/src/i18n/fr.json,sha256=-nRVyM2PsggBL1WjxYzyeRdC4kwx7HzSOXAN83TJehE,1941
|
|
48
48
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/checkout.js,sha256=JTa7E7ZwLQXTBBq5CwpB_vPvqVRnbBNaXSHy3TIM13w,19412
|
|
49
|
-
odoo/addons/shopfloor_mobile/static/wms/src/scenario/checkout_states.js,sha256=
|
|
49
|
+
odoo/addons/shopfloor_mobile/static/wms/src/scenario/checkout_states.js,sha256=X4_7s2TXLS6R8FzTbsgLq9ioowaeicEoeThwUUlcl18,14961
|
|
50
50
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/cluster_picking.js,sha256=W-22xBhtdWDR_ZZvdrONYNFrXLxgrv4sa6jjUE0hON8,20515
|
|
51
51
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/delivery.js,sha256=mYPBRAjRcI38BgdSVxbhaQnV_vXuD546ysz_0JUZ55Y,15001
|
|
52
52
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/location_content_transfer.js,sha256=XtBc29PCjfR1H8J9iyBwvy0R2cVS_6piJsDmnINJv9g,18088
|
|
53
53
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/single_pack_transfer.js,sha256=0Tpi9bVUamT0Ij1JCJHLo4IwyM7IAkXfAxHw87g-doM,6114
|
|
54
54
|
odoo/addons/shopfloor_mobile/static/wms/src/scenario/zone_picking.js,sha256=ftcQ7tbSev66wFg09TQ3LCL-3lCzt7H_l1J3ftdc60U,44958
|
|
55
55
|
odoo/addons/shopfloor_mobile/templates/assets.xml,sha256=QAiHXcCpybR9h4B3WuuDcFZ1DnJcGg2cQ63RCUw2niY,7873
|
|
56
|
-
odoo_addon_shopfloor_mobile-16.0.1.
|
|
57
|
-
odoo_addon_shopfloor_mobile-16.0.1.
|
|
58
|
-
odoo_addon_shopfloor_mobile-16.0.1.
|
|
59
|
-
odoo_addon_shopfloor_mobile-16.0.1.
|
|
56
|
+
odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info/METADATA,sha256=rVAE9eV378us4I9Zwxw62KSf5mQ-zj8CIZo_sw1d1sQ,7803
|
|
57
|
+
odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
58
|
+
odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
59
|
+
odoo_addon_shopfloor_mobile-16.0.1.4.0.dist-info/RECORD,,
|