Files
suite/hr_payroll_gamification/models/gamification.py
2022-01-06 18:23:27 +00:00

12 lines
308 B
Python

from odoo import api, fields, models
class GamificationBadge(models.Model):
_inherit = 'gamification.badge'
payroll_type = fields.Selection([
('', 'None'),
('fixed', 'Fixed'),
], string='Payroll Type')
payroll_amount = fields.Float(string='Payroll Amount', digits=(10, 4))