bemade-addons/bemade_sethy_configuration/wizard/property_wizard_views.xml
Benoît Vézina 43940f428e wizard
2024-01-01 14:52:23 -05:00

20 lines
No EOL
866 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="property_wizard_form_view" model="ir.ui.view">
<field name="name">property.wizard.form</field>
<field name="model">property.wizard</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Property Wizard">
<group>
<field name="partner_id"/>
</group>
<footer>
<button name="action_create_property" string="Create new Property" type="object" class="btn-primary"/>
<button name="action_select_property" string="Select Property" type="object" class="btn-primary"/>
<button string="Cancel" class="oe_link" special="cancel"/>
</footer>
</form>
</field>
</record>
</odoo>