Files
MoonPro.net/MP-ADM/approvazioneProd.aspx.cs
T
Samuele E. Locatelli 91ccb018af Code cleanup con CodeMaid
2020-09-11 12:45:52 +02:00

25 lines
619 B
C#

using SteamWare;
using System;
namespace MP_ADM
{
public partial class approvazioneProd : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
checkEnabled();
}
private void checkEnabled()
{
bool optPar = memLayer.ML.CRB("OptAdmApprProdEnabled");
divContent.Visible = optPar;
string messaggio = "";
if (!optPar)
{
messaggio = "Attenzione: gestione approvazione produzione disabilitata";
}
lblDataImportOut.Text = messaggio;
}
}
}