public GDPRRestoreProcess()
        {
            this.Actions["Schedule"].SetVisible(false);

            ObfuscatedItems.SetSelected <SMPersonalDataIndex.selected>();

            ObfuscatedItems.SetProcessVisible(false);
            ObfuscatedItems.SetProcessAllVisible(false);
        }
        public RevalueGLAccounts()
        {
            var curCMSetup = cmsetup.Current;
            var curGLSetup = glsetup.Current;

            if (PXAccess.FeatureInstalled <FeaturesSet.multicurrency>() != true)
            {
                throw new Exception(Messages.MultiCurrencyNotActivated);
            }
            GLAccountList.SetProcessCaption(Messages.Revalue);
            GLAccountList.SetProcessAllVisible(false);

            PXUIFieldAttribute.SetEnabled <RevaluedGLHistory.finPtdRevalued>(GLAccountList.Cache, null, true);
        }
        public RevalueGLAccounts()
        {
            object setup = cmsetup.Current;

            setup = glsetup.Current;
            if (cmsetup.Current.MCActivated != true)
            {
                throw new Exception(Messages.MultiCurrencyNotActivated);
            }
            GLAccountList.SetProcessCaption(Messages.Revalue);
            GLAccountList.SetProcessAllVisible(false);

            PXUIFieldAttribute.SetEnabled <RevaluedGLHistory.finPtdRevalued>(GLAccountList.Cache, null, true);
        }
Exemple #4
0
 public ICMSummaryMaint()
 {
     ICMList.SetProcessAllVisible(false);
     ICMList.SetProcessVisible(false);
 }