Odooers论坛

欢迎!

该社区面向专业人士和我们产品和服务的爱好者。
分享和讨论最好的内容和新的营销理念,建立您的专业形象,一起成为更好的营销人员。


0

How is closest location defined? When this is the removal strategy on the Product Category?

形象
odoo
形象
丢弃
1 答案
0
形象
odoo
最佳答案

It is best explained by the commit that changed the code:

https://github.com/odoo/odoo/commit/fe344c0ad673c9eb5885257476347a5bde62ad93

Closest location picks items in the 'smallest/shortest' location (in alphabetical
order), so it assumes the locations are ordered alphabetically
according to how close they are to the ground.
Assume we have the following stock :
 - WH/Stock/Shelf 2
 - WH/Stock
 - WH/Stock/Shelf 1
Quants would be looked at in the following order : 1. WH/Stock (due to shortest name for the same stock) 2. WH/Stock/Shelf 1 (due to alphabetical order) 3. WH/Stock/Shelf 2


形象
丢弃