Skip to content

Commit

Permalink
[ADD] stock_available_exclude_location: add new module
Browse files Browse the repository at this point in the history
  • Loading branch information
WesleyOliveira98 committed Sep 9, 2024
1 parent ffbfd6f commit af5cbf4
Show file tree
Hide file tree
Showing 14 changed files with 651 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/stock_available_exclude_location/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
93 changes: 93 additions & 0 deletions stock_available_exclude_location/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
================================
Stock Available Exclude Location
================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:2f16c2fabd3459801329b642fc18f7ab592c16293e7ae5f42e8ea9b4de67143e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png
:target: https://odoo-community.org/page/development-status
:alt: Alpha
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fstock--logistics--warehouse-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-warehouse/tree/14.0/stock_available_exclude_location
:alt: OCA/stock-logistics-warehouse
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-warehouse-14-0/stock-logistics-warehouse-14-0-stock_available_exclude_location
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/stock-logistics-warehouse&target_branch=14.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allow defining excluded locations for product availability.

.. IMPORTANT::
This is an alpha version, the data model and design can change at any time without warning.
Only for development or testing purpose, do not use in production.
`More details on development status <https://odoo-community.org/page/development-status>`_

**Table of contents**

.. contents::
:local:

Configuration
=============

Go to **Inventory** > **Configuration** > **Warehouses**.

- Open a warehouse or create a new one.
- Click on Technical Information notebook.
- In Locations, select the excluded locations for product availability in the warehouse.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-warehouse/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/stock-logistics-warehouse/issues/new?body=module:%20stock_available_exclude_location%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
~~~~~~~

* Escodoo

Contributors
~~~~~~~~~~~~

* `Escodoo <https://escodoo.com.br>`_:

* Marcel Savegnago <[email protected]>
* Wesley Oliveira <[email protected]>

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/stock-logistics-warehouse <https://github.com/OCA/stock-logistics-warehouse/tree/14.0/stock_available_exclude_location>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions stock_available_exclude_location/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
17 changes: 17 additions & 0 deletions stock_available_exclude_location/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 - TODAY, Escodoo
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Stock Available Exclude Location",
"summary": """
Exclude locations for product available quantities""",
"version": "14.0.1.0.0",
"category": "Stock",
"license": "AGPL-3",
"author": "Escodoo,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/stock-logistics-warehouse",
"depends": ["stock_available_base_exclude_location", "stock_location_warehouse"],
"data": ["views/stock_warehouse.xml"],
"installable": True,
"development_status": "Alpha",
}
2 changes: 2 additions & 0 deletions stock_available_exclude_location/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import product_product
from . import stock_warehouse
47 changes: 47 additions & 0 deletions stock_available_exclude_location/models/product_product.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Copyright 2024 - TODAY, Wesley Oliveira <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import api, fields, models


class ProductProduct(models.Model):

_inherit = "product.product"

excluded_location_ids = fields.Many2many(
comodel_name="stock.location",
string="Locations to Exclude as Available",
compute="_compute_excluded_location_ids",
readonly=True,
default=None,
)

@api.depends()
def _compute_excluded_location_ids(self):
for product in self:
stock_quant = self.env["stock.quant"].search(
[
("product_id", "=", product.id),
("on_hand", "=", True),
]
)
if stock_quant:
location_ids = stock_quant.mapped(lambda x: x.location_id)
warehouse_ids = location_ids.mapped(lambda x: x.warehouse_id)
excluded_ids = warehouse_ids.mapped(
lambda x: x.stock_excluded_location_ids
)
if excluded_ids:
product.excluded_location_ids = excluded_ids

Check warning on line 35 in stock_available_exclude_location/models/product_product.py

View check run for this annotation

Codecov / codecov/patch

stock_available_exclude_location/models/product_product.py#L35

Added line #L35 was not covered by tests
else:
product.excluded_location_ids = None
else:
product.excluded_location_ids = None

def _compute_quantities_dict(
self, lot_id, owner_id, package_id, from_date=False, to_date=False
):
context = dict(self._context, excluded_location_ids=self.excluded_location_ids)
return super(
ProductProduct, self.with_context(context)
)._compute_quantities_dict(lot_id, owner_id, package_id, from_date, to_date)
10 changes: 10 additions & 0 deletions stock_available_exclude_location/models/stock_warehouse.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2024 - TODAY, Wesley Oliveira <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import models


class Warehouse(models.Model):

_name = "stock.warehouse"
_inherit = ["stock.warehouse", "stock.exclude.location.mixin"]
5 changes: 5 additions & 0 deletions stock_available_exclude_location/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Go to **Inventory** > **Configuration** > **Warehouses**.

- Open a warehouse or create a new one.
- Click on Technical Information notebook.
- In Locations, select the excluded locations for product availability in the warehouse.
4 changes: 4 additions & 0 deletions stock_available_exclude_location/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* `Escodoo <https://escodoo.com.br>`_:

* Marcel Savegnago <[email protected]>
* Wesley Oliveira <[email protected]>
1 change: 1 addition & 0 deletions stock_available_exclude_location/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module allow defining excluded locations for product availability.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit af5cbf4

Please sign in to comment.