Commit 5bbd045b 刘韬

1

1 个父辈 30868c01
......@@ -316,6 +316,11 @@ namespace OnlineStore.ACSingleStore
}
private void btnOutStore_Click(object sender, EventArgs e)
{
FrmPwd fw = new FrmPwd(10, true);
DialogResult result = fw.ShowDialog(this);
if (!result.Equals(DialogResult.OK))
return;
if (store.storeRunStatus >= StoreRunStatus.HomeMoving)
{
string selectPositionNum = cmbPosition.Text;
......@@ -330,6 +335,11 @@ namespace OnlineStore.ACSingleStore
private void btnInStore_Click(object sender, EventArgs e)
{
FrmPwd fw = new FrmPwd(10, true);
DialogResult result = fw.ShowDialog(this);
if (!result.Equals(DialogResult.OK))
return;
if (store.storeRunStatus >= StoreRunStatus.HomeMoving)
{
string selectPositionNum = cmbPosition.Text;
......@@ -661,6 +671,11 @@ namespace OnlineStore.ACSingleStore
private void btnStartAuTo_Click(object sender, EventArgs e)
{
FrmPwd fw = new FrmPwd(10, true);
DialogResult result = fw.ShowDialog(this);
if (!result.Equals(DialogResult.OK))
return;
if (store.storeRunStatus >= StoreRunStatus.HomeMoving)
{
if (store.autoNext)
......@@ -1059,10 +1074,6 @@ namespace OnlineStore.ACSingleStore
{
if (btnDebug.Text.Equals(ResourceCulture.GetString("启用调试")))
{
FrmPwd fw = new FrmPwd(10, true);
DialogResult result = fw.ShowDialog(this);
if (result.Equals(DialogResult.OK))
DebugStatus(true);
}
else
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!