-
-
Notifications
You must be signed in to change notification settings - Fork 668
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] stock_split_picking_dimension: Split picking based on dimension #1741
Open
lmignon
wants to merge
2
commits into
OCA:16.0
Choose a base branch
from
acsone:16.0-ADD-stock_split_picking_dimension-lmi
base: 16.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[16.0][ADD] stock_split_picking_dimension: Split picking based on dimension #1741
lmignon
wants to merge
2
commits into
OCA:16.0
from
acsone:16.0-ADD-stock_split_picking_dimension-lmi
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Oct 10, 2024
jbaudoux
reviewed
Nov 6, 2024
jbaudoux
reviewed
Nov 6, 2024
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.
What if no moves are kept ?
Shouldn't you always keep the first move as a start and then check if you can keep other moves according to the constrains?
rousseldenis
force-pushed
the
16.0-ADD-stock_split_picking_dimension-lmi
branch
from
December 11, 2024 13:22
d22c157
to
a9ae31f
Compare
rousseldenis
force-pushed
the
16.0-ADD-stock_split_picking_dimension-lmi
branch
from
December 11, 2024 13:24
a9ae31f
to
e6ba6cc
Compare
This module extends the functionality of the stock_split_picking module to allow the user to split the picking by dimensions to ensure that the contents of the picking to process will not exceed a certain volume and/or weight and/or number of lines.
rousseldenis
force-pushed
the
16.0-ADD-stock_split_picking_dimension-lmi
branch
from
December 11, 2024 13:25
e6ba6cc
to
a29c192
Compare
jbaudoux
reviewed
Dec 23, 2024
Comment on lines
+1
to
+5
When dealing with large quantities of products, it could be useful to be able to split | ||
the picking into multiple pickings to simplify the picking process and improve the | ||
efficiency of the warehouse. Some times, the picking you would like to process is too | ||
large to be picked in one go or too heavy to be carried by one person or contains too | ||
many different products to be picked in one go. |
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.
Suggested change
When dealing with large quantities of products, it could be useful to be able to split | |
the picking into multiple pickings to simplify the picking process and improve the | |
efficiency of the warehouse. Some times, the picking you would like to process is too | |
large to be picked in one go or too heavy to be carried by one person or contains too | |
many different products to be picked in one go. | |
When dealing with large quantities of products, it is useful to split | |
the picking into multiple pickings to reduce the time spent on a picking and eventually parallelize the work to improve the | |
efficiency of the warehouse. Sometimes the picking you would like to process is too | |
large to be picked in one go or too heavy to be carried by one person or contains too | |
many different products to be picked in one go. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This module extends the functionality of the stock_split_picking module to allow the user to split the picking by dimensions to ensure that the contents of the picking to process will not exceed a certain volume and/or weight and/or number of lines.