Skip to content
Snippets Groups Projects
cgscop_timesheet_code.py 578 B
Newer Older
  • Learn to ignore specific revisions
  • Benjamin's avatar
    Benjamin committed
    # © 2019 Le Filament (<http://www.le-filament.com>)
    # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
    
    
    from odoo import fields, models
    
    Benjamin's avatar
    Benjamin committed
    
    
    class ScopTimesheetCode(models.Model):
        _name = "cgscop.timesheet.code"
    
        _description = "Code activité National"
    
    Benjamin's avatar
    Benjamin committed
    
    
        name = fields.Char("Nom")
    
            [
                ("A", "Accompagnement"),
                ("D", "Développement"),
                ("F", "Formation"),
                ("R", "Révision"),
                ("Z", "Autre"),
            ],
            string="Domaine",
        )