|
|
|
@ -71,7 +71,7 @@ namespace Rs.MotionPlat
|
|
|
|
|
{
|
|
|
|
|
cboxTestMode.Items.Add("GRR");
|
|
|
|
|
cboxTestMode.Items.Add("AUDIT");
|
|
|
|
|
cboxTestMode.SelectedIndex = 0;
|
|
|
|
|
//cboxTestMode.SelectedIndex = 0;
|
|
|
|
|
}
|
|
|
|
|
else if(GlobalUser.IsSuper()||GlobalUser.IsVender())
|
|
|
|
|
{
|
|
|
|
@ -785,6 +785,11 @@ namespace Rs.MotionPlat
|
|
|
|
|
|
|
|
|
|
private void btnSave_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if(cboxTestMode.SelectedItem == null || cboxTestMode.SelectedItem.ToString().Trim()=="")
|
|
|
|
|
{
|
|
|
|
|
Msg.ShowError("Testmode cann't empty");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
SysConfigParam.Update("LotName", txtLotName.Text.Trim());
|
|
|
|
|
SysConfigParam.Update("TestMethod", cboxTestMethod.SelectedItem.ToString());
|
|
|
|
|
SysConfigParam.Update("TestMode", cboxTestMode.SelectedItem.ToString());
|
|
|
|
|