feat: Se crean vistas a agenda de llamadas pendientes
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
3e41315689
commit
c1df0de713
43
pending_call.xml
Normal file
43
pending_call.xml
Normal file
@ -0,0 +1,43 @@
|
||||
<?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. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.action.act_window" id="act_pending_call_tree">
|
||||
<field name="name">Pending pending_call</field>
|
||||
<field name="res_model">sale.pending_call</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="pending_call_view_tree">
|
||||
<field name="model">sale.pending_call</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">pending_call_tree</field>
|
||||
</record>
|
||||
<record model="ir.ui.view" id="pending_call_view_form">
|
||||
<field name="model">sale.pending_call</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">pending_call_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window.view" id="act_pending_call_tree_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="pending_call_view_tree"/>
|
||||
<field name="act_window" ref="act_pending_call_tree"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_pending_call_form_view1">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="pending_call_view_form"/>
|
||||
<field name="act_window" ref="act_pending_call_tree"/>
|
||||
</record>
|
||||
|
||||
<!-- <menuitem
|
||||
name="Calls"
|
||||
sequence="10"
|
||||
id="menu_calls"/> -->
|
||||
<menuitem
|
||||
parent="menu_calls"
|
||||
sequence="40"
|
||||
id="menu_pending_calls_tree"
|
||||
action="act_pending_call_tree"/>
|
||||
</data>
|
||||
</tryton>
|
@ -7,5 +7,6 @@ xml:
|
||||
call.xml
|
||||
prospect_trace.xml
|
||||
prospect.xml
|
||||
pending_call.xml
|
||||
./locations/departments.xml
|
||||
./locations/cities.xml
|
10
view/pending_call_form.xml
Normal file
10
view/pending_call_form.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?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>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
|
||||
<label name="prospect_trace"/>
|
||||
<field name="prospect_trace"/>
|
||||
</form>
|
7
view/pending_call_tree.xml
Normal file
7
view/pending_call_tree.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?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="date"/>
|
||||
<field name="prospect_trace"/>
|
||||
</tree>
|
@ -19,5 +19,8 @@ this repository contains the full copyright notices and license terms. -->
|
||||
<page string="Calls" id="calls">
|
||||
<field name="calls" colspan="2"/>
|
||||
</page>
|
||||
<page string="Schedule" id="pending_calls">
|
||||
<field name="pending_calls" colspan="2"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
@ -7,4 +7,5 @@ this repository contains the full copyright notices and license terms. -->
|
||||
<field name="prospect_city" expand="1"/>
|
||||
<field name="current_interest" expand="1"/>
|
||||
<field name="calls" expand="1"/>
|
||||
<field name="pending_calls" expand="1"/>
|
||||
</tree>
|
Loading…
Reference in New Issue
Block a user