IDEMPIERE-1429 Report Wizard is able to change system templates from within client
This commit is contained in:
parent
852daf0224
commit
08f6df1992
|
@ -671,7 +671,10 @@ public class ZkReportViewer extends Window implements EventListener<Event>, ITab
|
|||
.append(m_reportEngine.getRowCount());
|
||||
statusBar.setStatusLine(sb.toString());
|
||||
//
|
||||
bWizard.setDisabled( (m_reportEngine.getPrintFormat() == null || m_reportEngine.getPrintFormat().getAD_Client_ID() == 0) );
|
||||
bWizard.setDisabled(
|
||||
( m_reportEngine.getPrintFormat() == null
|
||||
|| (m_reportEngine.getPrintFormat().getAD_Client_ID() == 0 && Env.getAD_Client_ID(Env.getCtx()) != 0)
|
||||
|| m_reportEngine.getPrintFormat().isForm()));
|
||||
} // revalidate
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue