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.
36 lines
1.2 KiB
36 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2012-2013 Akretion (http://www.akretion.com)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
|
|
<!-- Add button on the "Get partner from incoming phone call view" -->
|
|
<record id="create_crm_phonecall_view" model="ir.ui.view">
|
|
<field name="name">create_crm_phonecall.view</field>
|
|
<field name="model">wizard.create.crm.phonecall</field>
|
|
<field name="arch" type="xml">
|
|
<form string="CRM phone call" version="7.0">
|
|
<label string="Create a phone call in the CRM ?"/>
|
|
<footer>
|
|
<button name="button_create_outgoing_phonecall" string="Yes" type="object" class="oe_highlight"/>
|
|
<button special="cancel" string="No" class="oe_link"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
<record id="action_create_crm_phonecall" model="ir.actions.act_window">
|
|
<field name="name">Create CRM phonecall</field>
|
|
<field name="res_model">wizard.create.crm.phonecall</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
|
|
|
|
</data>
|
|
</openerp>
|