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/views/sms_template_views.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/sms/views/sms_template_views.xml')
| -rw-r--r-- | addons/sms/views/sms_template_views.xml | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/addons/sms/views/sms_template_views.xml b/addons/sms/views/sms_template_views.xml new file mode 100644 index 00000000..78ddb6ed --- /dev/null +++ b/addons/sms/views/sms_template_views.xml @@ -0,0 +1,100 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo><data> + <record id="sms_template_view_form" model="ir.ui.view"> + <field name="name">sms.template.view.form</field> + <field name="model">sms.template</field> + <field name="arch" type="xml"> + <form string="SMS Templates"> + <sheet> + <div class="oe_button_box" name="button_box"> + <field name="sidebar_action_id" invisible="1"/> + <button name="action_create_sidebar_action" type="object" + groups="base.group_system" + class="oe_stat_button" + attrs="{'invisible':[('sidebar_action_id','!=',False)]}" icon="fa-plus" + help="Add a contextual action on the related model to open a sms composer with this template"> + <div class="o_field_widget o_stat_info"> + <span class="o_stat_text">Add</span> + <span class="o_stat_text">Context Action</span> + </div> + </button> + <button name="action_unlink_sidebar_action" type="object" + groups="base.group_system" + class="oe_stat_button" icon="fa-minus" + attrs="{'invisible':[('sidebar_action_id','=',False)]}" + help="Remove the contextual action of the related model" widget="statinfo"> + <div class="o_field_widget o_stat_info"> + <span class="o_stat_text">Remove</span> + <span class="o_stat_text">Context Action</span> + </div> + </button> + <button class="oe_stat_button" name="%(sms_template_preview_action)d" icon="fa-search-plus" string="Preview" type="action" target="new"/> + </div> + <div class="oe_title"> + <label for="name" class="oe_edit_only" string="SMS Template"/> + <h1><field name="name" required="1"/></h1> + <group> + <field name="model_id" required="1" options="{'no_create': True}"/> + <field name="model" invisible="1"/> + <field name="lang" groups="base.group_no_one" placeholder="e.g. en_US or ${object.partner_id.lang}"/> + </group> + </div> + <notebook> + <page string="Content" name="content"> + <group> + <field name="body" widget="sms_widget" nolabel="1"/> + </group> + </page> + <page string="Dynamic Placeholder Generator" name="dynamic_placeholder_generator" groups="base.group_no_one"> + <group> + <field name="model_object_field" + domain="[('model_id','=',model_id),('ttype','!=','one2many'),('ttype','!=','many2many')]"/> + <field name="sub_object" readonly="1"/> + <field name="sub_model_object_field" + domain="[('model_id','=',sub_object),('ttype','!=','one2many'),('ttype','!=','many2many')]" + attrs="{'readonly':[('sub_object','=',False)],'required':[('sub_object','!=',False)]}"/> + <field name="null_value"/> + <field name="copyvalue"/> + </group> + </page> + </notebook> + </sheet> + </form> + </field> + </record> + + <record id="sms_template_view_tree" model="ir.ui.view"> + <field name="name">sms.template.view.tree</field> + <field name="model">sms.template</field> + <field name="arch" type="xml"> + <tree string="SMS Templates"> + <field name="name"/> + <field name="model_id"/> + </tree> + </field> + </record> + + <record id="sms_template_view_search" model="ir.ui.view"> + <field name="name">sms.template.view.search</field> + <field name="model">sms.template</field> + <field name="arch" type="xml"> + <search string="Search SMS Templates"> + <field name="name"/> + <field name="model_id"/> + </search> + </field> + </record> + + <record id="sms_template_action" model="ir.actions.act_window"> + <field name="name">Templates</field> + <field name="res_model">sms.template</field> + <field name="view_mode">tree,form</field> + </record> + + <menuitem id="sms_template_menu" + name="SMS Templates" + parent="phone_validation.phone_menu_main" + sequence="2" + action="sms_template_action"/> + +</data></odoo> |
