|
@@ -164,6 +164,10 @@ namespace UAS_LabelMachine
|
|
|
{
|
|
|
dgv.SortMode = DataGridViewColumnSortMode.NotSortable;
|
|
|
}
|
|
|
+ foreach (DataGridViewColumn dgv in GridPrcode.Columns)
|
|
|
+ {
|
|
|
+ dgv.SortMode = DataGridViewColumnSortMode.NotSortable;
|
|
|
+ }
|
|
|
int ScreenWidth = Screen.GetWorkingArea(pt).Width;
|
|
|
//设置获取当前屏幕大小自动全屏但是保留任务栏
|
|
|
Rectangle ScreenArea = Screen.GetWorkingArea(this);
|
|
@@ -211,6 +215,8 @@ namespace UAS_LabelMachine
|
|
|
GetInOutInfAndLabelFile();
|
|
|
}
|
|
|
int PassTenCount = 1;
|
|
|
+
|
|
|
+ int PassSixTenCount = 1;
|
|
|
//输入框Enter事件
|
|
|
private void Input_KeyDown(object sender, KeyEventArgs e)
|
|
|
{
|
|
@@ -366,8 +372,13 @@ namespace UAS_LabelMachine
|
|
|
string pib_barcode = Data.ContainsKey("SERIAL") ? Data["SERIAL"] : "";
|
|
|
//获取ID
|
|
|
PIBID = dh.GetSEQ("prodiobarcode_seq", CodeCount);
|
|
|
+
|
|
|
+ //加载完数据之后进行容量的判断
|
|
|
+
|
|
|
string pib_outboxcode2 = "";
|
|
|
- if (OutBoxNum.Text == "新增")
|
|
|
+
|
|
|
+ int BoxNum = LabelInfDataTable.Select("pib_outboxcode2='" + OutBoxNum.Text + "'").Length;
|
|
|
+ if (BoxNum + CodeCount > OutboxCapacity.Value)
|
|
|
{
|
|
|
string maxoutbox = dh.getFieldDataByCondition("prodiobarcode", "max(to_number(pib_outboxcode2))", "pib_inoutno='" + pi_inoutno.Text + "'").ToString();
|
|
|
//如果没有则从开始插入
|
|
@@ -379,34 +390,74 @@ namespace UAS_LabelMachine
|
|
|
{
|
|
|
pib_outboxcode2 = (int.Parse(maxoutbox) + 1).ToString();
|
|
|
}
|
|
|
+ OutBoxNum.Items.Clear();
|
|
|
+
|
|
|
+ DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' order by to_number(pib_outboxcode2) desc", "select");
|
|
|
+ ItemObject io = new ItemObject("新增", "新增");
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ io = new ItemObject("全部", "全部");
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ io = new ItemObject(pib_outboxcode2, pib_outboxcode2);
|
|
|
+ PassSixTenCount = 1;
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+
|
|
|
+ for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
+ {
|
|
|
+ string piboutboxcode2 = dt.Rows[i]["pib_outboxcode2"].ToString();
|
|
|
+ io = new ItemObject(piboutboxcode2, piboutboxcode2);
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ }
|
|
|
+ if (OutBoxNum.Items.Count > 2)
|
|
|
+ OutBoxNum.SelectedIndex = 2;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- pib_outboxcode2 = OutBoxNum.Text;
|
|
|
+ if (OutBoxNum.Text == "新增")
|
|
|
+ {
|
|
|
+ string maxoutbox = dh.getFieldDataByCondition("prodiobarcode", "max(to_number(pib_outboxcode2))", "pib_inoutno='" + pi_inoutno.Text + "'").ToString();
|
|
|
+ //如果没有则从开始插入
|
|
|
+ if (maxoutbox == "")
|
|
|
+ {
|
|
|
+ pib_outboxcode2 = "1";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ pib_outboxcode2 = (int.Parse(maxoutbox) + 1).ToString();
|
|
|
+ }
|
|
|
+ OutBoxNum.Items.Clear();
|
|
|
+ PassSixTenCount = 1;
|
|
|
+ DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' order by to_number(pib_outboxcode2) desc", "select");
|
|
|
+ ItemObject io = new ItemObject("新增", "新增");
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ io = new ItemObject("全部", "全部");
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ io = new ItemObject(pib_outboxcode2, pib_outboxcode2);
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
+ {
|
|
|
+ string piboutboxcode2 = dt.Rows[i]["pib_outboxcode2"].ToString();
|
|
|
+ io = new ItemObject(piboutboxcode2, piboutboxcode2);
|
|
|
+ OutBoxNum.Items.Add(io);
|
|
|
+ }
|
|
|
+ if (OutBoxNum.Items.Count > 2)
|
|
|
+ OutBoxNum.SelectedIndex = 2;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ pib_outboxcode2 = OutBoxNum.Text;
|
|
|
+ }
|
|
|
}
|
|
|
if (OutBoxNum.Text == "全部")
|
|
|
{
|
|
|
MessageBox.Show("请选择指定箱号或者新增");
|
|
|
return;
|
|
|
}
|
|
|
- //加载完数据之后进行容量的判断
|
|
|
- int BoxNum = LabelInfDataTable.Select("pib_outboxcode2='" + OutBoxNum.Text + "'").Length;
|
|
|
- if (BoxNum + CodeCount > OutboxCapacity.Value)
|
|
|
- {
|
|
|
- string close = MessageBox.Show(this.ParentForm, "箱号【" + OutBoxNum.Text + "】后超数量为" + (BoxNum + CodeCount) + ",超出容量" + OutboxCapacity.Value + ",是否继续?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
|
|
|
- if (close != "Yes")
|
|
|
- {
|
|
|
- Input.SelectAll();
|
|
|
- receiveClient.Client.Send(Encoding.ASCII.GetBytes(GetSendCode("ReadId1|,|NG|,|Y")));
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
//计算当前采集数量
|
|
|
string collectqty = dh.getFieldDataByCondition("prodiobarcode", "sum(pib_qty)", "pib_inoutno='" + pi_inoutno.Text + "' and pib_prodcode='" + CurrentPrCode + "' and pib_pdno='" + CurrentPDNO + "'").ToString();
|
|
|
double CollectQty = (collectqty == "" ? 0 : double.Parse(collectqty));
|
|
|
if (Convert.ToDouble((CollectQty + CollectNum).ToString("0.000")) > Convert.ToDouble(double.Parse(CurrentPrCount).ToString("0.000")))
|
|
|
{
|
|
|
- richTextAutoBottom1.AppendText("物料" + Data["PRCODE"] + "采集后数量为" + (CollectQty + CollectNum) + ",【超出】本行出货数量" + CurrentPrCount+"\n");
|
|
|
+ richTextAutoBottom1.AppendText("物料" + Data["PRCODE"] + "采集后数量为" + (CollectQty + CollectNum) + ",【超出】本行出货数量" + CurrentPrCount + "\n");
|
|
|
receiveClient.Client.Send(Encoding.ASCII.GetBytes(GetSendCode("ReadId1|,|NG|,|Y")));
|
|
|
Input.SelectAll();
|
|
|
return;
|
|
@@ -534,23 +585,23 @@ namespace UAS_LabelMachine
|
|
|
}
|
|
|
}
|
|
|
Input.Clear();
|
|
|
- if (OutBoxNum.Text == "新增")
|
|
|
- {
|
|
|
- OutBoxNum.Items.Clear();
|
|
|
- DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' order by to_number(pib_outboxcode2) desc", "select");
|
|
|
- ItemObject io = new ItemObject("新增", "新增");
|
|
|
- OutBoxNum.Items.Add(io);
|
|
|
- io = new ItemObject("全部", "全部");
|
|
|
- OutBoxNum.Items.Add(io);
|
|
|
- for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
- {
|
|
|
- string piboutboxcode2 = dt.Rows[i]["pib_outboxcode2"].ToString();
|
|
|
- io = new ItemObject(piboutboxcode2, piboutboxcode2);
|
|
|
- OutBoxNum.Items.Add(io);
|
|
|
- }
|
|
|
- if (OutBoxNum.Items.Count > 2)
|
|
|
- OutBoxNum.SelectedIndex = 2;
|
|
|
- }
|
|
|
+ //if (OutBoxNum.Text == "新增")
|
|
|
+ //{
|
|
|
+ // OutBoxNum.Items.Clear();
|
|
|
+ // DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' order by to_number(pib_outboxcode2) desc", "select");
|
|
|
+ // ItemObject io = new ItemObject("新增", "新增");
|
|
|
+ // OutBoxNum.Items.Add(io);
|
|
|
+ // io = new ItemObject("全部", "全部");
|
|
|
+ // OutBoxNum.Items.Add(io);
|
|
|
+ // for (int i = 0; i < dt.Rows.Count; i++)
|
|
|
+ // {
|
|
|
+ // string piboutboxcode2 = dt.Rows[i]["pib_outboxcode2"].ToString();
|
|
|
+ // io = new ItemObject(piboutboxcode2, piboutboxcode2);
|
|
|
+ // OutBoxNum.Items.Add(io);
|
|
|
+ // }
|
|
|
+ // if (OutBoxNum.Items.Count > 2)
|
|
|
+ // OutBoxNum.SelectedIndex = 2;
|
|
|
+ //}
|
|
|
}
|
|
|
|
|
|
private void AutoPrintSingleLabel()
|
|
@@ -706,6 +757,7 @@ namespace UAS_LabelMachine
|
|
|
break;
|
|
|
}
|
|
|
PassTenCount = 1;
|
|
|
+ PassSixTenCount = 1;
|
|
|
if (pi_cardcode.Text != "ZGCC")
|
|
|
{
|
|
|
CustomerLabel.Enabled = false;
|
|
@@ -1291,6 +1343,8 @@ namespace UAS_LabelMachine
|
|
|
{
|
|
|
dh.BatchInsert("delete from prodiobarcode where pib_id=:pib_id", new string[] { "pib_id" }, DeleteID.ToArray());
|
|
|
dh.UpdateByCondition("CS$InoutPrcode", "collectednum=(select nvl(sum(pib_qty),0) from prodiobarcode where pib_inoutno=pd_inoutno and pib_pdno=pd_pdno)", "pd_inoutno='" + pi_inoutno.Text + "'");
|
|
|
+ dh.UpdateByCondition("CS$InoutPrcode", "checknum=CollectedNum/pjd_zxbzs_user", "pd_inoutno='" + pi_inoutno.Text + "'");
|
|
|
+
|
|
|
LogManager.DoCommandLog(pi_inoutno.Text, User.UserCode, "删除明细", "删除明细成功");
|
|
|
MessageBox.Show("删除成功", "提示");
|
|
|
Input.Clear();
|
|
@@ -1346,11 +1400,20 @@ namespace UAS_LabelMachine
|
|
|
string SQL = "";
|
|
|
if (OutBoxNum.Text != "全部")
|
|
|
{
|
|
|
- LogicHandler.GetDataSQL(PI_ID, "and pib_outboxcode2='" + OutBoxNum.Text + "'", out SQL);
|
|
|
+ //LogicHandler.GetDataSQL(PI_ID, "and pib_outboxcode2='" + OutBoxNum.Text + "'", out SQL);
|
|
|
+ SQL = "select pib_boxweight,pib_totalweight,pd_custprodcode,pd_custprodspec,nvl(pib_midifprint,0)pib_midifprint,pib_custmidboxcode,pd_pocode,pjd_orispeccode," +
|
|
|
+ "pib_madein,pib_custbarcode,pib_custoutboxcode,pib_id,pib_datecode1,pib_pdid,pib_piid,pib_pdno,pib_prodcode,pib_brand,pr_vendprodcode,pib_lotno,pib_datecode," +
|
|
|
+ "week_to_date(pib_datecode) datecode1,pib_qty,pr_spec,pr_zxbzs,pr_unit,pib_barcode,pib_outboxcode1,pib_outboxcode2,nvl(pib_ifprint, 0)pib_ifprint,pd_remark,pd_remark2 from prodiobarcode left join " +
|
|
|
+ "prodiodetail on pib_piid = pd_piid and pd_pdno = pib_pdno and pd_prodcode = pib_prodcode left join product on pr_code = pib_prodcode left join sale on sa_code = pib_ordercode left join " +
|
|
|
+ "PRODJOINVENDDETAIL on pjd_brand = pd_brand and pjd_prodcode = pd_prodcode where pib_piid = '" + PI_ID + "' and pib_outboxcode2='" + OutBoxNum.Text + "' order by to_number(pib_outboxcode2),pib_id,pd_prodcode";
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- LogicHandler.GetDataSQL(PI_ID, "", out SQL);
|
|
|
+ SQL = "select pib_boxweight,pib_totalweight,pd_custprodcode,pd_custprodspec,nvl(pib_midifprint,0)pib_midifprint,pib_custmidboxcode,pd_pocode,pjd_orispeccode," +
|
|
|
+ "pib_madein,pib_custbarcode,pib_custoutboxcode,pib_id,pib_datecode1,pib_pdid,pib_piid,pib_pdno,pib_prodcode,pib_brand,pr_vendprodcode,pib_lotno,pib_datecode," +
|
|
|
+ "week_to_date(pib_datecode) datecode1,pib_qty,pr_spec,pr_zxbzs,pr_unit,pib_barcode,pib_outboxcode1,pib_outboxcode2,nvl(pib_ifprint, 0)pib_ifprint,pd_remark,pd_remark2 from prodiobarcode left join " +
|
|
|
+ "prodiodetail on pib_piid = pd_piid and pd_pdno = pib_pdno and pd_prodcode = pib_prodcode left join product on pr_code = pib_prodcode left join sale on sa_code = pib_ordercode left join " +
|
|
|
+ "PRODJOINVENDDETAIL on pjd_brand = pd_brand and pjd_prodcode = pd_prodcode where pib_piid = '" + PI_ID + "' order by to_number(pib_outboxcode2),pib_id,pd_prodcode";
|
|
|
}
|
|
|
LabelInfDataTable = (DataTable)dh.ExecuteSql(SQL, "select");
|
|
|
BoxCount.Text = LabelInfDataTable.Compute("sum(pib_qty)", "1=1").ToString() + "KPCS";
|
|
@@ -2087,7 +2150,7 @@ namespace UAS_LabelMachine
|
|
|
|
|
|
private void PackMidBox_Click(object sender, EventArgs e)
|
|
|
{
|
|
|
- DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' order by pib_outboxcode2", "select");
|
|
|
+ DataTable dt = (DataTable)dh.ExecuteSql("select distinct pib_outboxcode2 from prodiobarcode where pib_inoutno='" + pi_inoutno.Text + "' and pib_outboxcode2='" + OutBoxNum.Text + "' order by pib_outboxcode2", "select");
|
|
|
DataTable dt1 = null;
|
|
|
int GetNumCount = 0;
|
|
|
for (int i = 0; i < dt.Rows.Count; i++)
|
|
@@ -2495,7 +2558,7 @@ namespace UAS_LabelMachine
|
|
|
if (getMsg.Contains("ReadId"))
|
|
|
{
|
|
|
string msgStr = getMsg.Trim('\0').Replace("ReadId1|,|", "");
|
|
|
- msgStr = Regex.Match(msgStr, @"[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+").Value;
|
|
|
+ msgStr = Regex.Match(msgStr, @"[-{0,5}/{0,5}.{0,5}0-9A-Za-z]+\*[0-9A-Za-z]+\*[0-9A-Za-z]+\*[0-9A-Za-z]+\*[A-Za-z0-9]+").Value;
|
|
|
//设置索引和内容
|
|
|
// msgStr = msgStr.Split(ps_split.ToCharArray()[0])[dataindex];
|
|
|
Input.Text = msgStr;
|
|
@@ -2537,7 +2600,7 @@ namespace UAS_LabelMachine
|
|
|
if (getMsg.Contains("ReadId3"))
|
|
|
{
|
|
|
string msgStr = getMsg.Trim('\0').Replace("ReadId3|,|", "");
|
|
|
- string temp = Regex.Match(msgStr, @"[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+\*[A-Za-z0-9]+").Value;
|
|
|
+ string temp = Regex.Match(msgStr, @"[-{0,5}/{0,5}.{0,5}0-9A-Za-z]+\*[0-9A-Za-z]+\*[0-9A-Za-z]+\*[0-9A-Za-z]+\*[A-Za-z0-9]+").Value;
|
|
|
string pr_code = "";
|
|
|
//如果不存在原厂标签的话
|
|
|
if (temp != "")
|
|
@@ -2545,6 +2608,21 @@ namespace UAS_LabelMachine
|
|
|
pr_code = temp.Split('*')[0];
|
|
|
}
|
|
|
//如果允许混料的话
|
|
|
+ bool OutBoxSplit = false;
|
|
|
+ if (PassSixTenCount > OutboxCapacity.Value)
|
|
|
+ {
|
|
|
+ string close = MessageBox.Show(this.ParentForm, "此箱号采集后超数量,是否继续?", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question).ToString();
|
|
|
+ if (close == "Yes")
|
|
|
+ {
|
|
|
+ OutBoxSplit = true;
|
|
|
+ PassSixTenCount = 1;
|
|
|
+ //sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|0"));
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
if (MixPrCode.Checked)
|
|
|
{
|
|
|
bool SendLast = false;
|
|
@@ -2568,7 +2646,6 @@ namespace UAS_LabelMachine
|
|
|
}
|
|
|
if (PassTenCount == MidboxCapacity.Value)
|
|
|
{
|
|
|
- Console.WriteLine("ReadId3|,|OK|,|1");
|
|
|
sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|1"));
|
|
|
PassTenCount = 0;
|
|
|
}
|
|
@@ -2577,10 +2654,12 @@ namespace UAS_LabelMachine
|
|
|
if (SendLast)
|
|
|
{
|
|
|
sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|1"));
|
|
|
+ MessageBox.Show("采集完此行数据,是否继续?", "提示");
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|0"));
|
|
|
+ if (!OutBoxSplit)
|
|
|
+ sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|0"));
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -2610,6 +2689,7 @@ namespace UAS_LabelMachine
|
|
|
checknum = 0;
|
|
|
SendLast = true;
|
|
|
PassTenCount = 0;
|
|
|
+ MessageBox.Show("采集完此行数据,是否继续?", "提示");
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
@@ -2617,22 +2697,24 @@ namespace UAS_LabelMachine
|
|
|
//达到了中盒容量之后
|
|
|
if (PassTenCount == MidboxCapacity.Value)
|
|
|
{
|
|
|
- Console.WriteLine("ReadId3|,|OK|,|1");
|
|
|
sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|1"));
|
|
|
PassTenCount = 0;
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- //如果发送了最后一盒,则不发送继续堆叠的指令
|
|
|
- if (!SendLast)
|
|
|
+ //如果发送了最后一盒,则不发送继续堆叠的指令 或者需要分盒的时候
|
|
|
+ if ((!SendLast && !OutBoxSplit) || OutBoxSplit)
|
|
|
{
|
|
|
- Console.WriteLine("ReadId3|,|OK|,|0");
|
|
|
sendClient.Client.Send(Encoding.ASCII.GetBytes("ReadId3|,|OK|,|0"));
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ //中盒当前进度
|
|
|
CurrentBoxNum.Value = PassTenCount;
|
|
|
PassTenCount = PassTenCount + 1;
|
|
|
+ //外箱当前进度
|
|
|
+ CurrentOutBoxNum.Value = PassSixTenCount;
|
|
|
+ PassSixTenCount = PassSixTenCount + 1;
|
|
|
}
|
|
|
//设置索引和内容
|
|
|
//msgStr = msgStr.Split(ps_split.ToCharArray()[0])[dataindex];
|
|
@@ -2697,5 +2779,228 @@ namespace UAS_LabelMachine
|
|
|
PassTenCount = int.Parse(CurrentBoxNum.Value.ToString()) + 1;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ private void CurrentOutBoxNum_KeyDown(object sender, KeyEventArgs e)
|
|
|
+ {
|
|
|
+ if (e.KeyCode == Keys.Enter)
|
|
|
+ {
|
|
|
+ PassSixTenCount = int.Parse(CurrentOutBoxNum.Value.ToString()) + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private void richTextAutoBottom1_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void Weight_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void groupBoxWithBorder2_Enter(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void DCCheck_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void GridPrcode_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label18_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidBoxEnd_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidBoxBegin_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label16_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void SingleBoxEnd_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void SingleBoxBegin_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label12_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label7_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void groupBoxWithBorder1_Enter(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void Input_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void LabelInf_CellContentClick(object sender, DataGridViewCellEventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void pi_inoutno_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label14_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void CurrentOutBoxNum_ValueChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label13_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void SingleLabelPrinter_Load(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void SingleLabelAutoPrint_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void SingleLabel_Enter(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void CurrentRowOnly_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidboxCapacity_ValueChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label2_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidLabelNum_TextChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label5_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidLabelPrinter_Load(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidLabelAutoPrint_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void MidLabel_Enter(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void DiffDetno_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void DiffCPN_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void BoxCount_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void DiffLotNo_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void DiffDC_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void OnlyOneRow_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void AllLabel_CheckedChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label10_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void label6_Click(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void OutBoxPrinter_Load(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void OutboxCapacity_ValueChanged(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ private void OutBoxLabel_Enter(object sender, EventArgs e)
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
}
|
|
|
}
|