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.
 
 
 
 
 

13 lines
593 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Server action in 'res.partner' to open the wizard to send the SMS. -->
<!-- Available in Form and Tree Views -->
<record id="action_send_sms" model="ir.actions.server">
<field name="name">Send SMS</field>
<field name="model_id" ref="base.model_res_partner"/>
<field name="binding_model_id" ref="base.model_res_partner"/>
<field name="binding_view_types">form,list</field>
<field name="state">code</field>
<field name="code">action = records.send_sms()</field>
</record>
</odoo>