improve
[odoo/odoo.git] / bin / addons / base / res / partner / partner.py
index b419f35..f9ab153 100644 (file)
@@ -247,18 +247,6 @@ class res_partner(osv.osv):
             result[a] = adr.get(a, default_address)
         return result
 
-    def property_get(self, cr, uid, ids,property_pref=[]):
-        select = ids
-        if isinstance(ids, (int, long)):
-            select = [ids]
-        result=self.read(cr,uid,select,property_pref)
-        for res in result:
-            for prt in property_pref:
-                res[prt] = res[prt] and res[prt][0] or False
-        if isinstance(ids, (int, long)):
-            return result[0]
-        return result
-
     def gen_next_ref(self, cr, uid, ids):
         if len(ids) != 1:
             return True