mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-23 21:52:07 +02:00
9 lines
287 B
Python
9 lines
287 B
Python
# Copyright 2022 Tecnativa - Víctor Martínez
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProductTemplate(models.Model):
|
|
_inherit = "product.template"
|
|
|
|
maintenance_ok = fields.Boolean(string="Can be Maintenance")
|