-
Notifications
You must be signed in to change notification settings - Fork 1
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
[4951][IMP] inventory_reporting #106
base: 16.0
Are you sure you want to change the base?
Conversation
b9a84e8
to
3816568
Compare
3816568
to
ea5f394
Compare
( | ||
"stock_move_id.location_id.is_subcontracting_location", | ||
"=", | ||
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.
Shouldn't it be like this:
( | |
"stock_move_id.location_id.is_subcontracting_location", | |
"=", | |
False, | |
), | |
"|", | |
"&", | |
("stock_move_id.location_dest_id.usage", "=", "production"), | |
( | |
"stock_move_id.location_id.is_subcontracting_location", | |
"=", | |
False, | |
), | |
"&", | |
("stock_move_id.location_id.usage", "=", "production"), | |
( | |
"stock_move_id.location_dest_id.is_subcontracting_location", | |
"=", | |
False, | |
), | |
("stock_move_id.picking_code", "in", ("internal", "outgoing")), | |
("stock_move_id.unbuild_id", "=", False), | |
("stock_move_id.origin_returned_move_id", "=", 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.
Code review (no functional test).
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.
LGTM: Test the module at copy-env. |
4951