diff --git a/stock_move_location/README.rst b/stock_move_location/README.rst index e09907b40..3c8413234 100644 --- a/stock_move_location/README.rst +++ b/stock_move_location/README.rst @@ -7,7 +7,7 @@ Move Stock Location !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:f94651ddb9871ffc275f587042e4db32c13f087592f5766ea5b466264d47dcd1 + !! source digest: sha256:87949c0c9182db96bf0d8e687697a678c119a5949d366f137d03a681d2fd44cd !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png @@ -139,6 +139,9 @@ Contributors - Iryna Vyshnevska - Alexei Rivera - Abraham Anes +- Quartile + + - Aung Ko Ko Lin Maintainers ----------- diff --git a/stock_move_location/readme/CONTRIBUTORS.md b/stock_move_location/readme/CONTRIBUTORS.md index c1630a5e8..fece6339c 100644 --- a/stock_move_location/readme/CONTRIBUTORS.md +++ b/stock_move_location/readme/CONTRIBUTORS.md @@ -11,3 +11,5 @@ - Iryna Vyshnevska \<\> - Alexei Rivera \<\> - Abraham Anes \<\> +- Quartile \<\> + - Aung Ko Ko Lin diff --git a/stock_move_location/static/description/index.html b/stock_move_location/static/description/index.html index 3d4a10c50..35f74ab15 100644 --- a/stock_move_location/static/description/index.html +++ b/stock_move_location/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:f94651ddb9871ffc275f587042e4db32c13f087592f5766ea5b466264d47dcd1 +!! source digest: sha256:87949c0c9182db96bf0d8e687697a678c119a5949d366f137d03a681d2fd44cd !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/stock-logistics-warehouse Translate me on Weblate Try me on Runboat

This module allows to move entire location of products from one place to @@ -479,6 +479,10 @@ If you spotted it first, help us to smash it by providing a detailed and welcome

  • Iryna Vyshnevska <i.vyshnevska@mobilunity.com>
  • Alexei Rivera <arivera@archeti.com>
  • Abraham Anes <abraham@studio73.es>
  • +
  • Quartile <https://www.quartile.co>
      +
    • Aung Ko Ko Lin
    • +
    +
  • diff --git a/stock_move_location/wizard/stock_move_location.py b/stock_move_location/wizard/stock_move_location.py index f528de3e5..2fe212fb0 100644 --- a/stock_move_location/wizard/stock_move_location.py +++ b/stock_move_location/wizard/stock_move_location.py @@ -100,6 +100,7 @@ class StockMoveLocationWizard(models.TransientModel): "product_id": quant.product_id.id, "move_quantity": quant.quantity, "max_quantity": quant.quantity, + "reserved_quantity": quant.reserved_quantity, "origin_location_id": quant.location_id.id, "lot_id": quant.lot_id.id, "package_id": quant.package_id.id, @@ -128,6 +129,7 @@ class StockMoveLocationWizard(models.TransientModel): "product_id": quant.product_id.id, "move_quantity": qty, "max_quantity": qty, + "reserved_quantity": quant.reserved_quantity, "origin_location_id": quant.location_id.id, "lot_id": quant.lot_id.id, "package_id": quant.package_id.id,