1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="utf-8"?>
- <openerp>
- <data>
- <record id="product_normal_form_view" model="ir.ui.view">
- <field name="name">ProductNormalFormView</field>
- <field name="model">product.product</field>
- <field name="inherit_id" ref="product.product_normal_form_view"/>
- <field name="arch" type="xml">
- <field name="active" position="after">
- <field name="pricelists" nolabel="1" colspan="2" context="{'product_id': active_id}">
- <tree string="Precio" editable="bottom" create="false" delete="false" colors="red:product_price_manual">
- <field name="name" readonly="1"/>
- <field name="product_price_manual" invisible="1"/>
- <field name="product_price" string="Precio"/>
- <!-- <button type="object" icon="STOCK_CLOSE"
- name="remove_price_manual"
- /> -->
- </tree>
- </field>
- </field>
- </field>
- </record>
- </data>
- </openerp>
|