BF [ 2874646 ] GridField issue when a lookup is key

https://sourceforge.net/tracker/?func=detail&aid=2874646&group_id=176962&atid=879332
This commit is contained in:
teo_sarca 2009-10-10 15:46:11 +00:00
parent f679050023
commit 37536f2b3f
1 changed files with 7 additions and 4 deletions

View File

@ -53,9 +53,12 @@ import org.compiere.util.Evaluator;
* *
* @author Jorg Janke * @author Jorg Janke
* @author Victor Perez , e-Evolution.SC FR [ 1757088 ], [1877902] Implement JSR 223 Scripting APIs to Callout * @author Victor Perez , e-Evolution.SC FR [ 1757088 ], [1877902] Implement JSR 223 Scripting APIs to Callout
* http://sourceforge.net/tracker/?func=detail&atid=879335&aid=1877902&group_id=176962 to FR [1877902]
* @author Carlos Ruiz, qss FR [1877902] * @author Carlos Ruiz, qss FR [1877902]
* @author Juan David Arboleda (arboleda), GlobalQSS, [ 1795398 ] Process Parameter: add display and readonly logic * @author Juan David Arboleda (arboleda), GlobalQSS, [ 1795398 ] Process Parameter: add display and readonly logic
* @see http://sourceforge.net/tracker/?func=detail&atid=879335&aid=1877902&group_id=176962 to FR [1877902] * @author Teo Sarca, teo.sarca@gmail.com
* <li>BF [ 2874646 ] GridField issue when a lookup is key
* https://sourceforge.net/tracker/?func=detail&aid=2874646&group_id=176962&atid=879332
* @version $Id: GridField.java,v 1.5 2006/07/30 00:51:02 jjanke Exp $ * @version $Id: GridField.java,v 1.5 2006/07/30 00:51:02 jjanke Exp $
*/ */
public class GridField public class GridField
@ -213,12 +216,12 @@ public class GridField
public boolean isLookup() public boolean isLookup()
{ {
boolean retValue = false; boolean retValue = false;
if (m_vo.IsKey) if (DisplayType.isLookup(m_vo.displayType))
retValue = true;
else if (m_vo.IsKey)
retValue = false; retValue = false;
// else if (m_vo.ColumnName.equals("CreatedBy") || m_vo.ColumnName.equals("UpdatedBy")) // else if (m_vo.ColumnName.equals("CreatedBy") || m_vo.ColumnName.equals("UpdatedBy"))
// retValue = false; // retValue = false;
else if (DisplayType.isLookup(m_vo.displayType))
retValue = true;
else if (m_vo.displayType == DisplayType.Location else if (m_vo.displayType == DisplayType.Location
|| m_vo.displayType == DisplayType.Locator || m_vo.displayType == DisplayType.Locator
|| m_vo.displayType == DisplayType.Account || m_vo.displayType == DisplayType.Account