1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <!-- actions -->
- <act_window
- id="action_open_product_service"
- name="Car Products"
- res_model="product.service"
- view_type="form"
- view_mode="tree,form"
- domain="[('product_service_brand_id', '=', active_id)]"/>
- <act_window
- id="action_open_single_product_service"
- name="Car Brand"
- res_model="product.service"
- view_type="form"
- view_mode="tree,form"
- target="current"
- domain="[('product_service_ids', 'in', active_id)]"/>
- <!-- form view -->
- <record model="ir.ui.view" id="product_service_brand_form">
- <field name="name">product_service_brand_form</field>
- <field name="model">product.service.brand</field>
- <field name="arch" type="xml">
- <form string="Car Brand" version="7.0">
- <sheet>
- <field name="logo" widget="image" class="oe_avatar oe_left"/>
- <div class="oe_title">
- <div class="oe_edit_only">
- <label for="name" string="Marca"/>
- </div>
- <h1>
- <field name="name"/>
- </h1>
- </div>
- <div class="oe_right oe_button_box">
- <button
- class="oe_inline oe_stat_button"
- type="action"
- name="%(action_open_product_service)d"
- icon="fa-cubes">
- <field name="product_service_count" string="Productos" widget="statinfo" />
- </button>
- </div>
- <group string="Descripción">
- <field name="description" nolabel="1"/>
- </group>
- </sheet>
- </form>
- </field>
- </record>
- <!-- Tree -->
- <record model="ir.ui.view" id="product_service_brand_tree">
- <field name="name">product.service.brand.tree</field>
- <field name="model">product.service.brand</field>
- <field name="arch" type="xml">
- <tree string="Marca">
- <field name="name" string="Nombre"/>
- <field name="description" string="Descripción"/>
- </tree>
- </field>
- </record>
-
- <!-- action -->
- <record model="ir.actions.act_window" id="product_service_brand_action">
- <field name="name">Marcas</field>
- <field name="res_model">product.service.brand</field>
- <field name="view_type">form</field>
- <field name="view_mode">tree,form</field>
- </record>
- <!-- menu -->
- <menuitem
- name="Marcas" id="product_service_brand_all_menu"
- action="product_service_brand_action" parent="project_config_parent_menu"/>
- </data>
- </openerp>
|