Skip to content

Commit

Permalink
[FIX] replaced one more 'Sale Price'
Browse files Browse the repository at this point in the history
  • Loading branch information
tafaRU committed Apr 24, 2013
1 parent 667b9f0 commit 3004387
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sale_delivery_term/sale.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def _get_uom_id(self, cr, uid, *args):
'product_id': fields.many2one('product.product', 'Product', domain=[('sale_ok', '=', True)]),
'price_unit': fields.float('Unit Price', required=True, digits_compute= dp.get_precision('Product Price')),
'price_subtotal': fields.function(_amount_line, string='Subtotal',
digits_compute= dp.get_precision('Sale Price')),
digits_compute= dp.get_precision('Product Price')),
'product_uom_qty': fields.float('Quantity (UoM)', digits_compute= dp.get_precision('Product UoS'), required=True),
'product_uom': fields.many2one('product.uom', 'Unit of Measure ', required=True),
'product_uos_qty': fields.float('Quantity (UoS)' ,digits_compute= dp.get_precision('Product UoS')),
Expand Down

0 comments on commit 3004387

Please sign in to comment.