[IMP]remove domain from product_variant_ids and improve view.

bzr revid: dka@tinyerp.com-20140115065949-8vnj4lvmsiq5vixr
This commit is contained in:
Darshan Kalola (OpenERP) 2014-01-15 12:29:49 +05:30
parent 67f6f54e73
commit a452ff9d90
2 changed files with 3 additions and 3 deletions

View File

@ -440,7 +440,7 @@ class product_template(osv.osv):
help="Small-sized image of the product. It is automatically "\
"resized as a 64x64px image, with aspect ratio preserved. "\
"Use this field anywhere a small image is required."),
'product_variant_ids': fields.one2many('product.product', 'product_tmpl_id', 'Product Variants', domain = [('variants','!=','')], required=True),
'product_variant_ids': fields.one2many('product.product', 'product_tmpl_id', 'Product Variants', required=True),
}
def _get_uom_id(self, cr, uid, *args):

View File

@ -849,9 +849,9 @@
</group>
</group>
<group colspan="4" string="Product Variants">
<field colspan="4" name="product_variant_ids" nolabel="1">
<field colspan="4" name="product_variant_ids" nolabel="1" domain="[('variants','!=',False)]">
<tree string="Product Variants" editable="bottom">
<field name="variants" required="1"/>
<field name="variants"/>
<field name="price_margin" string="Variant Price Margin(%%)"/>
<field name="price_extra"/>
<field name="lst_price" string="Sale Price"/>