Files
2025-03-04 16:53:07 +07:00

18 lines
902 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="custom_sms_form_tiennv" model="ir.ui.view">
<field name="name">sms.composer.views.inherit.sms_custom</field>
<field name="model">sms.composer</field>
<field name="inherit_id" ref="sms.sms_composer_view_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='composition_mode']" position="after">
<field name="res_id"/>
</xpath>
<xpath expr="//footer//button[@name='action_send_sms']" position="replace">
<button string="Send SMS ZNS" type="object" class="oe_highlight" name="action_send_sms_zns" data-hotkey="q"
attrs="{'invisible': ['|',('composition_mode', 'not in', ('comment', 'numbers')),('recipient_single_valid', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>