Compare commits

..

No commits in common. "e97e8fa99dc7f58c5d6f78becde84a341cce56d4" and "d50cca292406e88861bdcbd1f239fc8e18352a19" have entirely different histories.

5 changed files with 10 additions and 56 deletions

View File

@ -23,6 +23,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="name">Calls</field>
<field name="res_model">sale.call</field>
</record>
<record model="ir.ui.view" id="call_view_tree">
<field name="model">sale.call</field>
<field name="type">tree</field>
@ -33,6 +34,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="type">form</field>
<field name="name">call_form</field>
</record>
<record model="ir.action.act_window.view" id="act_call_tree_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="call_view_tree"/>
@ -43,6 +45,11 @@ this repository contains the full copyright notices and license terms. -->
<field name="view" ref="call_view_form"/>
<field name="act_window" ref="act_call_tree"/>
</record>
<record model="ir.ui.icon" id="call_icon">
<field name="name">tryton-phone</field>
<field name="path">icons/tryton-phone.svg</field>
</record>
<menuitem
name="Calls"
sequence="10"
@ -59,6 +66,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="menu" ref="menu_calls_tree"/>
<field name="group" ref="group_call"/>
</record>
<record model="ir.model.access" id="access_calls">
<field name="model" search="[('model', '=', 'sale.call')]"/>
<field name="perm_read" eval="False"/>
@ -66,6 +74,7 @@ this repository contains the full copyright notices and license terms. -->
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.model.access" id="access_calls_calls">
<field name="model" search="[('model', '=', 'sale.call')]"/>
<field name="group" ref="group_call"/>
@ -73,37 +82,6 @@ this repository contains the full copyright notices and license terms. -->
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_delete" eval="True"/>
</record>
<record model="ir.action.act_window" id="act_pending_task_tree">
<field name="name">Pending tasks</field>
<field name="res_model">sale.pending_task</field>
</record>
<record model="ir.ui.view" id="pending_task_view_tree">
<field name="model">sale.pending_task</field>
<field name="type">tree</field>
<field name="name">pending_task_tree</field>
</record>
<record model="ir.ui.view" id="pending_task_view_form">
<field name="model">sale.pending_task</field>
<field name="type">form</field>
<field name="name">pending_task_form</field>
</record>
<record model="ir.action.act_window.view" id="act_pending_task_tree_view1">
<field name="sequence" eval="30"/>
<field name="view" ref="pending_task_view_tree"/>
<field name="act_window" ref="act_pending_task_tree"/>
</record>
<record model="ir.action.act_window.view" id="act_pending_task_form_view1">
<field name="sequence" eval="40"/>
<field name="view" ref="pending_task_view_form"/>
<field name="act_window" ref="act_pending_task_tree"/>
</record>
<menuitem
parent="menu_calls"
sequence="60"
id="menu_pending_tasks"
action="act_pending_task_tree"
icon="tryton-graph"/>
</record>
</data>
</tryton>

View File

@ -27,9 +27,5 @@ this repository contains the full copyright notices and license terms. -->
<field name="name">tryton-target</field>
<field name="path">icons/tryton-target.svg</field>
</record>
<record model="ir.ui.icon" id="call_icon">
<field name="name">tryton-phone</field>
<field name="path">icons/tryton-phone.svg</field>
</record>
</data>
</tryton>

View File

@ -384,4 +384,3 @@ Reportes
* Reporte de prospectos potenciales
* llamadas con un nivel de interés alto
* Seguimiento de prospecto al que pertenecen las llamadas

View File

@ -1,12 +0,0 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<form>
<group col="6" id="content">
<label name="prospect_trace"/>
<field name="prospect_trace"/>
<newline/>
<label name="description"/>
<field name="description"/>
</group>
</form>

View File

@ -1,7 +0,0 @@
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tree>
<field name="prospect_trace" expand="1"/>
<field name="description" expand="1"/>
</tree>