123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <record id="view_sale_partner_form" model="ir.ui.view">
- <field name="name">view.sale.partner.form</field>
- <field name="model">res.partner</field>
- <field name="inherit_id" ref="base.view_partner_form"/>
- <field name="arch" type="xml">
- <notebook>
- <page string="Historial">
- <notebook>
- <!-- Iniciativas y Oportunidades -->
- <page string="Iniciativas/Oportunidades ">
- <group col="1">
- <field name="all_opportunity_ids" readonly="1" nolabel='1' delete='false' create='false' editable='bottom'>
- </field>
- </group>
- </page>
- <!-- Llamadas telefónicas -->
- <page string="Llamadas telefónicas">
- <group col="1">
- <field name="phonecall_ids" readonly="1" nolabel='1' delete='false' create='false'>
- </field>
- </group>
- </page>
- <!-- Reuniones -->
- <page string="Reuniones">
- <group col="1">
- <field name="meeting_ids" readonly="1" nolabel='1' delete='false' create='false'>
- </field>
- </group>
- </page>
- <!--ventas-->
- <page string="Ventas">
- <group col="1">
- <field name="sale_order_ids" readonly="1" nolabel='1'>
- <tree delete='false' create='false' editable='bottom'>
- <field name="name"/>
- <field name="date_order"/>
- <field name="user_id"/>
- <field name="amount_total" sum="Total"/>
- <field name="state"/>
- </tree>
- </field>
- </group>
- </page>
- <!-- Facturacion -->
- <page string="Facturaciones">
- <group col="1">
- <field name="invoice_ids" readonly="1" nolabel='1' >
- <tree delete='false' create='false' editable='bottom'>
- <field name="number"/>
- <field name="date_invoice"/>
- <field name="user_id"/>
- <field name="origin"/>
- <field name="residual" sum="Saldo Pendiente"/>
- <field name="amount_total" sum="Total"/>
- <field name="state"/>
- </tree>
- </field>
- </group>
- </page>
- <!-- pos.order -->
- <page string="Pos">
- <group col="1">
- <field name="id_pos_order" readonly="1" nolabel='1' editable='bottom'>
- <tree delete='false' create='false'>
- <field name='name'/>
- <field name='pos_reference'/>
- <field name='date_order'/>
- <field name='user_id'/>
- <field name='amount_total' sum='total'/>
- <field name='state'/>
- <field name='session_id'/>
- </tree>
- </field>
- </group>
- </page>
- <!-- pos.order.line -->
- <page string="Productos">
- <group col="1">
- <field name="product_stock_line" readonly="1" nolabel='1' >
- <tree editable='bottom' delete='false' create='false'>
- <field name='product_id' string="Productos"/>
- <field name='product_qty' string="Cantidad" sum='qty'/>
- </tree>
- </field>
- </group>
- </page>
- </notebook>
- </page>
- </notebook>
- </field>
- </record>
- </data>
- </openerp>
|