gamification/wizard/update_goal.xml
2024-11-01 14:01:27 +03:00

20 lines
848 B
XML

<odoo>
<record id="view_goal_wizard_update_current" model="ir.ui.view">
<field name="name">Update the current value of the Goal</field>
<field name="model">gamification.goal.wizard</field>
<field name="arch" type="xml">
<form string="Grant Badge To">
Set the current value you have reached for this goal
<group>
<field name="goal_id" invisible="1"/>
<field name="current" />
</group>
<footer>
<button string="Update" type="object" name="action_update_current" class="btn-primary" data-hotkey="q"/>
<button string="Cancel" special="cancel" data-hotkey="x" class="btn-secondary"/>
</footer>
</form>
</field>
</record>
</odoo>