Skip to content
Snippets Groups Projects
Commit 0a8ce61f authored by Goffin Simon's avatar Goffin Simon
Browse files

[FIX] sms: Send a sms with search filter


When sending a sms from the contact list view, the sms is sent to all the records
matching the domain even if some records are selected. This behavior has been decided
to make the mass smsing easier.

opw:2244718

closes odoo/odoo#50383

Signed-off-by: default avatarSimon Goffin (sig) <sig@openerp.com>
parent 45398c09
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,13 @@ msgstr ""
msgid "%s chars, fits in %s SMS (%s) "
msgstr ""
#. module: sms
#: model_terms:ir.ui.view,arch_db:sms.send_sms_view_form
msgid "<strong>\n"
" A sms will be sent to all the records matching your current search filter, not only the ids selected in the list view.\n"
" </strong>"
msgstr ""
#. module: sms
#: model_terms:ir.ui.view,arch_db:sms.send_sms_view_form
msgid "Cancel"
......
......@@ -8,6 +8,14 @@
<form string="Send an SMS">
<sheet>
<group>
<div colspan="2" class="oe_form_box_info bg-info oe_text_center"
invisible="not context.get('active_domain')">
<p>
<strong>
A sms will be sent to all the records matching your current search filter, not only the ids selected in the list view.
</strong>
</p>
</div>
<field name="recipients"/>
<field name="message" widget="sms_widget"/>
</group>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment