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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							964 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							22 lines
						
					
					
						
							964 B
						
					
					
				| <?xml version="1.0" encoding="utf-8"?> | |
| <!--Inherited the model named mail.compose.message to give the schedule time | |
| and the button 'Schedule Mail'--> | |
| <odoo> | |
|     <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='open_template_creation_wizard']" | |
|                    position="after"> | |
|                 <button string="Schedule Mail" type="object" | |
|                         name="action_schedule_mail" class="btn-primary"/> | |
|             </xpath> | |
|         </field> | |
|     </record> | |
| </odoo>
 | |
| 
 |