odoo-addon-shopfloor 16.0.2.8.0.2__py3-none-any.whl → 16.0.2.10.0.2__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.
@@ -1,3 +1,7 @@
1
+ .. image:: https://odoo-community.org/readme-banner-image
2
+ :target: https://odoo-community.org/get-involved?utm_source=readme
3
+ :alt: Odoo Community Association
4
+
1
5
  =========
2
6
  Shopfloor
3
7
  =========
@@ -7,13 +11,13 @@ Shopfloor
7
11
  !! This file is generated by oca-gen-addon-readme !!
8
12
  !! changes will be overwritten. !!
9
13
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:8f4a1f9cca9cb3a4830c65a6a9d8a65ec3334a34722525fe5da87e77b0e90de2
14
+ !! source digest: sha256:f6bf44c46907424c9adf6166901cdac6cda73038169d71fe37121d21ab72b2ea
11
15
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
16
 
13
17
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14
18
  :target: https://odoo-community.org/page/development-status
15
19
  :alt: Beta
16
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
17
21
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18
22
  :alt: License: AGPL-3
19
23
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwms-lightgray.png?logo=github
@@ -6,7 +6,7 @@
6
6
  {
7
7
  "name": "Shopfloor",
8
8
  "summary": "manage warehouse operations with barcode scanners",
9
- "version": "16.0.2.8.0",
9
+ "version": "16.0.2.10.0",
10
10
  "development_status": "Beta",
11
11
  "category": "Inventory",
12
12
  "website": "https://github.com/OCA/wms",
@@ -59,10 +59,11 @@ class InventoryAction(Component):
59
59
  for quant in quants:
60
60
  if quant.inventory_quantity_set:
61
61
  continue
62
- quants.write(
62
+ quant.write(
63
63
  {
64
- # Set an inventory quantity to prevent the zero quant cleanup
65
- "inventory_quantity": quant.inventory_quantity + 1,
64
+ # Set a user to prevent the zero quant cleanup
65
+ "user_id": self.env.user.id,
66
+ "inventory_quantity": 0,
66
67
  "inventory_date": fields.Date.today(),
67
68
  }
68
69
  )
@@ -527,6 +527,11 @@ msgstr ""
527
527
  msgid "Inventory Locations"
528
528
  msgstr ""
529
529
 
530
+ #. module: shopfloor
531
+ #: model:ir.model.fields,field_description:shopfloor.field_stock_picking__is_shopfloor_created
532
+ msgid "Is Shopfloor Created"
533
+ msgstr ""
534
+
530
535
  #. module: shopfloor
531
536
  #. odoo-python
532
537
  #: code:addons/shopfloor/actions/completion_info.py:0
@@ -23,6 +23,7 @@ class StockPicking(models.Model):
23
23
  help="Technical field. "
24
24
  "Indicates number of move lines without package included.",
25
25
  )
26
+ is_shopfloor_created = fields.Boolean()
26
27
 
27
28
  @api.depends(
28
29
  "move_line_ids", "move_line_ids.reserved_qty", "move_line_ids.product_id.weight"
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5
5
  <meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6
- <title>Shopfloor</title>
6
+ <title>README.rst</title>
7
7
  <style type="text/css">
8
8
 
9
9
  /*
@@ -360,16 +360,21 @@ ul.auto-toc {
360
360
  </style>
361
361
  </head>
362
362
  <body>
363
- <div class="document" id="shopfloor">
364
- <h1 class="title">Shopfloor</h1>
363
+ <div class="document">
365
364
 
365
+
366
+ <a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367
+ <img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368
+ </a>
369
+ <div class="section" id="shopfloor">
370
+ <h1>Shopfloor</h1>
366
371
  <!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367
372
  !! This file is generated by oca-gen-addon-readme !!
368
373
  !! changes will be overwritten. !!
369
374
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:8f4a1f9cca9cb3a4830c65a6a9d8a65ec3334a34722525fe5da87e77b0e90de2
375
+ !! source digest: sha256:f6bf44c46907424c9adf6166901cdac6cda73038169d71fe37121d21ab72b2ea
371
376
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
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>
377
+ <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/license-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
378
  <p>Shopfloor is a barcode scanner application for internal warehouse operations.</p>
374
379
  <p>The application supports scenarios, to relate to Operation Types:</p>
375
380
  <ul class="simple">
@@ -408,7 +413,7 @@ A default front-end application is provided by <tt class="docutils literal">shop
408
413
  </ul>
409
414
  </div>
410
415
  <div class="section" id="usage">
411
- <h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
416
+ <h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
412
417
  <p>An API key is created in the Demo data (for development), using
413
418
  the Demo user. The key to use in the HTTP header <tt class="docutils literal"><span class="pre">API-KEY</span></tt> is: 72B044F7AC780DAC</p>
414
419
  <p>Curl example:</p>
@@ -417,7 +422,7 @@ curl -X POST &quot;http://localhost:8069/shopfloor/user/menu&quot; -H &quot;acc
417
422
  </pre>
418
423
  </div>
419
424
  <div class="section" id="known-issues-roadmap">
420
- <h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
425
+ <h2><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h2>
421
426
  <ul class="simple">
422
427
  <li>improve documentation</li>
423
428
  <li>split out scenario components to their own modules</li>
@@ -426,14 +431,14 @@ and move scenario to <cite>shopfloor_wms</cite>?</li>
426
431
  </ul>
427
432
  </div>
428
433
  <div class="section" id="changelog">
429
- <h1><a class="toc-backref" href="#toc-entry-3">Changelog</a></h1>
434
+ <h2><a class="toc-backref" href="#toc-entry-3">Changelog</a></h2>
430
435
  <div class="section" id="section-1">
431
- <h2><a class="toc-backref" href="#toc-entry-4">13.0.1.0.0</a></h2>
436
+ <h3><a class="toc-backref" href="#toc-entry-4">13.0.1.0.0</a></h3>
432
437
  <p>First official version.</p>
433
438
  </div>
434
439
  </div>
435
440
  <div class="section" id="bug-tracker">
436
- <h1><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h1>
441
+ <h2><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h2>
437
442
  <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/wms/issues">GitHub Issues</a>.
438
443
  In case of trouble, please check there if your issue has already been reported.
439
444
  If you spotted it first, help us to smash it by providing a detailed and welcomed
@@ -441,9 +446,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
441
446
  <p>Do not contact contributors directly about support or help with technical issues.</p>
442
447
  </div>
443
448
  <div class="section" id="credits">
444
- <h1><a class="toc-backref" href="#toc-entry-6">Credits</a></h1>
449
+ <h2><a class="toc-backref" href="#toc-entry-6">Credits</a></h2>
445
450
  <div class="section" id="authors">
446
- <h2><a class="toc-backref" href="#toc-entry-7">Authors</a></h2>
451
+ <h3><a class="toc-backref" href="#toc-entry-7">Authors</a></h3>
447
452
  <ul class="simple">
448
453
  <li>Camptocamp</li>
449
454
  <li>BCIM</li>
@@ -451,7 +456,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
451
456
  </ul>
452
457
  </div>
453
458
  <div class="section" id="contributors">
454
- <h2><a class="toc-backref" href="#toc-entry-8">Contributors</a></h2>
459
+ <h3><a class="toc-backref" href="#toc-entry-8">Contributors</a></h3>
455
460
  <ul class="simple">
456
461
  <li>Guewen Baconnier &lt;<a class="reference external" href="mailto:guewen.baconnier&#64;camptocamp.com">guewen.baconnier&#64;camptocamp.com</a>&gt;</li>
457
462
  <li>Simone Orsi &lt;<a class="reference external" href="mailto:simahawk&#64;gmail.com">simahawk&#64;gmail.com</a>&gt;</li>
@@ -468,14 +473,14 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
468
473
  </ul>
469
474
  </div>
470
475
  <div class="section" id="design">
471
- <h2><a class="toc-backref" href="#toc-entry-9">Design</a></h2>
476
+ <h3><a class="toc-backref" href="#toc-entry-9">Design</a></h3>
472
477
  <ul class="simple">
473
478
  <li>Joël Grand-Guillaume &lt;<a class="reference external" href="mailto:joel.grandguillaume&#64;camptocamp.com">joel.grandguillaume&#64;camptocamp.com</a>&gt;</li>
474
479
  <li>Jacques-Etienne Baudoux &lt;<a class="reference external" href="mailto:je&#64;bcim.be">je&#64;bcim.be</a>&gt;</li>
475
480
  </ul>
476
481
  </div>
477
482
  <div class="section" id="other-credits">
478
- <h2><a class="toc-backref" href="#toc-entry-10">Other credits</a></h2>
483
+ <h3><a class="toc-backref" href="#toc-entry-10">Other credits</a></h3>
479
484
  <p><strong>Financial support</strong></p>
480
485
  <ul class="simple">
481
486
  <li>Cosanum</li>
@@ -484,7 +489,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
484
489
  </ul>
485
490
  </div>
486
491
  <div class="section" id="maintainers">
487
- <h2><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h2>
492
+ <h3><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h3>
488
493
  <p>This module is maintained by the OCA.</p>
489
494
  <a class="reference external image-reference" href="https://odoo-community.org">
490
495
  <img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -499,5 +504,6 @@ promote its widespread use.</p>
499
504
  </div>
500
505
  </div>
501
506
  </div>
507
+ </div>
502
508
  </body>
503
509
  </html>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-shopfloor
3
- Version: 16.0.2.8.0.2
3
+ Version: 16.0.2.10.0.2
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)
@@ -27,6 +27,10 @@ Requires-Dist: odoo-addon-stock-quant-package-product-packaging<16.1dev,>=16.0de
27
27
  Requires-Dist: odoo-addon-stock-storage-type<16.1dev,>=16.0dev
28
28
  Requires-Dist: odoo<16.1dev,>=16.0a
29
29
 
30
+ .. image:: https://odoo-community.org/readme-banner-image
31
+ :target: https://odoo-community.org/get-involved?utm_source=readme
32
+ :alt: Odoo Community Association
33
+
30
34
  =========
31
35
  Shopfloor
32
36
  =========
@@ -36,13 +40,13 @@ Shopfloor
36
40
  !! This file is generated by oca-gen-addon-readme !!
37
41
  !! changes will be overwritten. !!
38
42
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
39
- !! source digest: sha256:8f4a1f9cca9cb3a4830c65a6a9d8a65ec3334a34722525fe5da87e77b0e90de2
43
+ !! source digest: sha256:f6bf44c46907424c9adf6166901cdac6cda73038169d71fe37121d21ab72b2ea
40
44
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
41
45
 
42
46
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
43
47
  :target: https://odoo-community.org/page/development-status
44
48
  :alt: Beta
45
- .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
49
+ .. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
46
50
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
47
51
  :alt: License: AGPL-3
48
52
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwms-lightgray.png?logo=github
@@ -1,6 +1,6 @@
1
- odoo/addons/shopfloor/README.rst,sha256=4dwS710K--0oxWnnoWiiSUPYrTEKhWFz6D-hqnU8qlY,5318
1
+ odoo/addons/shopfloor/README.rst,sha256=0S60RgLckeHyurIG3uPgoJUZNN5RiQbQecsJ_O8iDCo,5483
2
2
  odoo/addons/shopfloor/__init__.py,sha256=ke3RmZ7XkX-lz4S8NHAxNIEJ5_Nvj5bjBAqD-W-q73c,91
3
- odoo/addons/shopfloor/__manifest__.py,sha256=DSkrf5jL_mBVtEal2YQ20b8XeFlDJQ45Asy7DeJBkrU,2245
3
+ odoo/addons/shopfloor/__manifest__.py,sha256=m37x2lUj-wnM5ZjMiRsgM9HQ0YhZcWvCPbeEsCkP0vg,2246
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
@@ -8,7 +8,7 @@ odoo/addons/shopfloor/actions/change_package_lot.py,sha256=-esK7FKHaXKGOwL8RON_y
8
8
  odoo/addons/shopfloor/actions/completion_info.py,sha256=Q_wlx8VJHOPFZbwGrxHBYa-gt04ZAXBsRBGh0aLuRrk,1483
9
9
  odoo/addons/shopfloor/actions/data.py,sha256=TF02p2ksynxxOLnkAeqZWCcJVFOhRUQS45O4l5p-oNw,12856
10
10
  odoo/addons/shopfloor/actions/data_detail.py,sha256=h7mAw5FxrGcXofhtgpEdXCSRvMXN3ZcsRZyUq2_OBHE,8743
11
- odoo/addons/shopfloor/actions/inventory.py,sha256=Slg1hcV-kMb1jWHHu0VmYvQ9C0uqXtUAwAmHJUTE1zo,5976
11
+ odoo/addons/shopfloor/actions/inventory.py,sha256=31-PXWahXetGKGXBfnPhp01W76AVuLqy7mEGC3_Ma4c,5986
12
12
  odoo/addons/shopfloor/actions/location_content_transfer_sorter.py,sha256=nR1iE-REz9OiKcKco8DBK3v_r6-zIjwsc9NZ08LgIEk,3109
13
13
  odoo/addons/shopfloor/actions/message.py,sha256=4GShWJEFLpaH8urdv097TlL7gGVENqOPPFH8G5iQ1qw,32943
14
14
  odoo/addons/shopfloor/actions/move_line_search.py,sha256=srvsSeLelsgO_hiRPwAkvMWYvlqEv3cgdPFK1v8ve4g,7827
@@ -48,7 +48,7 @@ odoo/addons/shopfloor/i18n/de.po,sha256=WM-9Snw36HBNemQ-IBufDQeoTpsEhszvi9xPeARj
48
48
  odoo/addons/shopfloor/i18n/es_AR.po,sha256=UNMrL-flfq08iZfrKhNL4LxsuZHz822Y-snRjuuPZNU,82475
49
49
  odoo/addons/shopfloor/i18n/it.po,sha256=WWx_JjJxYZHFmsBrDUHikN4zuqo7hYP1CPJnV69_J2A,84433
50
50
  odoo/addons/shopfloor/i18n/pt_BR.po,sha256=GK4yxA42sF-RHzqmVUocNCfUPVifOpGS7BuPt6BbnTY,59867
51
- odoo/addons/shopfloor/i18n/shopfloor.pot,sha256=6lDMtrB7rcreMBrIyUtbZbLt2Cm00SWlrWxIsJpJcGU,59857
51
+ odoo/addons/shopfloor/i18n/shopfloor.pot,sha256=qpgTJ_4GYH4JQryb9dH30zoNqdKymzy53DT-TNNw7Fw,60013
52
52
  odoo/addons/shopfloor/migrations/16.0.2.0.0/post-migration.py,sha256=k-3UqvyLY__Me7RZWeM3BVxmE7D_9rCPcRNlKeKKcPI,1273
53
53
  odoo/addons/shopfloor/migrations/16.0.2.4.2/post-init_search_move_line_options.py,sha256=OfsDBUUEKtWQOv9pU86edeFlnT2YiPli4PMpv74Q8IY,1176
54
54
  odoo/addons/shopfloor/migrations/16.0.2.4.2/post-migration.py,sha256=wU-NTy1RLF6iSndiH6jzzIHIlPfX1DBUeB94QpB7TU4,909
@@ -60,7 +60,7 @@ odoo/addons/shopfloor/models/stock_location.py,sha256=wrLZ_-yjLB-1zWevWtqNdk8WMd
60
60
  odoo/addons/shopfloor/models/stock_move.py,sha256=1G_HyWY6xHwybBbR92IKS1euqnUHeMP91VOCdoE-asI,4940
61
61
  odoo/addons/shopfloor/models/stock_move_line.py,sha256=uYZJZdhf-X1HHHRYfWf_oygkDNrzNgP0TIG5TXJxSAY,13360
62
62
  odoo/addons/shopfloor/models/stock_package_level.py,sha256=hXq9liDMmMDtWjeuMhhtAv0MjBvANk67-bo_XKkgJ1w,2152
63
- odoo/addons/shopfloor/models/stock_picking.py,sha256=MPDdPQqGi4KjSS6SBsfCxJi3MRi_wg05JitF6uP_8PY,5418
63
+ odoo/addons/shopfloor/models/stock_picking.py,sha256=d43v3KaVRG78tKZ_vzSPGpqWeEyoMHW2p62xdULMIDU,5462
64
64
  odoo/addons/shopfloor/models/stock_picking_batch.py,sha256=OTjeRqFlUeA7vuaGH6q-oy2z_lKPy4HUveSz5FlX1Ws,1466
65
65
  odoo/addons/shopfloor/models/stock_picking_type.py,sha256=qn_wSGdSDvkHigO9VOZ819RfWj4MDjSYnlDPXV2huc0,935
66
66
  odoo/addons/shopfloor/models/stock_quant.py,sha256=31P67Rkq1MAlwOfDmvKhftBbMqqohPerh4NlXGrFaWg,1457
@@ -85,7 +85,7 @@ odoo/addons/shopfloor/services/zone_picking.py,sha256=9GFw2AKBFFci8Erb8UyTAYuCI9
85
85
  odoo/addons/shopfloor/services/forms/__init__.py,sha256=nxwJdKX47hb56ERf4Qb3UE5dkdsHCbkaXMAXs4XMAd8,27
86
86
  odoo/addons/shopfloor/services/forms/picking_form.py,sha256=F15G5yw78Pd1WgPjMz00-K1JyGaTdfdvVYzG4Dubpqk,2626
87
87
  odoo/addons/shopfloor/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
88
- odoo/addons/shopfloor/static/description/index.html,sha256=Tc0nxbc-qTP-kLY7ylnffIf2DfQ3y27tPGwZNmvea5s,17547
88
+ odoo/addons/shopfloor/static/description/index.html,sha256=SKCFZQLRUB_eBy8pk6SitD328yEfWVGqNRX5Cm4iB-Q,17775
89
89
  odoo/addons/shopfloor/tests/__init__.py,sha256=4WHuLVjOX_lndDJyuyGcreNckArFJL2HA5PPFlhT6FM,3962
90
90
  odoo/addons/shopfloor/tests/common.py,sha256=nU-1CYbAi2hoI2jFIcw6udgl1ave_IGJciyOZ9DeiAE,11610
91
91
  odoo/addons/shopfloor/tests/models.py,sha256=PWNPC6DgFMbrarojSxUqwycnBdePX-4Q5Z0rn1WwQqY,940
@@ -187,7 +187,7 @@ odoo/addons/shopfloor/views/shopfloor_menu.xml,sha256=rKXjj0Jk8gjda1y1B6d1_s3sn0
187
187
  odoo/addons/shopfloor/views/stock_location.xml,sha256=d7iqbOQZbb5YPSdAXlQ6spcj8dUvQ37DpEGuaLX5B1M,829
188
188
  odoo/addons/shopfloor/views/stock_move_line.xml,sha256=tn3pV67aRoYmn3qkm3aSgdYArY-z9SIrl_4fpJFy3Jo,1984
189
189
  odoo/addons/shopfloor/views/stock_picking_type.xml,sha256=Ckn2835hO4HtuZQX9x3382C4gs789fb94Cx0444mBkc,800
190
- odoo_addon_shopfloor-16.0.2.8.0.2.dist-info/METADATA,sha256=ucaIeeFonCSvkoM-YLXExQfR54fw5kahhIGofbQnUKI,6763
191
- odoo_addon_shopfloor-16.0.2.8.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
192
- odoo_addon_shopfloor-16.0.2.8.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
193
- odoo_addon_shopfloor-16.0.2.8.0.2.dist-info/RECORD,,
190
+ odoo_addon_shopfloor-16.0.2.10.0.2.dist-info/METADATA,sha256=vbr0TiA7vxIdG8zKXOw-SULPTtgPpLlt9TcSG-cAcQQ,6929
191
+ odoo_addon_shopfloor-16.0.2.10.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
192
+ odoo_addon_shopfloor-16.0.2.10.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
193
+ odoo_addon_shopfloor-16.0.2.10.0.2.dist-info/RECORD,,