1
# -*- encoding:utf-8 -*-
2
# __author__ = jeff@openerp.cn
4
from osv import osv, fields
5
from tools.translate import _
7
#-------------------------------------------
9
#-------------------------------------------
10
class product_template(osv.osv):
11
_inherit = "product.template"
13
'standard_price': fields.float('Cost Price', required=True, \
14
read='base.group_sale_manager',
15
digits_compute=dp.get_precision('Purchase Price'), \
16
help="Product's cost for accounting stock valuation. It is the base price for the supplier price."),
18
class product_template()