BF [ 1996056 ] Report error message is not displayed

BF [ 1998575 ] Document Print is discarding any error
This commit is contained in:
teo_sarca 2008-06-20 11:36:10 +00:00
parent e8d64525fe
commit 9e5d5ada4a
1 changed files with 10 additions and 2 deletions

View File

@ -54,6 +54,8 @@ import org.compiere.util.*;
* @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
/** /**