mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
15 lines
380 B
Python
15 lines
380 B
Python
# Copyright 2020 ForgeFlow S.L.
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductProduct(models.Model):
|
|
_inherit = "product.product"
|
|
|
|
refurbish_product_id = fields.Many2one(
|
|
comodel_name="product.product",
|
|
string="Refurbished Product",
|
|
domain="[('type', '=', 'product')]",
|
|
)
|