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

@ -172,7 +172,10 @@ public class ImportedTable {
for(Entry<String,String> csvField:csvRow.entrySet()) {
DBField toSetField=labels.get(csvField.getKey());
Object value=csvField.getValue();
Object value=csvField.getValue();
if(csvField.getValue()==null
||csvField.getValue().isEmpty()) value=null;
if(value!=null)
try {
switch(toSetField.getType()) {