odoo/documentation#15824
Created by abumalick
Blocked
- Merge method
- Review
- CI
- label
- abumalick:patch-1
- head
- 0adc8d33160eda9e76c955c45e526d2000da058a
| odoo/documentation | |
|---|---|
| 19.0 | #15824 missing statuses missing r+ |
| saas-19.1 | |
| master |
Documentation contradiction about putaway rules for untracked products.
Table incorrectly states untracked products cannot use putaway rules.
Correct Statement
Both tracked and untracked goods can use putaway rules. Only services are excluded.
Code Evidence
| File | Line | Evidence |
|---|---|---|
| addons/stock/models/product_strategy.py | 48 | domain="[('type', '!=', 'service')]" - only services excluded |
| addons/stock/models/stock_location.py | 294-373 | _get_putaway_strategy() - no is_storable check |
| addons/stock/models/stock_move_line.py | 254-278 | _apply_putaway_strategy() - no tracking check |
| addons/stock/views/product_views.xml | 247, 371, 498 | invisible="type == 'service'" - button visible for all goods |