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.
14 lines
641 B
14 lines
641 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherit gamification.challenge_form_view and add the field to it -->
|
|
<record id="challenge_form_view" model="ir.ui.view">
|
|
<field name="name">gamification.challenge.view.form.inherit.sales_incentive_calculation</field>
|
|
<field name="model">gamification.challenge</field>
|
|
<field name="inherit_id" ref="gamification.challenge_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='manager_id']" position="after">
|
|
<field name="incentive_calculation"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|