odoo/ext/clarico-addons/clarico_expertise/models/website_expertise.py

8 lines
232 B
Python
Executable File

from odoo import models,fields
class ModumExpertise(models.Model):
_name = "website.expertise"
name=fields.Char("Name")
expertise=fields.Integer("Expertise")
company_id=fields.Many2one('res.company', 'Company')