Files
MoonPro.net/MP-ADM/CTrackBCode.aspx.cs
T
2018-12-13 13:18:37 +01:00

26 lines
677 B
C#

using SteamWare;
using System;
namespace MP_ADM
{
public partial class CTrackBCode : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
checkEnabled();
string codPre = memLayer.ML.CRS("OptAdmCTrack_CodPre");
mod_barcode.codOrdPre = codPre != "" ? codPre : "OPR";
}
private void checkEnabled()
{
bool OptAdmBCodeEnabled = memLayer.ML.CRB("OptAdmCTrackEnabled");
divContent.Visible = OptAdmBCodeEnabled;
string messaggio = "";
if (!OptAdmBCodeEnabled)
{
messaggio = "Attenzione: Gestione CTrack disabilitata";
}
lblDataImportOut.Text = messaggio;
}
}
}