[FIX] product: some fields on the product template readonly when my product doesn't have any variant

This commit is contained in:
Christophe Matthieu 2014-07-29 15:20:25 +02:00
parent 23436ca259
commit 1d76fa0b1c
1 changed files with 1 additions and 7 deletions

View File

@ -418,13 +418,7 @@ class product_template(osv.osv):
return self.is_product_variant(cr, uid, ids, name, arg, context=context)
def is_product_variant(self, cr, uid, ids, name, arg, context=None):
prod = self.pool.get('product.product')
res = dict.fromkeys(ids, False)
ctx = dict(context, active_test=True)
for product in self.browse(cr, uid, ids, context=context):
res[product.id] = prod.search(cr, uid, [('product_tmpl_id','=',product.id)], context=ctx, count=True) == 1
return res
return dict.fromkeys(ids, False)
def _product_template_price(self, cr, uid, ids, name, arg, context=None):
plobj = self.pool.get('product.pricelist')