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.
14 lines
594 B
14 lines
594 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited form view of hr.employee in order to add new field-->
|
|
<record id="view_employee_form" model="ir.ui.view">
|
|
<field name="name">hr.employee.view.form.inherit.hr.hourly.payslip</field>
|
|
<field name="model">hr.employee</field>
|
|
<field name="inherit_id" ref="hr.view_employee_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='application_group']" position="inside">
|
|
<field name="hourly_payslip"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|