Server IP : 127.0.0.2 / Your IP : 18.117.229.144 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/odoo/addons/mail/wizard/ |
Upload File : |
<?xml version="1.0" encoding="utf-8"?> <odoo> <data> <record model="ir.ui.view" id="email_compose_message_wizard_form"> <field name="name">mail.compose.message.form</field> <field name="model">mail.compose.message</field> <field name="groups_id" eval="[(4,ref('base.group_user'))]"/> <field name="arch" type="xml"> <form string="Compose Email"> <group> <!-- truly invisible fields for control and options --> <field name="composition_mode" invisible="1"/> <field name="model" invisible="1"/> <field name="res_id" invisible="1"/> <field name="is_log" invisible="1"/> <field name="parent_id" invisible="1"/> <field name="mail_server_id" invisible="1"/> <field name="active_domain" invisible="1"/> <!-- Various warnings --> <field name="use_active_domain" invisible="1"/> <div colspan="2" class="oe_form_box_info oe_text_center" attrs="{'invisible': [('use_active_domain', '!=', True)]}"> <p> <strong>All records matching your current search filter will be mailed, not only the ids selected in the list view.</strong><br /> If you want to work only with selected ids, please uncheck the list header checkbox. </p> <br/> <p> <strong>Moreover, if you want to send a lot of emails, we recommend you to use the mass mailing module</strong>. <br /> Confirming this wizard will probably take a few minutes blocking your browser.</p> </div> <!-- visible wizard --> <field name="email_from" attrs="{'invisible':[('composition_mode', '!=', 'mass_mail')]}"/> <label for="partner_ids" string="Recipients" attrs="{'invisible': [('is_log', '=', True)]}" groups="base.group_user"/> <div groups="base.group_user" attrs="{'invisible': [('is_log', '=', True)]}"> <span attrs="{'invisible': [('composition_mode', '!=', 'mass_mail')]}"> <strong>Email mass mailing</strong> on <span attrs="{'invisible': [('use_active_domain', '=', True)]}">the selected records</span> <span attrs="{'invisible': [('use_active_domain', '=', False)]}">the current search filter</span>. </span> <span attrs="{'invisible':['|', ('model', '=', False), ('composition_mode', '=', 'mass_mail')]}">Followers of the document and</span> <field name="partner_ids" widget="many2many_tags_email" placeholder="Add contacts to notify..." context="{'force_email':True, 'show_email':True}" attrs="{'invisible': [('composition_mode', '!=', 'comment')]}"/> </div> <field name="subject" placeholder="Subject..." required="True"/> <!-- mass post --> <field name="notify" attrs="{'invisible':['|', ('composition_mode', '!=', 'mass_post')]}"/> <!-- mass mailing --> <field name="no_auto_thread" attrs="{'invisible':[('composition_mode', '!=', 'mass_mail')]}"/> <field name="reply_to" placeholder="Email address to redirect replies..." attrs="{'invisible':['|', ('no_auto_thread', '=', False), ('composition_mode', '!=', 'mass_mail')], 'required':[('no_auto_thread', '=', True), ('composition_mode', '=', 'mass_mail')]}"/> </group> <field name="body" options="{'style-inline': true}"/> <group col="4"> <field name="attachment_ids" widget="many2many_binary" string="Attach a file" nolabel="1" colspan="2"/> <field name="template_id" options="{'no_create': True}" context="{'default_model': model, 'default_body_html': body, 'default_subject': subject}"/> </group> <footer> <button string="Send" name="send_mail_action" type="object" class="btn-primary"/> <button string="Cancel" class="btn-default" special="cancel" /> <button icon="fa-lg fa-save" type="object" name="save_as_template" string="Save as new template" class="pull-right btn-default" help="Save as a new template"/> </footer> </form> </field> </record> <record id="action_email_compose_message_wizard" model="ir.actions.act_window"> <field name="name">Compose Email</field> <field name="res_model">mail.compose.message</field> <field name="src_model">mail.compose.message</field> <field name="type">ir.actions.act_window</field> <field name="view_type">form</field> <field name="view_mode">form</field> <field name="target">new</field> </record> <!-- Replace the default mass-mailing wizard in base with the composition wizard --> <act_window name="Partner Mass Mailing" res_model="mail.compose.message" src_model="res.partner" view_mode="form" multi="True" target="new" key2="client_action_multi" id="action_partner_mass_mail" context="{ 'default_composition_mode': 'mass_mail', 'default_partner_to': '${object.id or \'\'}', 'default_active_domain': [['id', 'in', context.get('active_ids', [])]], }"/> </data> </odoo>