[Fix] purchase_tender: Set the label product_qty

bzr revid: sbh@tinyerp.com-20100412061217-3s2vtixt2p1qfj80
This commit is contained in:
sbh (Open ERP) 2010-04-12 11:42:17 +05:30
parent 83590ed50b
commit a76738e8b6
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class purchase_tender_line(osv.osv):
_columns = {
'product_id': fields.many2one('product.product', 'Product'),
'product_uom_id': fields.many2one('product.uom', 'Product UoM'),
'product_qty': fields.float('Date End', digits=(16,2)),
'product_qty': fields.float('Quantity', digits=(16,2)),
'tender_id' : fields.many2one('purchase.tender','Purchase Tender', ondelete='cascade'),
'company_id': fields.many2one('res.company', 'Company', required=True),
}