Commit 9d8c3922 刘韬

1

1 个父辈 0818bd99
......@@ -939,11 +939,7 @@ 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);
DebugStatus(true);
}
else
{
......
......@@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SO951-HC-ACSingleStore 265d3ddac1ce7d5cc5deb01dc23b0a8c1768a1f2")]
[assembly: AssemblyProduct("SO951-HC-ACSingleStore 0818bd99307b8d6c0337a100c2c6c2f524782d02")]
[assembly: AssemblyCopyright("Copyright ? 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
......
......@@ -357,6 +357,13 @@ namespace OnlineStore.ACSingleStore.useControl
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;
......@@ -371,6 +378,12 @@ namespace OnlineStore.ACSingleStore.useControl
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;
......@@ -384,6 +397,12 @@ namespace OnlineStore.ACSingleStore.useControl
}
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)
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!