IDEMPIERE-2404 Position in first pending node in Setup Wizard / when opening Setup Wizard the first time the context help of the node is not shown
This commit is contained in:
parent
1ff06a2668
commit
f2cda463d1
|
@ -50,6 +50,7 @@ public class SystemIDs
|
|||
public final static int FORM_PAYMENT_PRINT_EXPORT = 106;
|
||||
public final static int FORM_ARCHIVEVIEWER = 118;
|
||||
public final static int FORM_REPORT_WIZARD = 200002;
|
||||
public final static int FORM_SETUP_WIZARD = 200000;
|
||||
|
||||
public final static int MENU_NOTICE = 233;
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ public class WSetupWizard extends SetupWizard implements IFormController, EventL
|
|||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
log.log(Level.SEVERE, "VTreeMaintenance.init", ex);
|
||||
log.log(Level.SEVERE, "WSetupWizard.init", ex);
|
||||
}
|
||||
} // init
|
||||
|
||||
|
|
|
@ -61,6 +61,7 @@ import org.compiere.model.GridTab;
|
|||
import org.compiere.model.MQuery;
|
||||
import org.compiere.model.MRole;
|
||||
import org.compiere.model.MTable;
|
||||
import org.compiere.model.SystemIDs;
|
||||
import org.compiere.model.X_AD_CtxHelp;
|
||||
import org.compiere.util.CLogger;
|
||||
import org.compiere.util.Env;
|
||||
|
@ -669,6 +670,10 @@ public class DefaultDesktop extends TabbedDesktop implements MenuListener, Seria
|
|||
|
||||
@Override
|
||||
public void updateHelpContext(String ctxType, int recordId) {
|
||||
// don't show context for SetupWizard Form, is managed internally using wf and node ctxhelp
|
||||
if (recordId == SystemIDs.FORM_SETUP_WIZARD && X_AD_CtxHelp.CTXTYPE_Form.equals(ctxType))
|
||||
return;
|
||||
|
||||
Clients.response(new AuScript("zWatch.fire('onFieldTooltip', this);"));
|
||||
helpController.renderCtxHelp(ctxType, recordId);
|
||||
|
||||
|
|
Loading…
Reference in New Issue