IDEMPIERE-1958 Incorrect table start position in Table Element report layout code
This commit is contained in:
parent
b8c2ed4b2b
commit
269a20ae82
|
|
@ -1230,8 +1230,8 @@ public class TableElement extends PrintElement
|
||||||
int startX = (int)pageStart.getX();
|
int startX = (int)pageStart.getX();
|
||||||
int startY = (int)pageStart.getY();
|
int startY = (int)pageStart.getY();
|
||||||
// Table Start
|
// Table Start
|
||||||
startX += pageXindex == 0 ? m_firstPage.x : m_nextPages.x;
|
startX += pageIndex == 0 ? m_firstPage.x : m_nextPages.x;
|
||||||
startY += pageYindex == 0 ? m_firstPage.y : m_nextPages.y;
|
startY += pageIndex == 0 ? m_firstPage.y : m_nextPages.y;
|
||||||
if (DEBUG_PRINT)
|
if (DEBUG_PRINT)
|
||||||
if (log.isLoggable(Level.FINEST)) log.finest("PageStart=" + pageStart + ", StartTable x=" + startX + ", y=" + startY);
|
if (log.isLoggable(Level.FINEST)) log.finest("PageStart=" + pageStart + ", StartTable x=" + startX + ", y=" + startY);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue