IDEMPIERE-54 Problem with included tab with Processed column. Modify dataNew method to use the IsProcessed() method that is working correctly for both included and non-included tab.

(transplanted from 1fed60a328ba9547f8ebea2691ef78368f711ecc)
This commit is contained in:
Heng Sin Low 2011-08-14 07:40:15 +08:00
parent 778b0917d3
commit 368236ddcd
1 changed files with 1 additions and 1 deletions

View File

@ -1121,7 +1121,7 @@ public class GridTab implements DataStatusListener, Evaluatee, Serializable
// but not apply for TabLevel=0 - teo_sarca [ 1673902 ]
if (m_vo.TabLevel > 0 && m_vo.TabNo > 0)
{
boolean processed = "Y".equals(Env.getContext(m_vo.ctx, m_vo.WindowNo, "Processed"));
boolean processed = isProcessed();
// boolean active = "Y".equals(Env.getContext(m_vo.ctx, m_vo.WindowNo, "IsActive"));
if (processed)
{