mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
13 lines
353 B
Python
13 lines
353 B
Python
from odoo import api, fields, models
|
|
|
|
|
|
class GamificationBadge(models.Model):
|
|
_inherit = 'gamification.badge'
|
|
|
|
payroll_type = fields.Selection([
|
|
('', 'None'),
|
|
('fixed', 'Fixed'),
|
|
('period', 'Granted in Pay Period'),
|
|
], string='Payroll Type')
|
|
payroll_amount = fields.Float(string='Payroll Amount', digits=(10, 4))
|