Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[14.0][ADD] stock_available_exclude_location: add new module #2153

Open
wants to merge 1 commit into
base: 14.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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** > **Settings**.

- Find the Products section.
- In Excluded Locations for Availability, select the excluded locations.
- The selected locations and his children will be excluded from product availability.

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
20 changes: 20 additions & 0 deletions stock_available_exclude_location/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 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_children",
],
"data": ["views/res_config_settings.xml"],
"installable": True,
"development_status": "Alpha",
}
3 changes: 3 additions & 0 deletions stock_available_exclude_location/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from . import product_product
from . import res_company
from . import res_config_settings
45 changes: 45 additions & 0 deletions stock_available_exclude_location/models/product_product.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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,
)

@api.depends()
def _compute_excluded_location_ids(self):
self.update({"excluded_location_ids": False})
stock_quants = self.env["stock.quant"].search(
[
("product_id", "in", self.ids),
("on_hand", "=", True),
]
)
for product in self:
product_quants = stock_quants.filtered(lambda x: x.product_id == product)
if product_quants:
company_ids = product_quants.mapped(lambda x: x.company_id)
excluded_ids = company_ids.mapped(
lambda x: x.stock_excluded_location_ids
)
if excluded_ids:
for excluded_location in excluded_ids:
excluded_ids |= excluded_location.children_ids
product.excluded_location_ids = excluded_ids

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/res_company.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 ResCompany(models.Model):

_name = "res.company"
_inherit = ["res.company", "stock.exclude.location.mixin"]
17 changes: 17 additions & 0 deletions stock_available_exclude_location/models/res_config_settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2024 - TODAY, Wesley Oliveira <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from odoo import fields, models


class ResConfigSettings(models.TransientModel):

_inherit = "res.config.settings"

stock_excluded_location_ids = fields.Many2many(
comodel_name="stock.location",
related="company_id.stock_excluded_location_ids",
string="Excluded Locations for Product Availability",
help="Fill in this field to exclude locations for product available quantities.",
readonly=False,
)
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** > **Settings**.

- Find the Products section.
- In Excluded Locations for Availability, select the excluded locations.
- The selected locations and his children will be excluded from product availability.
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
Loading