diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/sms/wizard/sms_composer_views.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/sms/wizard/sms_composer_views.xml')
| -rw-r--r-- | addons/sms/wizard/sms_composer_views.xml | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/addons/sms/wizard/sms_composer_views.xml b/addons/sms/wizard/sms_composer_views.xml new file mode 100644 index 00000000..3ef5820b --- /dev/null +++ b/addons/sms/wizard/sms_composer_views.xml @@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="sms_composer_view_form" model="ir.ui.view"> + <field name="name">sms.composer.view.form</field> + <field name="model">sms.composer</field> + <field name="arch" type="xml"> + <form string="Send an SMS"> + <sheet> + <group> + <field name="composition_mode" invisible="1"/> + <field name="comment_single_recipient" invisible="1"/> + <field name="res_id" invisible="1"/> + <field name="res_ids" invisible="1"/> + <field name="active_domain" invisible="1"/> + <field name="res_model" invisible="1"/> + <field name="mass_force_send" invisible="1"/> + <field name="recipient_single_valid" invisible="1"/> + <field name="recipient_single_number" invisible="1"/> + <field name="number_field_name" invisible="1"/> + <field name="numbers" invisible="1"/> + <field name="sanitized_numbers" invisible="1"/> + + <!-- Single mode information (invalid number) --> + <div colspan="2" class="alert alert-danger text-center mb-3" role="alert" + attrs="{'invisible': ['|', ('comment_single_recipient', '=', False), ('recipient_single_valid', '=', True)]}"> + <p class="my-0">Invalid phone number</p> + </div> + + <!-- Mass mode information (res_ids versus active domain) --> + <div colspan="2" class="alert alert-info text-center mb-3" role="alert" + attrs="{'invisible': [('comment_single_recipient', '=', True)]}"> + <p class="my-0"> + <span attrs="{'invisible': [('use_active_domain', '=', 'True')]}"> + <field class="oe_inline font-weight-bold" name="res_ids_count"/> records selected. + </span> + Check <field class="oe_inline ml-2" name="use_active_domain"/> to send to all + <field class="oe_inline font-weight-bold ml-2" name="active_domain_count"/> records instead. <br/> + <field class="oe_inline font-weight-bold" name="recipient_valid_count"/> recipients are valid + and <field class="oe_inline font-weight-bold" name="recipient_invalid_count"/> are invalid. + </p> + </div> + + <label for="recipient_single_description" string="Recipient" + class="font-weight-bold" + attrs="{'invisible': [('comment_single_recipient', '=', False)]}"/> + <div attrs="{'invisible': [('comment_single_recipient', '=', False)]}"> + <field name="recipient_single_description" class="oe_inline"/> + <field name="recipient_single_number_itf" class="oe_inline" nolabel="1" options="{'onchange_on_keydown': True}" placeholder="e.g. +1 415 555 0100"/> + </div> + + <field name="body" widget="sms_widget"/> + <field name="mass_keep_log" invisible="1"/> + </group> + </sheet> + <footer> + <!-- attrs doesn't work for 'disabled'--> + <button string="Send SMS" type="object" class="oe_highlight" name="action_send_sms" + attrs="{'invisible': ['|',('composition_mode', 'not in', ('comment', 'numbers')),('recipient_single_valid', '=', False)]}"/> + <button string="Send SMS" type="object" class="oe_highlight" name="action_send_sms" + attrs="{'invisible': ['|',('composition_mode', 'not in', ('comment', 'numbers')),('recipient_single_valid', '=', True)]}" disabled='1'/> + <button string="Put in queue" type="object" class="oe_highlight" name="action_send_sms" + attrs="{'invisible': [('composition_mode', '!=', 'mass')]}"/> + <button string="Send Now" type="object" name="action_send_sms_mass_now" + attrs="{'invisible': [('composition_mode', '!=', 'mass')]}"/> + <button string="Close" class="btn btn-secondary" special="cancel"/> + </footer> + </form> + </field> + </record> + + <record id="sms_composer_action_form" model="ir.actions.act_window"> + <field name="name">Send SMS Text Message</field> + <field name="res_model">sms.composer</field> + <field name="view_mode">form</field> + <field name="target">new</field> + </record> + +</odoo> |
