-
-
Notifications
You must be signed in to change notification settings - Fork 150
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
Fix : Don't parse onchange resullt when returning False instead of nothing #61
Conversation
Hi @flotho! Thank you very much for this contribution. As the addon you are improving does not have a declared maintainer, I take the opportunity to mention that you can consider adopting it. To do so, please read the maintainer role description, and, if interested, create a pull request to add your GitHub login to the |
@pedrobaeza , how is it possible to propagate this on later release? |
Do you mean forward-port it? |
yes |
Manually cherry-picking the commit and proposing/committing (if you are maintainer) it, or try to use this tool: |
Hi @pedrobaeza Regarding runbot, what can I do? BTW, I'm waiting everything green to squash my commits ;-) |
Forcing rebuild can lead to get a proper one. I have launched it to see. |
Hi @pedrobaeza thanks for your help. sorry for those boring technical questions ;-) |
No need to launch again runbot. The logs are there: https://runbot2-3.odoo-community.org/runbot/static/build/3497520-61-5b4a29/logs/job_20_test_all.txt and these are the warnings:
|
Thanks @pedrobaeza , In the end, it looks like I already have this issue OCA/sale-workflow#1058 |
In case of onchange method calling method that retrun possible false values https://github.com/OCA/OCB/blob/10.0/addons/account/models/partner.py#L162 the syntax value[0] failed because of the structure fo the dictionnary : values = {'fiscal_position_id': False} This patch prevent to pass in those lines Update sale_order_onchange.py fix pylint/flake Delete rule_group from data to deal with OCA/sale-workflow#1058 Update ecommerce_data.xml (facepalm)
Hi there, everything looks green, could we merge ? |
any chance to be merged @pedrobaeza ? |
This requires at least 2 reviews from qualified people. |
(facepalm) you're right, holidays were too short! how can I identify maintainers of this repo? |
Check previous committers of the module, but it also helps and it's fair that you review other PRs in exchange. |
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.
LGTM (code review)
This PR has the |
/ocabot merge patch |
Hey, thanks for contributing! Proceeding to merge this for you. |
Congratulations, your PR was merged at 5733a43. Thanks a lot for contributing to OCA. ❤️ |
In case of onchange method calling method that retrun possible false values https://github.com/OCA/OCB/blob/10.0/addons/account/models/partner.py#L162 the syntax value[0] failed because of the structure fo the dictionnary :
values = {'fiscal_position_id': False}
This patch prevent to pass in those lines