[IMP] project_scrum: re-enable email send (they are not actually sent in test mode)
[odoo/odoo.git] / addons / purchase / partner.py
index fb63755..86cce74 100644 (file)
@@ -27,11 +27,10 @@ class res_partner(osv.osv):
     _columns = {
         'property_product_pricelist_purchase': fields.property(
           'product.pricelist',
-          type='many2one',
-          relation='product.pricelist',
-          domain=[('type', '=', 'purchase')],
-          string="Purchase Pricelist",
-          method=True,
+          type='many2one', 
+          relation='product.pricelist', 
+          domain=[('type','=','purchase')],
+          string="Purchase Pricelist", 
           view_load=True,
           help="This pricelist will be used, instead of the default one, for purchases from the current partner"),
     }