IDEMPIERE-981 Import File Loader Format problem
This commit is contained in:
parent
73de31fbc0
commit
dbeebf529f
|
@ -454,8 +454,12 @@ public class WFileImport extends ADForm implements EventListener<Event>
|
||||||
|
|
||||||
String formatName = (String)listitem.getLabel();
|
String formatName = (String)listitem.getLabel();
|
||||||
|
|
||||||
if (formatName.equals(s_none))
|
if (formatName.equals(s_none)) {
|
||||||
|
confirmPanel.getButton("Ok").setEnabled(false);
|
||||||
|
m_format=null;
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int formatId = (Integer)listitem.getValue();
|
int formatId = (Integer)listitem.getValue();
|
||||||
m_format = ImpFormat.load (formatId);
|
m_format = ImpFormat.load (formatId);
|
||||||
|
|
Loading…
Reference in New Issue