Skip to content

Commit

Permalink
[IMP] stock_product_variant_mto: pre-commit auto fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chaule97 committed Jan 2, 2025
1 parent 2f402c7 commit bee6c75
Show file tree
Hide file tree
Showing 14 changed files with 603 additions and 55 deletions.
91 changes: 91 additions & 0 deletions stock_product_variant_mto/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
=========================
Stock Product Variant MTO
=========================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:19127c85672968523ba9dac247eafabed27aaff202e5e8cc20d87b1f6ee204c6
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/stock-logistics-workflow/tree/18.0/stock_product_variant_mto
:alt: OCA/stock-logistics-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/stock-logistics-workflow-18-0/stock-logistics-workflow-18-0-stock_product_variant_mto
: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-workflow&target_branch=18.0
:alt: Try me on Runboat

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

This module allows to define if a product variant can use the Make To
Order route without any dependency on its template routes settings.

.. 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:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/stock-logistics-workflow/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-workflow/issues/new?body=module:%20stock_product_variant_mto%0Aversion:%2018.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
-------

* Camptocamp SA

Contributors
------------

- Matthieu Méquignon <matthieu.mequignon@camptocamp.com>
- Akim Juillerat <akim.juillerat@camptocamp.com>

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.

.. |maintainer-mmequignon| image:: https://github.com/mmequignon.png?size=40px
:target: https://github.com/mmequignon
:alt: mmequignon

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-mmequignon|

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

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 1 addition & 1 deletion stock_product_variant_mto/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"version": "14.0.1.0.0",
"development_status": "Alpha",
"category": "Inventory",
"website": "https://github.com/OCA/stock-workflow",
"website": "https://github.com/OCA/stock-logistics-workflow",
"author": "Camptocamp SA, Odoo Community Association (OCA)",
"maintainers": ["mmequignon"],
"license": "AGPL-3",
Expand Down
5 changes: 3 additions & 2 deletions stock_product_variant_mto/models/product_product.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2023 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)

from odoo import api, models, fields
from odoo import api, fields, models

IS_MTO_HELP = """
Check or Uncheck this field to enable the Make To Order on the variant,
Expand All @@ -10,6 +10,7 @@
will reset this setting on its variants.
"""


class ProductProduct(models.Model):
_inherit = "product.product"

Expand All @@ -25,7 +26,7 @@ class ProductProduct(models.Model):
"stock.location.route",
compute="_compute_route_ids",
domain="[('product_selectable', '=', True)]",
store=False
store=False,
)

def _compute_is_mto(self):
Expand Down
31 changes: 23 additions & 8 deletions stock_product_variant_mto/models/product_template.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Copyright 2023 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)

from odoo import _, api, models, fields
from odoo import _, api, models


class ProductTemplate(models.Model):
_inherit = "product.template"

def write(self, values):
if not "route_ids" in values:
if "route_ids" not in values:
return super().write(values)
# As _compute_is_mto cannot use api.depends (or it would reset MTO
# route on variants as soon as there is a change on the template routes),
Expand All @@ -18,26 +19,40 @@ def write(self, values):
res = super().write(values)
templates_mto_after = self.filtered(lambda t: mto_route in t.route_ids)
templates_mto_added = template_not_mto_before & templates_mto_after
templates_mto_removed = (self - template_not_mto_before) & (self - templates_mto_after)
(templates_mto_added | templates_mto_removed).product_variant_ids._compute_is_mto()
templates_mto_removed = (self - template_not_mto_before) & (
self - templates_mto_after
)
(
templates_mto_added | templates_mto_removed
).product_variant_ids._compute_is_mto()
return res

@api.onchange("route_ids")
def onchange_route_ids(self):
mto_route = self.env.ref("stock.route_warehouse0_mto", raise_if_not_found=False)
if mto_route not in self._origin.route_ids and mto_route in self.route_ids._origin:
if (
mto_route not in self._origin.route_ids
and mto_route in self.route_ids._origin
):
# Return warning activating MTO route
return {
"warning": {
"title": _("Warning"),
"message": _("Activating MTO route will reset `Variant is MTO` setting on the variants.")
"message": _(
"Activating MTO route will reset `Variant is MTO` setting on the variants."
),
}
}
if mto_route in self._origin.route_ids and mto_route not in self.route_ids._origin:
if (
mto_route in self._origin.route_ids
and mto_route not in self.route_ids._origin
):
# Return warning deactivating MTO route
return {
"warning": {
"title": _("Warning"),
"message": _("Deactivating MTO route will reset `Variant is MTO` setting on the variants.")
"message": _(
"Deactivating MTO route will reset `Variant is MTO` setting on the variants."
),
}
}
3 changes: 3 additions & 0 deletions stock_product_variant_mto/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
2 changes: 2 additions & 0 deletions stock_product_variant_mto/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Matthieu Méquignon \<<matthieu.mequignon@camptocamp.com>\>
- Akim Juillerat \<<akim.juillerat@camptocamp.com>\>
2 changes: 0 additions & 2 deletions stock_product_variant_mto/readme/CONTRIBUTORS.rst

This file was deleted.

2 changes: 2 additions & 0 deletions stock_product_variant_mto/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module allows to define if a product variant can use the Make To
Order route without any dependency on its template routes settings.
3 changes: 0 additions & 3 deletions stock_product_variant_mto/readme/DESCRIPTION.rst

This file was deleted.

Loading

0 comments on commit bee6c75

Please sign in to comment.