mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Initial commit of hr_payroll_gamification for 11.0
This commit is contained in:
11
hr_payroll_gamification/models/gamification.py
Normal file
11
hr_payroll_gamification/models/gamification.py
Normal file
@@ -0,0 +1,11 @@
|
||||
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))
|
||||
Reference in New Issue
Block a user