-
-
Notifications
You must be signed in to change notification settings - Fork 773
[18.0][MIG] product_variant_route_mto: Migration to 18.0 #1879
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
Closed
chaule97
wants to merge
6
commits into
OCA:18.0
from
chaule97:product-attribute-18.0-mig-product_variant_route_mto
Closed
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ca6c280
Add mto_route_product_variant
mmequignon f3c7277
Refactor mto_route_product_variant
grindtildeath 223a8ea
fixup! Refactor mto_route_product_variant
mmequignon ba09f39
[IMP] stock_product_variant_mto: pre-commit auto fixes
chaule97 98c610f
[MIG] stock_product_variant_mto: Migration to 18.0
chaule97 6ec3dde
[MIG] rename stock_product_variant_mto
chaule97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,8 @@ Stock Product Variant MTO | |
This module allows to define if a product variant can use the Make To | ||
Order route without any dependency on its template routes settings. | ||
|
||
The routes are moved from product template to product product. | ||
|
||
.. 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. | ||
|
@@ -64,6 +66,15 @@ Contributors | |
|
||
- Matthieu Méquignon <[email protected]> | ||
- Akim Juillerat <[email protected]> | ||
- Chau Le <[email protected]> | ||
|
||
Other credits | ||
------------- | ||
|
||
The development and migration of this module has been financially | ||
supported by: | ||
|
||
- Camptocamp | ||
|
||
Maintainers | ||
----------- | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,70 @@ | ||
# Copyright 2023 Camptocamp SA | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) | ||
|
||
from odoo import _, api, models | ||
from odoo import api, models | ||
|
||
|
||
class ProductTemplate(models.Model): | ||
_inherit = "product.template" | ||
|
||
def write(self, values): | ||
if "route_ids" not in values: | ||
mto_route = self.env.ref("stock.route_warehouse0_mto", raise_if_not_found=False) | ||
|
||
if "route_ids" not in values or not mto_route: | ||
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), | ||
# we need to check which template in self had MTO route activated | ||
# or deactivated to force the recomputation of is_mto on variants | ||
mto_route = self.env.ref("stock.route_warehouse0_mto") | ||
template_not_mto_before = self.filtered(lambda t: mto_route not in t.route_ids) | ||
|
||
templates_not_mto_before = self.filtered(lambda t: mto_route not in t.route_ids) | ||
|
||
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_not_mto_before & templates_mto_after | ||
templates_mto_removed = self - templates_mto_after - templates_not_mto_before | ||
|
||
( | ||
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 not mto_route: | ||
return | ||
|
||
origin_routes = ( | ||
self._origin.route_ids if self._origin else self.env["stock.route"] | ||
) | ||
current_routes = ( | ||
self.route_ids._origin if self.route_ids else self.env["stock.route"] | ||
) | ||
|
||
if mto_route not in origin_routes and mto_route in current_routes: | ||
# Return warning activating MTO route | ||
return { | ||
"warning": { | ||
"title": _("Warning"), | ||
"message": _( | ||
"Activating MTO route will reset `Variant is MTO` setting on the variants." | ||
"title": self.env._("Warning"), | ||
"message": self.env._( | ||
"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 origin_routes and mto_route not in current_routes: | ||
# Return warning deactivating MTO route | ||
return { | ||
"warning": { | ||
"title": _("Warning"), | ||
"message": _( | ||
"Deactivating MTO route will reset `Variant is MTO` setting on the variants." | ||
"title": self.env._("Warning"), | ||
"message": self.env._( | ||
"Deactivating MTO route will reset `Variant is MTO` " | ||
"setting on the variants." | ||
), | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- Matthieu Méquignon \<<[email protected]>\> | ||
- Akim Juillerat \<<[email protected]>\> | ||
- Chau Le \<<[email protected]>\> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
The development and migration of this module has been financially supported by: | ||
|
||
- Camptocamp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
This module allows to define if a product variant can use the Make To | ||
Order route without any dependency on its template routes settings. | ||
|
||
The routes are moved from product template to product product. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
value
before returning such a domain.If I search for something like
[('route_ids
,in
, buy_route.id)]` I would expect to get the products where the buy route is defined and the MTO being archived or not should not have any influence.