Commit ee4c219c 张东亮

出库前关闭碗里检查

1 个父辈 429ebc0b
......@@ -1141,7 +1141,7 @@ namespace OnlineStore.DeviceLibrary
/// <summary>
/// 关闭出库前的碗里检查
/// </summary>
public bool CloseOutStoreCheck = false;
public bool CloseOutStoreCheck = ConfigAppSettings.GetBoolValue("CloseOutStoreCheck", true);
public override bool StartOutstore(InOutParam param)
{
if (InDoorSigCheck())
......
......@@ -105,7 +105,6 @@
this.button10 = new System.Windows.Forms.Button();
this.btnStartVision = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.chkCloseOutStoreCheck = new System.Windows.Forms.CheckBox();
this.lblResult = new System.Windows.Forms.Label();
this.chkBoxCloseCam = new System.Windows.Forms.CheckBox();
this.checkBoxOpenAuto = new System.Windows.Forms.CheckBox();
......@@ -906,7 +905,6 @@
//
// groupBox1
//
this.groupBox1.Controls.Add(this.chkCloseOutStoreCheck);
this.groupBox1.Controls.Add(this.lblResult);
this.groupBox1.Controls.Add(this.chkBoxCloseCam);
this.groupBox1.Controls.Add(this.checkBoxOpenAuto);
......@@ -920,18 +918,6 @@
this.groupBox1.TabStop = false;
this.groupBox1.Text = "操作";
//
// chkCloseOutStoreCheck
//
this.chkCloseOutStoreCheck.AutoSize = true;
this.chkCloseOutStoreCheck.Location = new System.Drawing.Point(568, 22);
this.chkCloseOutStoreCheck.Name = "chkCloseOutStoreCheck";
this.chkCloseOutStoreCheck.Size = new System.Drawing.Size(181, 24);
this.chkCloseOutStoreCheck.TabIndex = 9;
this.chkCloseOutStoreCheck.Text = "关闭出库前的碗里检查";
this.chkCloseOutStoreCheck.UseVisualStyleBackColor = true;
this.chkCloseOutStoreCheck.Visible = false;
this.chkCloseOutStoreCheck.CheckedChanged += new System.EventHandler(this.chkCloseOutStoreCheck_CheckedChanged);
//
// lblResult
//
this.lblResult.AutoSize = true;
......@@ -1136,7 +1122,6 @@
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Label lblResult;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.CheckBox chkCloseOutStoreCheck;
private System.Windows.Forms.ComboBox cmbColor;
private System.Windows.Forms.Button btnOpenImg;
}
......
......@@ -449,10 +449,6 @@ namespace OnlineStore.XLRStore
LogUtil.info($"抽屉升降轴到位");
}
private void chkCloseOutStoreCheck_CheckedChanged(object sender, EventArgs e)
{
boxEquip.CloseOutStoreCheck = chkCloseOutStoreCheck.Checked;
}
private void btnOpenImg_Click(object sender, EventArgs e)
{
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!