mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
In stock Odoo, summing anything in payroll rules (but most importantly rule amounts and category amounts by code), the considered payslips are referenced from their `date_from` field. However in the USA, it is in fact the `date_to` that is more important (or accounting date). A Payslip made for 2019-12-20 to 2020-01-04 should in fact be considered a '2020' payslip, and thus the summation on other '2020' payslips must find it by considering payslips `date_to`.
33 lines
1.7 KiB
XML
33 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="res_config_settings_view_form_inherit" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="hr_payroll.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@data-key='hr_payroll']" position="inside">
|
|
<div class="row mt16 o_settings_container" id="hr_payroll_accountant">
|
|
<div class="col-lg-6 col-12 o_setting_box">
|
|
<div class="o_setting_right_pane">
|
|
<span class="o_form_label">Payslip Sum Behavior</span>
|
|
<div class="text-muted">
|
|
Customize the behavior of what payslips are eligible when summing over date ranges in rules.
|
|
Generally, "Date To" or "Accounting Date" would be preferred in the United States and anywhere
|
|
else where the ending date on the payslip is used to calculate wage bases.
|
|
</div>
|
|
<div class="content-group">
|
|
<div class="row mt16" id="mail_alias_domain">
|
|
<label for="payslip_sum_type" class="col-lg-3 o_light_label"/>
|
|
<field name="payslip_sum_type"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|