You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
517 B
12 lines
517 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo noupdate="1">
|
|
<!-- Salary rule Employee Bonus -->
|
|
<record id="hr_salary_rule_bonus" model="hr.salary.rule">
|
|
<field name="amount_select">code</field>
|
|
<field name="code">BONUS</field>
|
|
<field name="category_id" ref="hr_payroll_community.ALW"/>
|
|
<field name="name">Employee Bonus</field>
|
|
<field name="sequence" eval="59"/>
|
|
<field name="amount_python_compute">result = inputs.BONUS.amount</field>
|
|
</record>
|
|
</odoo>
|
|
|