-
-
Notifications
You must be signed in to change notification settings - Fork 268
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
[17.0][FIX] product_variant_sale_price: edit Sales Price #363
Conversation
/ocabot merge |
Hi @gabriel-grinspan. Your command failed:
Ocabot commands
More information
|
/ocabot merge nobump |
Sorry @gabriel-grinspan you are not allowed to merge. To do so you must either have push permissions on the repository, or be a declared maintainer of all modified addons. If you wish to adopt an addon and become it's maintainer, open a pull request to add your GitHub login to the |
@HaraldPanten |
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.
Follow commit message guidelines: https://github.com/OCA/odoo-community.org/blob/master/website/Contribution/CONTRIBUTING.rst#commit-message
@@ -8,7 +8,7 @@ | |||
"version": "17.0.1.0.0", | |||
"category": "Product Management", | |||
"website": "https://github.com/OCA/product-variant", | |||
"author": "Tecnativa, " "Odoo Community Association (OCA)", | |||
"author": "Tecnativa, Rooteam, " "Odoo Community Association (OCA)", |
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.
This change doesn't qualify for co-authorship, so remove it.
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.
Do I get automatically added as a contributor, or do I have to manually update the README?
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.
The commit attribution is already in GitHub, but for being explicitly in the README file, you have to add yourself in https://github.com/OCA/product-variant/blob/17.0/product_variant_sale_price/readme/CONTRIBUTORS.md and execute pre-commit
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.
Do I merge as is for this time?
2eaed52
to
33358df
Compare
@pedrobaeza |
@pedrobaeza |
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.
OK, let's fast-track as very clear:
/ocabot merge minor
On my way to merge this fine PR! |
Congratulations, your PR was merged at 008ef4f. Thanks a lot for contributing to OCA. ❤️ |
There is an issue in 17.0 where the Sales Price field is not editable in the quick view page found by navigating to variants from a parent product page. This module makes it such that the field is separated between products and variants. It should be easy to modify this field without having to navigate to the variants list page and search.
I believe this worked in previous versions, as the code seems to indicate there was a purpose for clearing
attrs
but in Odoo 17, Odoo removed that attribute and replaced it with options. As it is, options has nothing to do withreadonly
in this case.