- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 722
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
[16.0][FIX] product_packaging_level: Preserve sequence order #1518
Closed
+6
−7
Closed
Changes from all commits
Commits
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
[16.0][FIX] product_packaging_level: Preserve sequence order
commit 5d360e88330c20a0f332167f87cc76ba2323b91d
There are no files selected for viewing
This file contains 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 | ||||
---|---|---|---|---|---|---|
|
@@ -8,8 +8,8 @@ | |||||
|
||||||
class ProductPackaging(models.Model): | ||||||
_inherit = "product.packaging" | ||||||
_order = "product_id, level_sequence" | ||||||
|
||||||
sequence = fields.Integer(compute="_compute_sequence", store=True) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
packaging_level_id = fields.Many2one( | ||||||
"product.packaging.level", | ||||||
required=True, | ||||||
|
@@ -19,12 +19,6 @@ class ProductPackaging(models.Model): | |||||
barcode_required_for_gtin = fields.Boolean( | ||||||
readonly=True, compute="_compute_barcode_required_for_gtin" | ||||||
) | ||||||
level_sequence = fields.Integer( | ||||||
string="Level Sequence", | ||||||
related="packaging_level_id.sequence", | ||||||
readonly=True, | ||||||
store=True, | ||||||
) | ||||||
qty_per_level = fields.Char( | ||||||
compute="_compute_qty_per_level", string="Qty per package level" | ||||||
) | ||||||
|
@@ -61,6 +55,11 @@ def _check_one_packaging_level_per_product(self): | |||||
).format(product.display_name) | ||||||
) | ||||||
|
||||||
@api.depends("packaging_level_id") | ||||||
def _compute_sequence(self): | ||||||
for packaging in self: | ||||||
packaging.sequence = packaging.packaging_level_id.sequence | ||||||
|
||||||
@api.depends("packaging_level_id", "packaging_level_id.has_gtin", "qty") | ||||||
def _compute_barcode_required_for_gtin(self): | ||||||
for packaging in self: | ||||||
|
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.
why not related as the prev field?