You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

21 lines
962 B

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!--Inherited the model named mail.compose.message to give the schedule time and the button 'Schedule Mail'-->
<record id="email_compose_message_wizard_form" model="ir.ui.view">
<field name="name">
mail.compose.message.view.form.inherit.schedule.mail.to.send
</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='subject']" position="after">
<field name='schedule_time'/>
</xpath>
<xpath expr="//button[@name='action_save_as_template']"
position="after">
<button string="Schedule Mail" type="object"
name="action_schedule_mail" class="btn-primary"/>
</xpath>
</field>
</record>
</odoo>