mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-24 15:12:03 +02:00
14 lines
377 B
Python
14 lines
377 B
Python
# Copyright 2020 ForgeFlow S.L. (https://forgeflow.com)
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MaintenanceEquipment(models.Model):
|
|
_inherit = "maintenance.equipment"
|
|
|
|
status_id = fields.Many2one(
|
|
string="Status",
|
|
comodel_name="maintenance.equipment.status",
|
|
tracking=True,
|
|
)
|