[IMP] error in product_product

bzr revid: jco@openerp.com-20130508134608-3c9tqqy3wvbx31g4
This commit is contained in:
Josse Colpaert 2013-05-08 15:46:08 +02:00
parent 40da69600f
commit 3b092c2da8
1 changed files with 3 additions and 3 deletions

View File

@ -25,9 +25,9 @@ from openerp.osv import osv, fields
#@TODO Should not this be product template?
#TODO: remove this module and put everything in existing core modules (purchase, stock, product...)
# class product_product (osv.osv):
# _name = "product.product"
# _inherit = "product.product"
class product_product (osv.osv):
_name = "product.product"
_inherit = "product.product"
# _columns = {
# 'cost_method': fields.property('', type='selection', view_load=True, selection = [('standard','Standard Price'), ('average','Average Price'),
# ('fifo', 'FIFO price'), ('lifo', 'LIFO price')],