[FIX] fix problem of poperty filed. if property field have a default value then check the id.

bzr revid: ysa@tinyerp.com-20111005065155-nfwersyv05ddjq40
This commit is contained in:
Yogesh (OpenERP) 2011-10-05 12:21:55 +05:30
parent 92b6181556
commit 4de6b85979
1 changed files with 3 additions and 3 deletions

View File

@ -525,7 +525,7 @@ class many2many(_column):
_type = 'many2many'
def __init__(self, obj, rel=None, id1=None, id2=None, string='unknown', limit=None, **args):
"""
"""
"""
_column.__init__(self, string=string, **args)
self._obj = obj
@ -539,7 +539,7 @@ class many2many(_column):
def _sql_names(self, source_model):
"""Return the SQL names defining the structure of the m2m relationship table
:return: (m2m_table, local_col, dest_col) where m2m_table is the table name,
local_col is the name of the column holding the current model's FK, and
dest_col is the name of the column holding the destination model's FK, and
@ -1216,7 +1216,7 @@ class property(function):
default_val = self._get_default(obj, cr, uid, prop_name, context)
property_create = False
if hasattr(default_val, '_id'):
if hasattr(default_val, '_id') and default_val:
if default_val._id != id_val:
property_create = True
elif id_val != default_val: