Specific Service Identification
특정 서비스(업체) 식별 방법
현재(2020-09-02~)
public partial class SA400102 : JERPBaseForm
{
public bool Is비씨태창 { get { return SessionInfo.ServiceID.Equals("20170905004"); } }
public bool Is남도하이텍 { get { return SessionInfo.ServiceID.Equals("20180807001"); } }
protected override void OnLoad(EventArgs e)
{
if (Is비씨태창)
{
// ...
}
else if (Is남도하이텍)
{
// ...
}
}
public override void NewClick()
{
InitControls(groupPanel);
InitControls(grdDetail);
if (Is비씨태창)
checkEditEx1.EditValue = "Y";
// ...
}
}
프로시저에서
~2020-09-02 까지
잘못된 방법
Last updated