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.
31 lines
1.1 KiB
31 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Form view for SMS User -->
|
|
<record id="send_sms_view_form" model="ir.ui.view">
|
|
<field name="name">send.sms.view.form</field>
|
|
<field name="model">send.sms</field>
|
|
<field name="arch" type="xml">
|
|
<!-- Form view of the wizard -->
|
|
<form string="Send SMS">
|
|
<group string="SMS Gateway" colspan="4">
|
|
<field name="sms_id"/>
|
|
</group>
|
|
<group string="Send SMS" colspan="4">
|
|
<field name="sms_to"/>
|
|
</group>
|
|
<notebook>
|
|
<page string="Message">
|
|
<field name="text" colspan="4" nolabel="1"/>
|
|
</page>
|
|
</notebook>
|
|
<footer>
|
|
<button string="Send SMS" name="action_send_sms"
|
|
type="object" class="oe_highlight"/>
|
|
<button string="Cancel" class="oe_link" special="cancel"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|