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.
38 lines
1.5 KiB
38 lines
1.5 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2012 - Now Savoir-faire Linux <https://www.savoirfairelinux.com/>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
|
|
<odoo>
|
|
<!-- KPI history -->
|
|
<record id="view_kpi_history_tree" model="ir.ui.view">
|
|
<field name="name">kpi.history.tree</field>
|
|
<field name="model">kpi.history</field>
|
|
<field name="arch" type="xml">
|
|
<tree string="KPI History">
|
|
<field name="name"/>
|
|
<field name="date"/>
|
|
<field name="value"/>
|
|
<field name="color" widget="color"/>
|
|
<field name="company_id" groups="base.group_multi_company"/>
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
<record id="view_kpi_history_form" model="ir.ui.view">
|
|
<field name="name">kpi.history.form</field>
|
|
<field name="model">kpi.history</field>
|
|
<field name="arch" type="xml">
|
|
<form string="KPI History">
|
|
<sheet>
|
|
<group col="4" colspan="4">
|
|
<field name="kpi_id"/>
|
|
<field name="name"/>
|
|
<field name="date"/>
|
|
<field name="value"/>
|
|
<field name="color" widget="color"/>
|
|
<field name="company_id" groups="base.group_multi_company"/>
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
</odoo>
|