This commit is contained in:
Fabio Sinibaldi 2019-02-25 17:24:15 +00:00
parent a845d703b0
commit d446cf2f3f
1 changed files with 4 additions and 1 deletions

View File

@ -173,6 +173,9 @@ public class ImportedTable {
DBField toSetField=labels.get(csvField.getKey());
Object value=csvField.getValue();
if(csvField.getValue()==null
||csvField.getValue().isEmpty()) value=null;
if(value!=null)
try {
switch(toSetField.getType()) {