IDEMPIERE-242 ImageField not working in non form based print format
Use correct ImageElement.get
This commit is contained in:
parent
5457709c6a
commit
2feccac9e5
|
@ -1697,7 +1697,7 @@ public class LayoutEngine implements Pageable, Printable, Doc
|
||||||
else
|
else
|
||||||
value = o.toString();
|
value = o.toString();
|
||||||
|
|
||||||
data[row][col] = ImageElement.get (value);
|
data[row][col] = ImageElement.get (pde, value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (item.isImageIsAttached())
|
else if (item.isImageIsAttached())
|
||||||
|
|
Loading…
Reference in New Issue