-
-
Notifications
You must be signed in to change notification settings - Fork 126
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][ADD] shipment_advice_planner #88
Conversation
84f8ca8
to
b1480f2
Compare
cc/ @lmignon |
@sbejaoui Thanks for this. Don't forget to put your dependencies links in your PR description to help reviewers. |
b1480f2
to
2792a23
Compare
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.
A little comment but LGTM (Code + Functional tests)
7e1c4fa
to
5b11c92
Compare
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 + Functional)
5b11c92
to
2970f90
Compare
@lmignon , please check my last commit. It adds warehouse and dock to the planner with some data consistency checks. |
0ccee46
to
1b5e1e6
Compare
@rousseldenis @jbaudoux This one is ready for review and then merge 👼 |
ae2bfc0
to
0239264
Compare
@sbejaoui Could you look at comments ? |
4205437
to
46a04c9
Compare
Great contribution! @moduon testit |
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.
Thanks for the fixes. I will test it again.
Can you include me for the solution design?
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, not retested yet
0f0186c
to
2e237b6
Compare
This module is used to plan ready transfers in shipment advices. As this is the base module, it provides only a simple: Transfers are grouped to have a single shipment advice by warehouse. [IMP] shipment_advice_planner: Add init script [FIX] - shipment_advice_planner: fix typo [FIX] - group pickings to plan by picking type instead of the warehouse [IMP] - shipment_advice_planner: add search for can_be_planned_in_shipment_advice field [IMP] shipment_advice_planner: shipment advice is created confirmed and arrival and departure date [IMP] - shipment_advice_planner: add unit tests [IMP] shipment_advice_planner: add author & maintainer Co-authored-by: Jacques-Etienne Baudoux <[email protected]> [IMP] add depends_context to _compute_picking_to_plan_ids
2e237b6
to
7d36e2d
Compare
@rousseldenis , |
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.
LG, 1 minor remark and... the commit msg should not contain the odoo version
@@ -0,0 +1,3 @@ | |||
from . import common |
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.
no need to import common
in any test suite
@@ -0,0 +1,2 @@ | |||
* Souheil Bejaoui <[email protected]> | |||
* Laurent Mignon <[email protected]> |
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.
JE to be added here?
This module is used to plan ready transfers in shipment advices.
As this is the base module, it provides only a simple
planning mode. Transfers are grouped to have a single shipment advice by warehouse.