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:
parent
778b0917d3
commit
368236ddcd
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue