BF [ 1996056 ] Report error message is not displayed
BF [ 1998575 ] Document Print is discarding any error
This commit is contained in:
parent
e8d64525fe
commit
9e5d5ada4a
|
@ -52,8 +52,10 @@ import org.compiere.util.*;
|
||||||
* @contributor Victor Perez , e-Evolution.SC FR [ 1757088 ]
|
* @contributor Victor Perez , e-Evolution.SC FR [ 1757088 ]
|
||||||
* @contributor fer_luck@centuryon.com , FR [ 1757088 ]
|
* @contributor fer_luck@centuryon.com , FR [ 1757088 ]
|
||||||
* @author Teo Sarca, SC ARHIPAC SERVICE SRL
|
* @author Teo Sarca, SC ARHIPAC SERVICE SRL
|
||||||
* <li>BF [ 1824621 ] History button can't be canceled
|
* <li>BF [ 1824621 ] History button can't be canceled
|
||||||
* <li>BF [ 1941271 ] VTreePanel is modifying even if is save wasn't successfull
|
* <li>BF [ 1941271 ] VTreePanel is modifying even if is save wasn't successfull
|
||||||
|
* <li>BF [ 1996056 ] Report error message is not displayed
|
||||||
|
* <li>BF [ 1998575 ] Document Print is discarding any error
|
||||||
* @author victor.perez@e-evolution.com
|
* @author victor.perez@e-evolution.com
|
||||||
* @see FR [ 1966328 ] New Window Info to MRP and CRP into View http://sourceforge.net/tracker/index.php?func=detail&aid=1966328&group_id=176962&atid=879335
|
* @see FR [ 1966328 ] New Window Info to MRP and CRP into View http://sourceforge.net/tracker/index.php?func=detail&aid=1966328&group_id=176962&atid=879335
|
||||||
*
|
*
|
||||||
|
@ -1920,6 +1922,7 @@ public final class APanel extends CPanel
|
||||||
pi.setPrintPreview(printPreview);
|
pi.setPrintPreview(printPreview);
|
||||||
|
|
||||||
ProcessCtl.process(this, m_curWindowNo, pi, null); // calls lockUI, unlockUI
|
ProcessCtl.process(this, m_curWindowNo, pi, null); // calls lockUI, unlockUI
|
||||||
|
statusBar.setStatusLine(pi.getSummary(), pi.isError());
|
||||||
} // cmd_print
|
} // cmd_print
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2361,6 +2364,11 @@ public final class APanel extends CPanel
|
||||||
ADialog.info(m_curWindowNo, this, Env.getHeader(m_ctx, m_curWindowNo),
|
ADialog.info(m_curWindowNo, this, Env.getHeader(m_ctx, m_curWindowNo),
|
||||||
pi.getTitle(), logInfo); // clear text
|
pi.getTitle(), logInfo); // clear text
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Update Status Line
|
||||||
|
setStatusLine(pi.getSummary(), pi.isError());
|
||||||
|
}
|
||||||
} // unlockUI
|
} // unlockUI
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue