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.
17 lines
677 B
17 lines
677 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherit gamification.goal_list_view and add the field to it -->
|
|
<record id="goal_list_view" model="ir.ui.view">
|
|
<field name="name">
|
|
gamification.goal.view.tree.inherit.sales_incentive_calculation
|
|
</field>
|
|
<field name="model">gamification.goal</field>
|
|
<field name="inherit_id" ref="gamification.goal_list_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//tree" position="inside">
|
|
<field name="target_achievement_percentage"
|
|
column_invisible="True"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|