-
-
Notifications
You must be signed in to change notification settings - Fork 785
[17.0][OU-IMP] delivery: Finish migration scripts #4885
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
Conversation
| JOIN product_product p ON sol.product_id = p.id | ||
| JOIN product_template pt ON p.product_tmpl_id = pt.id | ||
| WHERE pt.type IN ('product', 'consu') | ||
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) |
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.
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) | |
| AND NOT sol.is_delivery |
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.
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.
Oh sorry.
FYI Equivalent options:
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) | |
| AND NOT COALESCE(sol.is_delivery, FALSE) |
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) | |
| AND sol.is_delivery IS DIFFERENT FROM TRUE |
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) | |
| AND (sol.is_delivery IS NULL OR sol.is_delivery = FALSE) |
d4b9208 to
62995ab
Compare
|
/ocabot merge nobump |
|
What a great day to merge this nice PR. Let's do it! |
|
Congratulations, your PR was merged at 343966c. Thanks a lot for contributing to OCA. ❤️ |



Continuation of #4751
TT52315
@Tecnativa @pedrobaeza @MiquelRForgeFlow could you please review this?