[ADD] hr_timesheet_work_entry: for Odoo 13

This commit is contained in:
Jared Kipe
2020-10-06 11:53:45 -07:00
parent 8f9ef7b259
commit a83cf2bfeb
11 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="work_input_timesheet" model="hr.work.entry.type">
<field name="name">Timesheet</field>
<field name="code">TS</field>
<field name="allow_timesheet" eval="True"/>
</record>
</odoo>

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="work_input_timesheet_internal" model="hr.work.entry.type">
<field name="name">Internal</field>
<field name="code">TS_INTERNAL</field>
<field name="allow_timesheet" eval="True"/>
</record>
</odoo>