| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- using System;
- using System.Data;
- using System.Drawing;
- using System.Windows.Forms;
- using UAS_MES_NEW.DataOperate;
- using UAS_MES_NEW.Entity;
- using UAS_MES_NEW.PublicForm;
- using UAS_MES_NEW.PublicMethod;
- namespace UAS_MES_NEW.Make
- {
- public partial class Make_OutBoxSnCheckDN : Form
- {
- AutoSizeFormClass asc = new AutoSizeFormClass();
- DataHelper dh;
- LogStringBuilder sql;
- DataTable dt;
- public Make_OutBoxSnCheckDN()
- {
- InitializeComponent();
- }
- private void Make_LabelCheck_Load(object sender, EventArgs e)
- {
- asc.controllInitializeSize(this);
- //聚焦SN号
- pa_outboxcode.Focus();
- //打开界面提示用户:请输入SN
- OperateResult.AppendText(">>请采集箱号\n", Color.Black);
- sql = new LogStringBuilder();
- dh = SystemInf.dh;
- }
- private void Make_LabelCheck_SizeChanged(object sender, EventArgs e)
- {
- asc.controlAutoSize(this);
- }
- bool FindFugeSN = false;
- int RowIndex = 0;
- private void sncode_KeyDown(object sender, KeyEventArgs e)
- {
- //判断是enter事件
- if (e.KeyCode == Keys.Enter)
- {
- if (sncode.Text == "")
- {
- OperateResult.AppendText("<<输入不能为空\n", Color.Red);
- return;
- }
- bool AllCheck = true;
- for (int i = 0; i < CheckSnDGV.Rows.Count; i++)
- {
- if (CheckSnDGV.Rows[i].Cells["WOD_PALLENTORBOX"].Value.ToString() == sncode.Text)
- {
- CheckSnDGV.Rows[i].Cells["pd_checksn1"].Value = sncode.Text;
- FindFugeSN = true;
- }
- }
- if (FindFugeSN)
- {
- FindFugeSN = false;
- OperateResult.AppendText("<<" + sncode.Text + "箱号校验成功\n", Color.Green, sncode);
- }
- else
- {
- OperateResult.AppendText("<<" + sncode.Text + "箱号不存在\n", Color.Red, sncode);
- return;
- }
- if (AllCheck)
- {
- SetCheck set = new SetCheck("OK", Color.Green);
- BaseUtil.SetFormCenter(set);
- set.ShowDialog();
- }
- RefreshQTY();
- }
- }
- private void pa_outboxcode_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- {
- dt = (DataTable)dh.ExecuteSql("select * from wmsoutdetail where WOD_DN='" + pa_outboxcode.Text + "'", "select");
- if (dt.Rows.Count > 0)
- {
- BaseUtil.FillDgvWithDataTable(CheckSnDGV, dt);
- RefreshQTY();
- sncode.Focus();
- }
- else
- {
- OperateResult.AppendText("<<DN号" + pa_outboxcode.Text + "不存在\n", Color.Red);
- }
- }
- }
- private void RefreshQTY()
- {
- int boxnum = 0;
- int palletnum = 0;
- int checkboxnum = 0;
- int checkpallernum = 0;
- for (int i = 0; i < CheckSnDGV.Rows.Count; i++)
- {
- if (CheckSnDGV.Rows[i].Cells["WOD_TYPE"].Value.ToString() == "卡通箱")
- {
- boxnum = boxnum + 1;
- if (CheckSnDGV.Rows[i].Cells["pd_checksn1"].Value != null)
- {
- checkboxnum = checkboxnum + 1;
- }
- }
- if (CheckSnDGV.Rows[i].Cells["WOD_TYPE"].Value.ToString() == "栈板")
- {
- palletnum = palletnum + 1;
- if (CheckSnDGV.Rows[i].Cells["pd_checksn1"].Value != null)
- {
- checkpallernum = checkpallernum + 1;
- }
- }
- }
- QTY.Text = "卡通箱:" + checkboxnum + "/" + boxnum + " 栈板号:" + checkpallernum + "/" + palletnum;
- }
- }
- }
|