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.
 
 
 
 
 

34 lines
1.4 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- client.support form view -->
<record id="client_support_view_form" model="ir.ui.view">
<field name="name">client.support.view.form</field>
<field name="model">client.support</field>
<field name="arch" type="xml">
<form string="Client Support">
<group>
<field name="name"/>
<field name="email"/>
<field name="description"/>
<field name="support_type"/>
<field name="attachment_ids" widget="many2many_binary"/>
</group>
<footer>
<button name="confirm_button" type="object"
class="btn btn-success oe_highlight">
<i class="ri-upload-2-fill" style="margin-right:10px;"/>
Submit
</button>
<button name="whatsapp_button" type="object"
class="btn btn-secondary oe_highlight">
<i class="ri-whatsapp-line" style="margin-right:10px;"/>
WhatsApp
</button>
<button name="cancel" string="Cancel"
class="button cancel_button" special="cancel"/>
</footer>
</form>
</field>
</record>
</odoo>