mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
10 lines
322 B
Python
Executable File
10 lines
322 B
Python
Executable File
from odoo import models, fields, api
|
|
|
|
|
|
class USIAHrContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
ia_w4_allowances = fields.Integer(string='Iowa W-4 allowances')
|
|
ia_w4_additional_wh = fields.Float(string="Iowa W-4 Additional Withholding")
|
|
ia_w4_tax_exempt = fields.Boolean(string="Iowa W-4 Tax Exempt")
|