Files
MoonPro.net/MP-ADM/approvazioneProd.aspx.cs
T
2018-12-20 09:31:48 +01:00

25 lines
543 B
C#

using SteamWare;
using System;
namespace MP_ADM
{
public partial class approvazioneProd : System.Web.UI.Page
{
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;
}
}
}