This commit is contained in:
chi
2020-12-02 16:22:40 +09:00
parent 1d7a24adbe
commit 0f44fbe9f8
18 changed files with 861 additions and 400 deletions

View File

@@ -37,8 +37,10 @@ namespace FPJ0000
private void __Load(object sender, EventArgs e)
{
this.Show();
this.bs.Filter = "Storage <> 'B-CENTER'";
Application.DoEvents();
button1.PerformClick();
}
void refreshData(string div)
{
@@ -168,9 +170,9 @@ namespace FPJ0000
private void chkZeroCount_Click(object sender, EventArgs e)
{
if (chkZeroCount.Checked)
this.bs.Filter = "CurrentQty > 0";
this.bs.Filter = "CurrentQty > 0 and Storage <> 'B-CENTER'";
else
this.bs.Filter = "";
this.bs.Filter = "Storage <> 'B-CENTER'";
}
}
}