Fix [ 2053140 ] Mandatory lookup fields autofilled (badly)
This commit is contained in:
parent
dd231952a6
commit
5d75884ae7
|
@ -1,5 +1,5 @@
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
* Product: Adempiere ERP & CRM Smart Business Solution *
|
* Product: Adempiere ERP & CRM Smart Business Solution *
|
||||||
* Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. *
|
* Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. *
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
* under the terms version 2 of the GNU General Public License as published *
|
* under the terms version 2 of the GNU General Public License as published *
|
||||||
|
@ -16,10 +16,16 @@
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
package org.compiere.model;
|
package org.compiere.model;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.Serializable;
|
||||||
import java.util.*;
|
import java.util.ArrayList;
|
||||||
import javax.swing.*;
|
|
||||||
import org.compiere.util.*;
|
import javax.swing.AbstractListModel;
|
||||||
|
import javax.swing.MutableComboBoxModel;
|
||||||
|
|
||||||
|
import org.compiere.util.CLogger;
|
||||||
|
import org.compiere.util.KeyNamePair;
|
||||||
|
import org.compiere.util.NamePair;
|
||||||
|
import org.compiere.util.ValueNamePair;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base Class for MLookup, MLocator.
|
* Base Class for MLookup, MLocator.
|
||||||
|
@ -277,14 +283,15 @@ public abstract class Lookup extends AbstractListModel
|
||||||
obj = m_selectedObject;
|
obj = m_selectedObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// comment next code because of bug [ 2053140 ] Mandatory lookup fields autofilled (badly)
|
||||||
// if nothing selected & mandatory, select first
|
// if nothing selected & mandatory, select first
|
||||||
if (obj == null && mandatory && p_data.size() > 0)
|
// if (obj == null && mandatory && p_data.size() > 0)
|
||||||
{
|
// {
|
||||||
obj = p_data.get(0);
|
// obj = p_data.get(0);
|
||||||
m_selectedObject = obj;
|
// m_selectedObject = obj;
|
||||||
log.finest(getColumnName() + ": SelectedValue SetToFirst=" + obj);
|
// log.finest(getColumnName() + ": SelectedValue SetToFirst=" + obj);
|
||||||
// fireContentsChanged(this, -1, -1);
|
// // fireContentsChanged(this, -1, -1);
|
||||||
}
|
// }
|
||||||
|
|
||||||
m_loaded = true;
|
m_loaded = true;
|
||||||
fireContentsChanged(this, 0, p_data.size());
|
fireContentsChanged(this, 0, p_data.size());
|
||||||
|
|
Loading…
Reference in New Issue