mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
14 lines
419 B
Python
Executable File
14 lines
419 B
Python
Executable File
from odoo import models, fields, api
|
|
|
|
|
|
class USMNHrContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
mn_w4mn_allowances = fields.Integer(string="MN Allowances")
|
|
mn_w4mn_additional_wh = fields.Float(string="MN Additional Withholding")
|
|
mn_w4mn_filing_status = fields.Selection([
|
|
('exempt', 'Exempt'),
|
|
('single', 'Single'),
|
|
('married', 'Married'),
|
|
], string='MN Filing Status')
|