-
-
Notifications
You must be signed in to change notification settings - Fork 726
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
[WMS][12.0] Add stock_putaway_abc - alpha version #699
Conversation
Thanks for the work. I think either I've not understood something or we didn't understood each other. What I want to do.. Location structure:
Product put away:
Expected result:
I'm not sure how to achieve this with the current module. Should I merge put away 1 and 2 at stock level and create put away 3 for FBG ? How can I ask in the put away 1 that product should go to HRL then ? Thanks for the headline, may be I'm just tired ;) |
It is not needed since find_abc_location is already called in _get_putaway_strategy_abc
This module implements ABC chaotic storage putaways.
Instead of defining putaway with a fixed location for product or product
category, this module allows to define an ABC preference for product or product
category on the product putaway form.
When such a putaway is applied, it will look recursively for a stock location
without children whose ABC classification matches the ABC priority of the
putaway.
e.g. for a putaway with B priority, it will look on children locations
for a B location. If no B location is found, it will look for a C. If no C
location is found, it will look for an A. Finally, if no location matches, it
will return the stock location where the putaway is applied.
Related to #691