Adapted the kiCost interface to the new `join` format.
This commit is contained in:
parent
c324b0a848
commit
6fa6356f9c
|
|
@ -360,7 +360,7 @@ def apply_join_requests(join, adapted, original):
|
||||||
if elements > 1 and target == key:
|
if elements > 1 and target == key:
|
||||||
# Append data from the other fields
|
# Append data from the other fields
|
||||||
for source in join_l[1:]:
|
for source in join_l[1:]:
|
||||||
v = original.get(source)
|
v = source.get_text(original.get)
|
||||||
if v:
|
if v:
|
||||||
append += ' ' + v
|
append += ' ' + v
|
||||||
if append:
|
if append:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue