You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<openerp> <data> <record model="ir.ui.view" id="beesdoo_purchase_order_form_view"> <field name="name">beesdoo.purchase.order.form.view</field> <field name="model">purchase.order</field> <field name="inherit_id" ref="purchase.purchase_order_form" /> <field name="arch" type="xml"> <field name="product_id" position="attributes"> <attribute name="domain">[('main_seller_id','=', parent.partner_id)]</attribute> </field> <xpath expr="//page/group/group//field[@name='date_planned']" position="attributes"> <attribute name="readonly">0</attribute> </xpath> </field> </record> </data> </openerp>
|