mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Notably, there are no longer allowances in the Missouri Withholding tables, and the Federal Income Tax Withholding calculation is no longer a factor.
47 lines
1.9 KiB
XML
Executable File
47 lines
1.9 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- CONTRIBUTION REGISTERS -->
|
|
<record id="res_partner_modor_unemp" model="res.partner">
|
|
<field name="name">Missouri Department of Revenue - Unemployment Tax</field>
|
|
<field name="supplier">1</field>
|
|
<field eval="0" name="customer"/>
|
|
</record>
|
|
<record id="res_partner_modor_withhold" model="res.partner">
|
|
<field name="name">Missouri Department of Revenue - Income Tax Withholding</field>
|
|
<field name="supplier">1</field>
|
|
<field eval="0" name="customer"/>
|
|
</record>
|
|
<record id="contrib_register_modor_unemp" model="hr.contribution.register">
|
|
<field name="name">Missouri Unemployment</field>
|
|
<field name="note">Missouri Department of Revemie - Unemployment</field>
|
|
<field name="partner_id" ref="res_partner_modor_unemp"/>
|
|
</record>
|
|
<record id="contrib_register_modor_withhold" model="hr.contribution.register">
|
|
<field name="name">Missouri Income Tax Withholding</field>
|
|
<field name="note">Missouri Department of Revenue - Income Tax Withholding</field>
|
|
<field name="partner_id" ref="res_partner_modor_withhold"/>
|
|
</record>
|
|
|
|
|
|
<!-- HR SALARY RULE CATEGORIES-->
|
|
<record id="hr_payroll_mo_unemp_wages" model="hr.salary.rule.category">
|
|
<field name="name">Wage: US-MO Unemployment</field>
|
|
<field name="code">WAGE_US_MO_UNEMP</field>
|
|
</record>
|
|
|
|
<record id="hr_payroll_mo_unemp" model="hr.salary.rule.category">
|
|
<field name="name">ER: US-MO Unemployment</field>
|
|
<field name="code">ER_US_MO_UNEMP</field>
|
|
<field name="parent_id" ref="hr_payroll.COMP"/>
|
|
</record>
|
|
|
|
<record id="hr_payroll_mo_income_withhold" model="hr.salary.rule.category">
|
|
<field name="name">EE: US-MO Income Withholding</field>
|
|
<field name="code">EE_US_MO_INC_WITHHOLD</field>
|
|
<field name="parent_id" ref="hr_payroll.DED"/>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|