You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
537 B

# -*- coding: utf-8 -*-
from odoo import models, fields
from .res_partner import SCALES
class FfckStructureType(models.Model):
_name = "ffck.structure.type"
_description = "FFCK structure type"
name = fields.Char("Name", required=True)
short = fields.Char("Short", required=True, index=True)
scale = fields.Selection(SCALES, string="Scale", required=True)
active = fields.Boolean(string="Active", default=True)
parent_id = fields.Many2one(comodel_name="ffck.structure.type", string="Parent")