25 lines
543 B
C#
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;
|
|
}
|
|
}
|
|
} |