odoo-addon-shopfloor 16.0.2.4.0__py3-none-any.whl → 16.0.2.4.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.
@@ -7,7 +7,7 @@ Shopfloor
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:ae2b67a7a72797798a86c8d85d4a2336941d01d21bf28ffde3b646be05924595
10
+ !! source digest: sha256:ca663ff537b2eaf21df81aa7021efde06ad30709b48148d8fc5dbf570b0b5f87
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "name": "Shopfloor",
8
8
  "summary": "manage warehouse operations with barcode scanners",
9
- "version": "16.0.2.4.0",
9
+ "version": "16.0.2.4.1",
10
10
  "development_status": "Beta",
11
11
  "category": "Inventory",
12
12
  "website": "https://github.com/OCA/wms",
@@ -161,7 +161,7 @@ class MoveLineSearch(Component):
161
161
  # make prority negative to keep sorting ascending
162
162
  return self._sort_key_assigned_to_current_user(line) + (
163
163
  -int(line.move_id.priority or "0"),
164
- line.move_id.date,
164
+ line.move_id.date if line.move_id else line.create_date,
165
165
  line.move_id.id,
166
166
  )
167
167
 
@@ -169,7 +169,7 @@ class MoveLineSearch(Component):
169
169
  return self._sort_key_assigned_to_current_user(line) + (
170
170
  line.location_id.shopfloor_picking_sequence or "",
171
171
  line.location_id.name,
172
- line.move_id.date,
172
+ line.move_id.date if line.move_id else line.create_date,
173
173
  line.move_id.id,
174
174
  )
175
175
 
@@ -18,7 +18,7 @@ class StockAction(Component):
18
18
  def _create_return_move__get_max_qty(self, origin_move):
19
19
  """Returns the max returneable qty."""
20
20
  # The max returnable qty is the sent qty minus the already returned qties
21
- quantity = origin_move.reserved_qty
21
+ quantity = origin_move.product_uom_qty
22
22
  for move in origin_move.move_dest_ids:
