mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
14 lines
375 B
Python
14 lines
375 B
Python
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = "product.product"
|
|
|
|
product_product_putaway_ids = fields.One2many(
|
|
comodel_name="stock.fixed.putaway.strat",
|
|
inverse_name="product_id",
|
|
string="Product putaway strategies by product variant",
|
|
)
|