mirror of
https://gitlab.com/hibou-io/hibou-odoo/suite.git
synced 2025-01-20 12:37:31 +02:00
Move some concerns to other modules, refactor new API to make it possible to use timesheets and attendances together. Now possible to add attendances by hand or import via smart button and 'recompute' attendances.
17 lines
560 B
XML
Executable File
17 lines
560 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="hr_contract_form_inherit" model="ir.ui.view">
|
|
<field name="name">hr.contract.form.inherit</field>
|
|
<field name="model">hr.contract</field>
|
|
<field name="priority">20</field>
|
|
<field name="inherit_id" ref="hr_contract.hr_contract_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='wage_type']" position="after">
|
|
<field name="paid_hourly_attendance"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|