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.
16 lines
664 B
16 lines
664 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- List view for Timesheet cost-->
|
|
<record id="timesheet_cost_view_list" model="ir.ui.view">
|
|
<field name="name">timesheet.cost.view.list</field>
|
|
<field name="model">timesheet.cost</field>
|
|
<field name="arch" type="xml">
|
|
<list string="timesheet_cost" create="0" import="false">
|
|
<field name="employee_id" column_invisible="True"/>
|
|
<field name="employee_name" column_invisible="True"/>
|
|
<field name="updated_date"/>
|
|
<field name="current_value"/>
|
|
</list>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|