[gen] Bugfix: ref field: empty index value [''] could be stored within the db, as the real value. Added field.setSlave allowing to lazy-define master/slave relationships.
This commit is contained in:
parent
d9d93a650b
commit
5ac8e71a6f
|
@ -620,6 +620,19 @@ class Field:
|
|||
if self.isEmptyValue(obj, value): return
|
||||
return value
|
||||
|
||||
def setSlave(self, slaveField, masterValue):
|
||||
'''Sets p_slaveField as slave of this field. Normally, master/slave
|
||||
relationships are defined when a slave field is defined. At this time
|
||||
you specify parameters "master" and "masterValue" for this field and
|
||||
that's all. This method is used to add a master/slave relationship
|
||||
that was not initially foreseen.'''
|
||||
slaveField.master = self
|
||||
slaveField.masterValue = gutils.initMasterValue(masterValue)
|
||||
if slaveField not in self.slaves:
|
||||
self.slaves.append(slaveField)
|
||||
# Master's init method may not have been called yet.
|
||||
slaveField.masterName = getattr(self, 'name', None)
|
||||
|
||||
def getMasterData(self):
|
||||
'''Gets the master of this field (and masterValue) or, recursively, of
|
||||
containing groups when relevant.'''
|
||||
|
|
|
@ -947,14 +947,16 @@ class Ref(Field):
|
|||
p_forSearch is True, it will return a list of the linked objects'
|
||||
titles instead.'''
|
||||
if not forSearch:
|
||||
res = getattr(obj.aq_base, self.name, [])
|
||||
res = getattr(obj.aq_base, self.name, None)
|
||||
if res:
|
||||
# The index does not like persistent lists.
|
||||
# The index does not like persistent lists. Moreover, I don't
|
||||
# want to give to anyone access to the persistent list in the
|
||||
# DB.
|
||||
res = list(res)
|
||||
else:
|
||||
# Ugly catalog: if I return an empty list, the previous value
|
||||
# is kept.
|
||||
res.append('')
|
||||
res = ['']
|
||||
return res
|
||||
else:
|
||||
# For the global search: return linked objects' titles.
|
||||
|
|
Loading…
Reference in a new issue