I'm using th purchase app on OpenErp.
I know this field is declared on purchase.py
and called on purchase_view.xml
but strangely it doesn't appears when i'm trying to add a new product quotation or purchase, don't get me wrong, the app works, but i find it amusing that this field isn't showing at all.
This is the field code on purchase.py
'product_uom': fields.many2one('product.uom', 'Product Unit of Measure', required=True),
And the call on purchase_view.xml
<field name="product_uom" groups="product.group_unidadmedida" on_change="onchange_product_unidadmedida(parent.pricelist_id,product_id,product_qty,product_uom,parent.partner_id, parent.date_order,parent.fiscal_position,date_planned,name,price_unit,context)"/>
Both on the same class purchase_order_line
btw
Any hint on this?