23
23
  if (
24
24
  move.origin_returned_move_id
@@ -28,7 +28,7 @@ class StockAction(Component):
28
28
  if move.state in ("partially_available", "assigned"):
29
29
  quantity -= sum(move.move_line_ids.mapped("reserved_qty"))
30
30
  elif move.state in ("done"):
31
- quantity -= move.reserved_qty
31
+ quantity -= move.product_uom_qty
32
32
  return float_round(
33
33
  quantity, precision_rounding=origin_move.product_id.uom_id.rounding
34
34
  )
@@ -92,7 +92,7 @@ class StockAction(Component):
92
92
  def _create_return_picking__get_vals(self, return_types, origin):
93
93
  return_type = fields.first(return_types)
94
94
  return {
95
- "move_lines": [],
95
+ "move_ids": [],
96
96
  "picking_type_id": return_type.id,
97
97
  "state": "draft",
98
98
  "origin": origin,
@@ -1679,7 +1679,7 @@ msgstr ""
1679
1679
  #, python-format
1680
1680
  msgid ""
1681
1681
  "The quantity scanned for one or more lines cannot be higher than the maximum "
1682
- "allowed."
1682
+ "allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
1683
1683
  msgstr ""
1684
1684
 
1685
1685
  #. module: shopfloor
@@ -1675,7 +1675,7 @@ msgstr ""
1675
1675
  #, python-format
1676
1676
  msgid ""
1677
1677
  "The quantity scanned for one or more lines cannot be higher than the maximum "
1678
- "allowed."
1678
+ "allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
1679
1679
  msgstr ""
1680
1680
 
1681
1681
  #. module: shopfloor
@@ -1773,7 +1773,7 @@ msgstr ""
1773
1773
  #, python-format
1774
1774
  msgid ""
1775
1775
  "The quantity scanned for one or more lines cannot be higher than the maximum "
1776
- "allowed."
1776
+ "allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
1777
1777
  msgstr ""
1778
1778
 
1779
1779
  #. module: shopfloor
@@ -6,7 +6,7 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: Odoo Server 14.0\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "PO-Revision-Date: 2024-10-17 15:06+0000\n"
9
+ "PO-Revision-Date: 2024-11-04 15:06+0000\n"
10
10
  "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11
11
  "Language-Team: none\n"
12
12
  "Language: it\n"
@@ -172,8 +172,8 @@ msgid ""
172
172
  "line assigned to current user first. (return a tuple)"
173
173
  msgstr ""
174
174
  "<code>get_sort_key_assigned_to_current_user</code>: restituisce la chiave di "
175
- "ordinamento per ottenere prima la riga assegnata all'utente attuale. ("
176
- "restituisce una tupla)"
175
+ "ordinamento per ottenere prima la riga assegnata all'utente attuale. "
176
+ "(restituisce una tupla)"
177
177
 
178
178
  #. module: shopfloor
179
179
  #: model_terms:ir.ui.view,arch_db:shopfloor.shopfloor_menu_form_view
@@ -1807,10 +1807,11 @@ msgstr "il prodotto/collo selezionato è già stato reso."
1807
1807
  #, python-format
1808
1808
  msgid ""
1809
1809
  "The quantity scanned for one or more lines cannot be higher than the maximum "
1810
- "allowed."
1810
+ "allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
1811
1811
  msgstr ""
1812
- "La qanttà scansionata per una o più righe non può essere maggiore del "
1813
- "massimo consentito."
1812
+ "La quantità scansionata per una o più righe non può essere superiore al "
1813
+ "massimo consentito. (%(product_name)s : %(quantity_done)s > "
1814
+ "%(quantity_reserved)s)"
1814
1815
 
1815
1816
  #. module: shopfloor
1816
1817
  #. odoo-python
@@ -2267,6 +2268,14 @@ msgstr ""
2267
2268
  msgid "{} is not a valid destination package."
2268
2269
  msgstr "{} non è un collo destinazione valido."
2269
2270
 
2271
+ #, python-format
2272
+ #~ msgid ""
2273
+ #~ "The quantity scanned for one or more lines cannot be higher than the "
2274
+ #~ "maximum allowed."
2275
+ #~ msgstr ""
2276
+ #~ "La qanttà scansionata per una o più righe non può essere maggiore del "
2277
+ #~ "massimo consentito."
2278
+
2270
2279
  #, python-format
2271
2280
  #~ msgid "A draft inventory has been created for control."
2272
2281
  #~ msgstr "Per cntrollo è stato creato una bozza inventario."
@@ -1675,7 +1675,7 @@ msgstr ""
1675
1675
  #, python-format
1676
1676
  msgid ""
1677
1677
  "The quantity scanned for one or more lines cannot be higher than the maximum "
1678
- "allowed."
1678
+ "allowed. (%(product_name)s : %(quantity_done)s > %(quantity_reserved)s)"
1679
1679
  msgstr ""
1680
1680
 
1681
1681
  #. module: shopfloor
@@ -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:ae2b67a7a72797798a86c8d85d4a2336941d01d21bf28ffde3b646be05924595
370
+ !! source digest: sha256:ca663ff537b2eaf21df81aa7021efde06ad30709b48148d8fc5dbf570b0b5f87
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"><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"><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&amp;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>Shopfloor is a barcode scanner application for internal warehouse operations.</p>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-shopfloor
3
- Version: 16.0.2.4.0
3
+ Version: 16.0.2.4.1
4
4
  Summary: manage warehouse operations with barcode scanners
5
5
  Home-page: https://github.com/OCA/wms
6
6
  Author: Camptocamp, BCIM, Akretion, Odoo Community Association (OCA)
@@ -36,7 +36,7 @@ Shopfloor
36
36
  !! This file is generated by oca-gen-addon-readme !!
37
37
  !! changes will be overwritten. !!
38
38
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
39
- !! source digest: sha256:ae2b67a7a72797798a86c8d85d4a2336941d01d21bf28ffde3b646be05924595
39
+ !! source digest: sha256:ca663ff537b2eaf21df81aa7021efde06ad30709b48148d8fc5dbf570b0b5f87
40
40
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
41
41
 
42
42
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,6 +1,6 @@
1
- odoo/addons/shopfloor/README.rst,sha256=L7bBz1XK-F0EdnF5TGAmEVwnVSKSBNjmOaCf3XXFezk,5318
1
+ odoo/addons/shopfloor/README.rst,sha256=1xelEVfyzRYrmYutFWFc70_dp6LFor-n2-eIU2jZNqw,5318
2
2
  odoo/addons/shopfloor/__init__.py,sha256=ke3RmZ7XkX-lz4S8NHAxNIEJ5_Nvj5bjBAqD-W-q73c,91
3
- odoo/addons/shopfloor/__manifest__.py,sha256=G-bPsQX4Uap-GwxSmuRn5ZNVL3WXg7Qf9h6S85mikvg,2245
3
+ odoo/addons/shopfloor/__manifest__.py,sha256=DQU3Eg_uSe6mpoL7_dC4yc2swi6YcVTQbViMbraZVaQ,2245
4
4
  odoo/addons/shopfloor/exceptions.py,sha256=81KpIGVkuYRhA0cIuml4pg4G3izqkAAhLqoXZbUd4X8,197
5
5
  odoo/addons/shopfloor/utils.py,sha256=Be7J8Tu7ivOW4lpe8IjKxwqfTwfmK-ZkeFEavoYIIF4,375
6
6
  odoo/addons/shopfloor/actions/__init__.py,sha256=_yTf-NtaJmSylBJIoJJvKNYEI-wlqpyRw-S5eJRRzEM,400
@@ -11,13 +11,13 @@ odoo/addons/shopfloor/actions/data_detail.py,sha256=eVW5oOpl5Tkwkpb0he0Xj_PHLRS8
11
11
  odoo/addons/shopfloor/actions/inventory.py,sha256=Slg1hcV-kMb1jWHHu0VmYvQ9C0uqXtUAwAmHJUTE1zo,5976
12
12
  odoo/addons/shopfloor/actions/location_content_transfer_sorter.py,sha256=xpzea-w4zFrmpudQK3omRpZVhJdEIVQLXnuImkaZf5A,3110
13
13
  odoo/addons/shopfloor/actions/message.py,sha256=3LcFU5PvfVoBOU0CP27XQFqqKRrCi8qXTHV9j2NpBRA,30271
14
- odoo/addons/shopfloor/actions/move_line_search.py,sha256=Xhhx9RHaawNpa31DIgA8Q-cE_YmvBzqJlqkte_lgyY4,7719
14
+ odoo/addons/shopfloor/actions/move_line_search.py,sha256=2G2NkxQ__JlvlhTQv8CQT1Kh94BDm49APTwbh_Hr-ZA,7795
15
15
  odoo/addons/shopfloor/actions/packaging.py,sha256=uZxD1bisNS_8M5ZQAHuOz2MR6l26XHR4VZY7QgA69Zs,2662
16
16
  odoo/addons/shopfloor/actions/savepoint.py,sha256=Tmqgh1k16x7L0ZSxVz9yNqIGLAyA7vFb5FWpLrb_GTI,1151
17
17
  odoo/addons/shopfloor/actions/schema.py,sha256=r7CLlzmcHRcaKL0_qQBUeMiDrxbIwYfQB_Ydq867JtU,8556
18
18
  odoo/addons/shopfloor/actions/schema_detail.py,sha256=_xtm8ptRXAPBIMTyr8XKMQtogcjBudh-QRqKUZEEHGU,4968
19
19
  odoo/addons/shopfloor/actions/search.py,sha256=ai-pLBLWiDjKYlZ2uWZQG6PeB2jBj5-1D34XjELaXMY,6851
20
- odoo/addons/shopfloor/actions/stock.py,sha256=_m8b9u6V1P47G15RHw1JN4nLLy8N8bPlpe7Ip0QUpEs,10758
20
+ odoo/addons/shopfloor/actions/stock.py,sha256=i3Y9j-lf8gWVmj2ItBNurZ05wGtLM7QusfX7eGgruP8,10762
21
21
  odoo/addons/shopfloor/actions/stock_unreserve.py,sha256=LoFd9hzeNlTQEn0-FN3N4xWLSo1uuiw5E394OEPHm-Y,2720
22
22
  odoo/addons/shopfloor/components/__init__.py,sha256=a3ox1WOD1JhrQUrYMRn-yDJI0Vvc7ciKdmXuZB29ToU,173
23
23
  odoo/addons/shopfloor/components/scan_handler_location.py,sha256=LImiaG4L4xBKUFWZLSnJV-eSCvj_NCDCM5GqZSnsPmE,825
@@ -43,11 +43,11 @@ odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.plantuml,sha256=FuN70hu
43
43
  odoo/addons/shopfloor/docs/single_pack_transfer_diag_seq.png,sha256=LAsRPfPeEB6Db8oNL4r637bi2iXXI7r0HFuOaPK3Z9A,33901
44
44
  odoo/addons/shopfloor/docs/zone_picking_diag_seq.plantuml,sha256=Bu0NkP2HwV24IgTHEYV5uwMikk00vOEAGxK53OG9p9s,3527
45
45
  odoo/addons/shopfloor/docs/zone_picking_diag_seq.png,sha256=_qGnbfsShydA3Xjefaurt45fzlgJ8upf11B9DRv9OB0,185581
46
- odoo/addons/shopfloor/i18n/ca.po,sha256=Mdv7UgORL2NMGoGX23BV_PG3JgImCTWmU_iGwbb9RzU,59104
47
- odoo/addons/shopfloor/i18n/de.po,sha256=LSdchGr1zUVNlN6MYpa4B7T9opLsruAVF1wagA70fTw,57572
48
- odoo/addons/shopfloor/i18n/es_AR.po,sha256=X4Io7boNJLC5a4pU7pMbaLu4B-JWFtuRrIq_diev74Y,80012
49
- odoo/addons/shopfloor/i18n/it.po,sha256=E9CFPLju8IV8HS9lyf8ipN8ZaLpKNTRH87pAoiYpNHA,80252
50
- odoo/addons/shopfloor/i18n/pt_BR.po,sha256=ulg9i8rJdOYqIsejyRnlRUXBWgO1XQ_Fe_jimPUStZw,57574
46
+ odoo/addons/shopfloor/i18n/ca.po,sha256=nXUFaLWkS7EKS7glkzDznXEHwpM6KfS7u4KR0TU_YGs,59167
47
+ odoo/addons/shopfloor/i18n/de.po,sha256=vsQ8YvfoWs3UGAvIY_hLj6joN7KkkDR7qlR_p6O50Gw,57635
48
+ odoo/addons/shopfloor/i18n/es_AR.po,sha256=OWD4O8FSjZtMDCRGLmxQKWYKNYwIYrkba31QxoUzObw,80075
49
+ odoo/addons/shopfloor/i18n/it.po,sha256=sAZ9WKWhoO3G6OP9XWvmAqMGRZ2-y5KZDEBS3ijXMWg,80627
50
+ odoo/addons/shopfloor/i18n/pt_BR.po,sha256=Gvt3Lf9VE1FLkVgqtZeMzLdQ5nWxaemsjIMGNKvylNc,57637
51
51
  odoo/addons/shopfloor/i18n/shopfloor.pot,sha256=5JKZf-V6X6R7vTdOEHkX0xYuYneyzf_GbSzK7dL96DU,57627
52
52
  odoo/addons/shopfloor/migrations/16.0.2.0.0/post-migration.py,sha256=WfXnS5fj_K78VFaUAe0UiNhFX1C8LA0lkh6Zofllvc4,1311
53
53
  odoo/addons/shopfloor/migrations/16.0.2.2.1/post-init_search_move_line_options.py,sha256=OfsDBUUEKtWQOv9pU86edeFlnT2YiPli4PMpv74Q8IY,1176
@@ -84,7 +84,7 @@ odoo/addons/shopfloor/services/zone_picking.py,sha256=H6cA3NAHhxq3uUuwsCjep723fU
84
84
  odoo/addons/shopfloor/services/forms/__init__.py,sha256=nxwJdKX47hb56ERf4Qb3UE5dkdsHCbkaXMAXs4XMAd8,27
85
85
  odoo/addons/shopfloor/services/forms/picking_form.py,sha256=F15G5yw78Pd1WgPjMz00-K1JyGaTdfdvVYzG4Dubpqk,2626
86
86
  odoo/addons/shopfloor/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
87
- odoo/addons/shopfloor/static/description/index.html,sha256=lcZGBlNZMWcsyyZEyq9DN-QPKNudIQZlqODKvheUUB0,17547
87
+ odoo/addons/shopfloor/static/description/index.html,sha256=eQGIfDi_C6Uf9Sm-3qgyN-96CTpuIE1vqSiMl7K1SQU,17547
88
88
  odoo/addons/shopfloor/tests/__init__.py,sha256=G9IP98Vs4Vx26FYbaxQcJST7xU7gjUggxTEiy8DPCMI,3902
89
89
  odoo/addons/shopfloor/tests/common.py,sha256=v1C7DQT-MvTk81xIYyv--c1BaIpwbia2ey8s35nvrK4,11611
90
90
  odoo/addons/shopfloor/tests/models.py,sha256=jNbYUqYLxkbQMn4j8bejHM3l6CRThJBDfpATl8H83OM,939
@@ -185,7 +185,7 @@ odoo/addons/shopfloor/views/shopfloor_menu.xml,sha256=zAKIIMnglUsRnfvusKjKsRaZdQ
185
185
  odoo/addons/shopfloor/views/stock_location.xml,sha256=d7iqbOQZbb5YPSdAXlQ6spcj8dUvQ37DpEGuaLX5B1M,829
186
186
  odoo/addons/shopfloor/views/stock_move_line.xml,sha256=tn3pV67aRoYmn3qkm3aSgdYArY-z9SIrl_4fpJFy3Jo,1984
187
187
  odoo/addons/shopfloor/views/stock_picking_type.xml,sha256=Ckn2835hO4HtuZQX9x3382C4gs789fb94Cx0444mBkc,800
188
- odoo_addon_shopfloor-16.0.2.4.0.dist-info/METADATA,sha256=93M-wlrrg1iosk5_6VfLfPxmlG7hzpr2OoFJLgcDAPU,6761
189
- odoo_addon_shopfloor-16.0.2.4.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
190
- odoo_addon_shopfloor-16.0.2.4.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
191
- odoo_addon_shopfloor-16.0.2.4.0.dist-info/RECORD,,
188
+ odoo_addon_shopfloor-16.0.2.4.1.dist-info/METADATA,sha256=H2VBnb2JF8amTaF1BSE1ecqzCzf_GwZ5CNh0gRukDXI,6761
189
+ odoo_addon_shopfloor-16.0.2.4.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
190
+ odoo_addon_shopfloor-16.0.2.4.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
191
+ odoo_addon_shopfloor-16.0.2.4.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.44.0)
2
+ Generator: bdist_wheel (0.45.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5