Sélectionner une révision Git
adefpat_project_justif_zip_wizard.py
ur_financial_system.py 452 o
# © 2019 Le Filament (<http://www.le-filament.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields
class ScopTimesheetCode(models.Model):
_name = "ur.financial.system"
_description = "Dispositif financier UR"
name = fields.Char('Nom')
company_id = fields.Many2one(
comodel_name='res.company',
string='UR',
default=lambda self: self.env.user.company_id)