mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
# Part of Hibou Suite Professional. See LICENSE_PROFESSIONAL file for full copyright and licensing details.
|
|
|
|
from .general import _state_applies, sit_wage
|
|
|
|
|
|
def ok_oklahoma_state_income_withholding(payslip, categories, worked_days, inputs):
|
|
"""
|
|
Returns SIT eligible wage and rate.
|
|
|
|
:return: result, result_rate (wage, percent)
|
|
"""
|
|
state_code = 'OK'
|
|
if not _state_applies(payslip, state_code):
|
|
return 0.0, 0.0
|
|
|
|
# Determine Wage
|
|
wage = sit_wage(payslip, categories)
|
|
if not wage:
|
|
return 0.0, 0.0
|
|
|
|
if payslip.dict.contract_id.us_payroll_config_value('state_income_tax_exempt'):
|
|
return 0.0, 0.0
|
|
|
|
filing_status = payslip.dict.contract_id.us_payroll_config_value('ok_w4_sit_filing_status')
|
|
if not filing_status:
|
|
return 0.0, 0.0
|
|
|
|
schedule_pay = payslip.dict.contract_id.schedule_pay
|
|
additional = payslip.dict.contract_id.us_payroll_config_value('state_income_tax_additional_withholding')
|
|
allowances = payslip.dict.contract_id.us_payroll_config_value('ok_w4_sit_allowances')
|
|
allowances_amt = payslip.dict.rule_parameter('us_ok_sit_allowances_rate')[schedule_pay]
|
|
tax_table = payslip.dict.rule_parameter('us_ok_sit_tax_rate')[filing_status].get(schedule_pay)
|
|
|
|
taxable_income = wage - (allowances * allowances_amt)
|
|
withholding = 0.0
|
|
last = 0.0
|
|
for row in tax_table:
|
|
amt, rate, flat_fee = row
|
|
if wage <= float(amt):
|
|
withholding = ((taxable_income - last) * (rate / 100)) + flat_fee
|
|
break
|
|
last = amt
|
|
|
|
withholding = max(withholding, 0.0)
|
|
withholding += additional
|
|
withholding = round(withholding)
|
|
return wage, -((withholding / wage) * 100.0)
|