IDEMPIERE-3508 2pack: suport export from normal string column to text long string column / fix R_MailText.MailText imported as 1.dat|string
This commit is contained in:
parent
7eb18d483e
commit
19fed8e7fd
|
@ -303,7 +303,7 @@ public class PoFiller{
|
|||
} else if (info.getColumnClass(index) == Timestamp.class) {
|
||||
setTimestamp(qName);
|
||||
}else if(DisplayType.TextLong == info.getColumnDisplayType(index)) {// export column from system have type is normal string, but import to system have this column but type is textlong (mean blob)
|
||||
if (getStringValue (qName) != null || !isBlobOnPackinFile(qName)) {
|
||||
if (getStringValue (qName) != null && !isBlobOnPackinFile(qName)) {
|
||||
setString(qName);
|
||||
}else {
|
||||
setBlob(qName);
|
||||
|
|
Loading…
Reference in New Issue