Skip to content

Commit b261225

Browse files
rousseldenislmignon
authored andcommitted
[16.0][MIG] shopfloor_full_location_reservation
1 parent 14d1617 commit b261225

5 files changed

Lines changed: 16 additions & 13 deletions

File tree

shopfloor_full_location_reservation/README.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Shopfloor full location reservation
77
!! This file is generated by oca-gen-addon-readme !!
88
!! changes will be overwritten. !!
99
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:35d8955934ffa87167ab48b3e318cc821dd786633e011e6e5a0e7ca6bd190b21
10+
!! source digest: sha256:3307576cc4eec247d9fa4544c58c07e3a3f1d086d7c2d96b0488abba42cdfd66
1111
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1212
1313
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -17,13 +17,13 @@ Shopfloor full location reservation
1717
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1818
:alt: License: AGPL-3
1919
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fwms-lightgray.png?logo=github
20-
:target: https://github.com/OCA/wms/tree/14.0/shopfloor_full_location_reservation
20+
:target: https://github.com/OCA/wms/tree/16.0/shopfloor_full_location_reservation
2121
:alt: OCA/wms
2222
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23-
:target: https://translation.odoo-community.org/projects/wms-14-0/wms-14-0-shopfloor_full_location_reservation
23+
:target: https://translation.odoo-community.org/projects/wms-16-0/wms-16-0-shopfloor_full_location_reservation
2424
:alt: Translate me on Weblate
2525
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26-
:target: https://runboat.odoo-community.org/builds?repo=OCA/wms&target_branch=14.0
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/wms&target_branch=16.0
2727
:alt: Try me on Runboat
2828

2929
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -41,7 +41,7 @@ Bug Tracker
4141
Bugs are tracked on `GitHub Issues <https://github.com/OCA/wms/issues>`_.
4242
In case of trouble, please check there if your issue has already been reported.
4343
If you spotted it first, help us to smash it by providing a detailed and welcomed
44-
`feedback <https://github.com/OCA/wms/issues/new?body=module:%20shopfloor_full_location_reservation%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
44+
`feedback <https://github.com/OCA/wms/issues/new?body=module:%20shopfloor_full_location_reservation%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
4545

4646
Do not contact contributors directly about support or help with technical issues.
4747

@@ -58,6 +58,7 @@ Contributors
5858

5959
* Michael Tietz (MT Software) <mtietz@mt-software.de>
6060
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
61+
* Denis Roussel <denis.roussel@acsone.eu>
6162

6263
Maintainers
6364
~~~~~~~~~~~
@@ -80,6 +81,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
8081

8182
|maintainer-mt-software-de|
8283

83-
This module is part of the `OCA/wms <https://github.com/OCA/wms/tree/14.0/shopfloor_full_location_reservation>`_ project on GitHub.
84+
This module is part of the `OCA/wms <https://github.com/OCA/wms/tree/16.0/shopfloor_full_location_reservation>`_ project on GitHub.
8485

8586
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

shopfloor_full_location_reservation/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"author": "MT Software, Odoo Community Association (OCA)",
1010
"website": "https://github.com/OCA/wms",
1111
"category": "Warehouse Management",
12-
"version": "14.0.1.0.0",
12+
"version": "16.0.1.0.0",
1313
"license": "AGPL-3",
1414
"depends": [
1515
"shopfloor",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
* Michael Tietz (MT Software) <mtietz@mt-software.de>
22
* Jacques-Etienne Baudoux (BCIM) <je@bcim.be>
3+
* Denis Roussel <denis.roussel@acsone.eu>

shopfloor_full_location_reservation/services/zone_picking.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def _handle_complete_mix_pack(self, package):
2020
return super()._handle_complete_mix_pack(package)
2121

2222
def _set_destination_location(
23-
self, move_line, package, quantity, confirmation, location
23+
self, move_line, package, quantity, confirmation, location, barcode
2424
):
2525
if self._handle_full_location_package_reservation(package):
2626
move_line._full_location_reservation(package_only=True)
@@ -37,5 +37,5 @@ def _set_destination_location(
3737
]
3838
).result_package_id = package
3939
return super()._set_destination_location(
40-
move_line, package, quantity, confirmation, location
40+
self, move_line, package, quantity, confirmation, location, barcode
4141
)

shopfloor_full_location_reservation/static/description/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,9 +367,9 @@ <h1 class="title">Shopfloor full location reservation</h1>
367367
!! This file is generated by oca-gen-addon-readme !!
368368
!! changes will be overwritten. !!
369369
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370-
!! source digest: sha256:35d8955934ffa87167ab48b3e318cc821dd786633e011e6e5a0e7ca6bd190b21
370+
!! source digest: sha256:3307576cc4eec247d9fa4544c58c07e3a3f1d086d7c2d96b0488abba42cdfd66
371371
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
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/14.0/shopfloor_full_location_reservation"><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-14-0/wms-14-0-shopfloor_full_location_reservation"><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=14.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
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_full_location_reservation"><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_full_location_reservation"><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>
373373
<p>Adds a configuration to the shopfloor scenario which allows to trigger the stock full location reservation</p>
374374
<p><strong>Table of contents</strong></p>
375375
<div class="contents local topic" id="contents">
@@ -388,7 +388,7 @@ <h1><a class="toc-backref" href="#toc-entry-1">Bug Tracker</a></h1>
388388
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/wms/issues">GitHub Issues</a>.
389389
In case of trouble, please check there if your issue has already been reported.
390390
If you spotted it first, help us to smash it by providing a detailed and welcomed
391-
<a class="reference external" href="https://github.com/OCA/wms/issues/new?body=module:%20shopfloor_full_location_reservation%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
391+
<a class="reference external" href="https://github.com/OCA/wms/issues/new?body=module:%20shopfloor_full_location_reservation%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
392392
<p>Do not contact contributors directly about support or help with technical issues.</p>
393393
</div>
394394
<div class="section" id="credits">
@@ -404,6 +404,7 @@ <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
404404
<ul class="simple">
405405
<li>Michael Tietz (MT Software) &lt;<a class="reference external" href="mailto:mtietz&#64;mt-software.de">mtietz&#64;mt-software.de</a>&gt;</li>
406406
<li>Jacques-Etienne Baudoux (BCIM) &lt;<a class="reference external" href="mailto:je&#64;bcim.be">je&#64;bcim.be</a>&gt;</li>
407+
<li>Denis Roussel &lt;<a class="reference external" href="mailto:denis.roussel&#64;acsone.eu">denis.roussel&#64;acsone.eu</a>&gt;</li>
407408
</ul>
408409
</div>
409410
<div class="section" id="maintainers">
@@ -415,7 +416,7 @@ <h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
415416
promote its widespread use.</p>
416417
<p>Current <a class="reference external" href="https://odoo-community.org/page/maintainer-role">maintainer</a>:</p>
417418
<p><a class="reference external image-reference" href="https://github.com/mt-software-de"><img alt="mt-software-de" src="https://github.com/mt-software-de.png?size=40px" /></a></p>
418-
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/wms/tree/14.0/shopfloor_full_location_reservation">OCA/wms</a> project on GitHub.</p>
419+
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/wms/tree/16.0/shopfloor_full_location_reservation">OCA/wms</a> project on GitHub.</p>
419420
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
420421
</div>
421422
</div>

0 commit comments

Comments
 (0)