| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734 |
- using Core.Mes.Client.Comm.Control;
- using Core.Mes.Client.Comm.Server;
- using Core.Mes.Client.Comm.Tool;
- using Core.StlMes.Client.Mcp.Common;
- using Core.StlMes.Client.Mcp.Control;
- using CoreFS.CA06;
- using Infragistics.Win;
- using Infragistics.Win.UltraWinGrid;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.Mcp.Coupling
- {
- public partial class FrmOutManagement : FrmBase
- {
- public FrmOutManagement()
- {
- InitializeComponent();
- }
- private void FrmOutManagement_Load(object sender, EventArgs e)
- {
- McpBaseHelper.InitPlineUnit(cmbPlinCode, this.ValidDataPurviewIds, ob, "H");
- }
- public override void ToolBar_Click(object sender, string ToolbarKey)
- {
- switch (ToolbarKey)
- {
- case "Query":
- DoQuery();
- break;
- case "Add":
- DoAdd();
- break;
- case "Delete":
- DoDelete();
- break;
- case "CommEntrust":
- DoCommEntrust();
- break;
- case "NoCommEntrust":
- DoNoCommEntrust();
- break;
- case "Close":
- this.Close();
- break;
- }
- }
- /// <summary>
- /// 查询
- /// </summary>
- private void DoQuery() {
- string plnNo = "";
- string woId = "";
- string plinCode = "";
- if (chkPlnNo.Checked)
- {
- if (txtPlnNo.Text == "")
- {
- MessageUtil.ShowTips("炉计划号不能为空!");
- return;
- }
- else
- {
- plnNo = txtPlnNo.Text.ToString().Trim();
- }
- }
- if (chkwoId.Checked)
- {
- if (txtWoid.Text == "")
- {
- MessageUtil.ShowTips("工单号不能为空!");
- return;
- }
- else
- {
- woId = txtWoid.Text.Trim().ToString();
- }
- }
- if (chkPlin.Checked)
- {
- if (cmbPlinCode.Text == "")
- {
- MessageUtil.ShowTips("生产产线不能为空!");
- return ;
- }
- else
- {
- plinCode = cmbPlinCode.Value.ToString();
- }
- }
- ArrayList list = new ArrayList();
- list.Add(plnNo);
- list.Add(woId);
- list.Add(plinCode);
- DataTable dt = ServerHelper.GetData("com.steering.mes.mcp.coup.FrmOutManagement.geQueryPlnJgBill", new object[] { list }, ob);
- GridHelper.CopyDataToDatatable(ref dt, ref dataTable1, true);
- foreach (UltraGridRow row in ultraGridPlnWork.Rows)
- {
- if (row.Cells["COAT_TYPE"].Text.ToString().Equals("镀铜"))
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- row.Cells["IF_OUT_COAT"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["IF_OUT_COAT"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IF_OUT_COAT"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else if (row.Cells["COAT_TYPE"].Text.ToString().Equals("磷化"))
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["IF_OUT_COAT"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["IF_OUT_COAT"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IF_OUT_COAT"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["IF_OUT_COAT"].Appearance.BackColor = Color.Transparent;
- row.Cells["IF_OUT_COAT"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IF_OUT_COAT"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- row.Cells["CJG_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;//打开界面不可编辑有条件后就可以编辑
- }
- DataTable dt1 = ServerHelper.GetData("com.steering.mes.mcp.coup.FrmOutManagement.geQueryEntrusted", new object[] { list }, ob);
- GridHelper.CopyDataToDatatable(ref dt1, ref dataTable2, true);
-
- }
- /// <summary>
- /// 新增
- /// </summary>
- private void DoAdd()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) return;
- ultraGridPlnWork.UpdateData();
- int AddCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- AddCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Text.ToString());
- if (Convert.ToBoolean(urg.Cells["IF_OUT_CUT"].Text) == false)//切管
- {
- list1.Add("");
- }
- else
- {
- list1.Add(urg.Cells["CUT_PLN_NUMB"].Value.ToString());
- }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_CJG"].Text) == false)//粗加工
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["CJG_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_IMPRESS"].Text) == false)//压印
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["IMPRESS_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_LATHE"].Text) == false)//车丝
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["LATHE_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_THREAD"].Text) == false)//螺纹检验
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["THREAD_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_DETECT"].Text) == false)//探伤
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["DETECT_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_BLAST"].Text) == false)//喷砂
- {
- list1.Add("");
- }
- else { list1.Add(urg.Cells["BLAST_PLN_NUM"].Value.ToString()); }
- if (Convert.ToBoolean(urg.Cells["IF_OUT_COAT"].Text) == false)//涂层
- {
- list1.Add("");
- list1.Add("");
- }
- else { list1.Add(urg.Cells["PLT_PLN_NUM"].Value.ToString());
- list1.Add(urg.Cells["PHOS_PLN_NUM"].Value.ToString()); }
-
- list1.Add(urg.Cells["COPPER_PLN_NUM"].Value.ToString());
- list1.Add(urg.Cells["PLAN_BL_NUM"].Value.ToString());
- list1.Add(this.UserInfo.GetUserName());
- list1.Add(this.UserInfo.GetUserOrder());
- list1.Add(this.UserInfo.GetUserGroup());
- list.Add(list1);
- }
- }
- if (AddCount == 0) { MessageUtil.ShowTips("请选中要生成委托单的离线工单信息!"); return; }
- if (MessageUtil.ShowYesNoAndQuestion("是否新增委托单?") == DialogResult.No)
- {
- return;
- }
- CoreClientParam ccp = new CoreClientParam();
- try
- {
- this.Cursor = Cursors.WaitCursor; //控制鼠标的样式为等待
- if (Constant.WaitingForm == null)
- {
- Constant.WaitingForm = new WaitingForm();
- }
- Constant.WaitingForm.ShowToUser = true;
- Constant.WaitingForm.Show();
- Constant.WaitingForm.Update();
- ccp.ServerName = "com.steering.mes.mcp.coup.FrmOutManagement";
- ccp.MethodName = "addEntrustedResult";
- ccp.ServerParams = new object[] { list };
- ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- catch (Exception ex)
- {
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- if (ccp.ReturnCode == -1) return;
- MessageUtil.ShowTips(ccp.ReturnInfo);
- if (ccp.ReturnInfo.Equals("新增成功!"))
- {
- DoQuery();
- }
- }
- /// <summary>
- /// 删除
- /// </summary>
- private void DoDelete()
- {
- UltraGridRow row = ultraGrid1.ActiveRow;
- if (row == null) return;
- ultraGridPlnWork.UpdateData();
- int AddCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGrid1.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- AddCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Text.ToString());
- list1.Add(urg.Cells["ENTRUSTED_NO"].Text.ToString());
- list.Add(list1);
- }
- }
- if (AddCount == 0) { MessageUtil.ShowTips("请选中要删除的委托单!"); return; }
- if (MessageUtil.ShowYesNoAndQuestion("是否删除委托单?") == DialogResult.No)
- {
- return;
- }
- CoreClientParam ccp = new CoreClientParam();
- try
- {
- this.Cursor = Cursors.WaitCursor; //控制鼠标的样式为等待
- if (Constant.WaitingForm == null)
- {
- Constant.WaitingForm = new WaitingForm();
- }
- Constant.WaitingForm.ShowToUser = true;
- Constant.WaitingForm.Show();
- Constant.WaitingForm.Update();
- ccp.ServerName = "com.steering.mes.mcp.coup.FrmOutManagement";
- ccp.MethodName = "deleteEntrustedResult";
- ccp.ServerParams = new object[] { list };
- ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- catch (Exception ex)
- {
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- if (ccp.ReturnCode == -1) return;
- MessageUtil.ShowTips(ccp.ReturnInfo);
- if (ccp.ReturnInfo.Equals("删除成功!"))
- {
- DoQuery();
- }
- }
- /// <summary>
- /// 申请委托
- /// </summary>
- private void DoCommEntrust()
- {
- UltraGridRow row = ultraGrid1.ActiveRow;
- if (row == null) return;
- ultraGridPlnWork.UpdateData();
- int AddCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGrid1.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- AddCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Text.ToString());
- list1.Add(urg.Cells["ENTRUSTED_NO"].Text.ToString());
- list.Add(list1);
- }
- }
- if (AddCount == 0) { MessageUtil.ShowTips("请选中要申请委托记录!"); return; }
- if (MessageUtil.ShowYesNoAndQuestion("是否申请委托?") == DialogResult.No)
- {
- return;
- }
- CoreClientParam ccp = new CoreClientParam();
- try
- {
- this.Cursor = Cursors.WaitCursor; //控制鼠标的样式为等待
- if (Constant.WaitingForm == null)
- {
- Constant.WaitingForm = new WaitingForm();
- }
- Constant.WaitingForm.ShowToUser = true;
- Constant.WaitingForm.Show();
- Constant.WaitingForm.Update();
- ccp.ServerName = "com.steering.mes.mcp.coup.FrmOutManagement";
- ccp.MethodName = "commEntrustedResult";
- ccp.ServerParams = new object[] { list };
- ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- catch (Exception ex)
- {
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- if (ccp.ReturnCode == -1) return;
- MessageUtil.ShowTips(ccp.ReturnInfo);
- if (ccp.ReturnInfo.Equals("委托申请成功!"))
- {
- DoQuery();
- }
- }
- /// <summary>
- /// 撤销委托
- /// </summary>
- private void DoNoCommEntrust()
- {
- UltraGridRow row = ultraGrid1.ActiveRow;
- if (row == null) return;
- ultraGridPlnWork.UpdateData();
- int AddCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGrid1.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- AddCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Text.ToString());
- list1.Add(urg.Cells["ENTRUSTED_NO"].Text.ToString());
- list.Add(list1);
- }
- }
- if (AddCount == 0) { MessageUtil.ShowTips("请选中要撤销的委托单!"); return; }
- if (MessageUtil.ShowYesNoAndQuestion("是否撤销委托?") == DialogResult.No)
- {
- return;
- }
- CoreClientParam ccp = new CoreClientParam();
- try
- {
- this.Cursor = Cursors.WaitCursor; //控制鼠标的样式为等待
- if (Constant.WaitingForm == null)
- {
- Constant.WaitingForm = new WaitingForm();
- }
- Constant.WaitingForm.ShowToUser = true;
- Constant.WaitingForm.Show();
- Constant.WaitingForm.Update();
- ccp.ServerName = "com.steering.mes.mcp.coup.FrmOutManagement";
- ccp.MethodName = "kownCommEntrustedResult";
- ccp.ServerParams = new object[] { list };
- ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- catch (Exception ex)
- {
- this.Cursor = Cursors.Default;
- Constant.WaitingForm.ShowToUser = false;
- Constant.WaitingForm.Close();
- Constant.WaitingForm = null;
- }
- if (ccp.ReturnCode == -1) return;
- MessageUtil.ShowTips(ccp.ReturnInfo);
- if (ccp.ReturnInfo.Equals("撤销委托成功!"))
- {
- DoQuery();
- }
- }
- private void chkStarts_CheckedChanged(object sender, EventArgs e)
- {
- if (chkwoId.Checked) { txtWoid.Enabled = true; } else { txtWoid.Enabled = false; }
- if (chkPlin.Checked) { cmbPlinCode.Enabled = true; } else { cmbPlinCode.Enabled = false; }
- if (chkPlnNo.Checked) { txtPlnNo.Enabled = true; } else { txtPlnNo.Enabled = false; }
- }
- /// <summary>
- /// 改变Grid事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void ultraGridPlnWork_CellChange(object sender, CellEventArgs e)
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) return;
- ultraGridPlnWork.UpdateData();
- if (e.Cell.Column.Key.Equals("IF_ALL_OUT_WORK"))
- {
- if (Convert.ToBoolean(row.Cells["IF_ALL_OUT_WORK"].Text) == true)
- {
- //row.Cells["PLAN_BL_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- //row.Cells["PLAN_BL_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- //row.Cells["PLAN_BL_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["PLAN_BL_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLAN_BL_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLAN_BL_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //锯切
- if (e.Cell.Column.Key.Equals("IF_OUT_CUT"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_CUT"].Text) == true)
- {
- row.Cells["CUT_PLN_NUMB"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["CUT_PLN_NUMB"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["CUT_PLN_NUMB"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["CUT_PLN_NUMB"].Appearance.BackColor = Color.Transparent;
- row.Cells["CUT_PLN_NUMB"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["CUT_PLN_NUMB"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //粗加工
- if (e.Cell.Column.Key.Equals("IF_OUT_CJG"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_CJG"].Text) == true)
- {
- row.Cells["CJG_PLN_NUM"].Value = row.Cells["CUT_PLN_NUMB"].Value.ToString();
- row.Cells["CJG_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["CJG_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["CJG_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["CJG_PLN_NUM"].Value = "";
- row.Cells["CJG_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["CJG_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["CJG_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //压印
- if (e.Cell.Column.Key.Equals("IF_OUT_IMPRESS"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_IMPRESS"].Text) == true)
- {
- row.Cells["IMPRESS_PLN_NUM"].Value = row.Cells["CJG_PLN_NUM"].Value.ToString();
- row.Cells["IMPRESS_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["IMPRESS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IMPRESS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["IMPRESS_PLN_NUM"].Value = "";
- row.Cells["IMPRESS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["IMPRESS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IMPRESS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //车丝
- if (e.Cell.Column.Key.Equals("IF_OUT_LATHE"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_LATHE"].Text) == true)
- {
- row.Cells["LATHE_PLN_NUM"].Value = row.Cells["IMPRESS_PLN_NUM"].Value.ToString();
- row.Cells["LATHE_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["LATHE_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["LATHE_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["LATHE_PLN_NUM"].Value = "";
- row.Cells["LATHE_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["LATHE_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["LATHE_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //探伤
- if (e.Cell.Column.Key.Equals("IF_OUT_DETECT"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_DETECT"].Text) == true)
- {
- row.Cells["DETECT_PLN_NUM"].Value = row.Cells["LATHE_PLN_NUM"].Value.ToString();
- row.Cells["DETECT_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["DETECT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["DETECT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["DETECT_PLN_NUM"].Value = "";
- row.Cells["DETECT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["DETECT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["DETECT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //喷砂
- if (e.Cell.Column.Key.Equals("IF_OUT_BLAST"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_BLAST"].Text) == true)
- {
- row.Cells["BLAST_PLN_NUM"].Value = row.Cells["DETECT_PLN_NUM"].Value.ToString();
- row.Cells["BLAST_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["BLAST_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["BLAST_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["BLAST_PLN_NUM"].Value = "";
- row.Cells["BLAST_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["BLAST_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["BLAST_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //螺纹检验
- if (e.Cell.Column.Key.Equals("IF_OUT_THREAD"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_THREAD"].Text) == true)
- {
- row.Cells["THREAD_PLN_NUM"].Value = row.Cells["BLAST_PLN_NUM"].Value.ToString();
- row.Cells["THREAD_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["THREAD_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["THREAD_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["THREAD_PLN_NUM"].Value = "";
- row.Cells["THREAD_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["THREAD_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["THREAD_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- //喷标
- if (e.Cell.Column.Key.Equals("IF_OUT_COPPER"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_COPPER"].Text) == true)
- {
- row.Cells["COPPER_PLN_NUM"].Value = row.Cells["THREAD_PLN_NUM"].Value.ToString();
- row.Cells["COPPER_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["COPPER_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["COPPER_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["COPPER_PLN_NUM"].Value = "";
- row.Cells["COPPER_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["COPPER_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["COPPER_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- if (e.Cell.Column.Key.Equals("IF_OUT_COAT"))
- {
- if (row.Cells["COAT_TYPE"].Text.ToString().Equals("镀铜"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_COAT"].Text) == true)
- {
- row.Cells["PLT_PLN_NUM"].Value = row.Cells["PHOS_PLN_NUM"].Value.ToString();
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- }
- else
- {
- row.Cells["PLT_PLN_NUM"].Value = "";
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- else if (row.Cells["COAT_TYPE"].Text.ToString().Equals("磷化"))
- {
- if (Convert.ToBoolean(row.Cells["IF_OUT_COAT"].Text) == true)
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.FromArgb(255, 255, 192);
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- else
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- else
- {
- row.Cells["PHOS_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PHOS_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PHOS_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["PLT_PLN_NUM"].Appearance.BackColor = Color.Transparent;
- row.Cells["PLT_PLN_NUM"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["PLT_PLN_NUM"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- row.Cells["IF_OUT_COAT"].Appearance.BackColor = Color.Transparent;
- row.Cells["IF_OUT_COAT"].Appearance.BackHatchStyle = BackHatchStyle.None;
- row.Cells["IF_OUT_COAT"].Activation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
- }
- }
- }
- private void ultraGridPlnWork_AfterSelectChange(object sender, AfterSelectChangeEventArgs e)
- {
- try
- {
- ultraGridPlnWork.UpdateData();
- foreach (UltraGridRow row in ultraGridPlnWork.Rows)
- {
- row.Cells["CHK"].Value = row.Selected;
- }
- }
- catch { }
- }
- private void ultraGrid1_AfterSelectChange(object sender, AfterSelectChangeEventArgs e)
- {
- try
- {
- ultraGrid1.UpdateData();
- foreach (UltraGridRow row in ultraGrid1.Rows)
- {
- row.Cells["CHK"].Value = row.Selected;
- }
- }
- catch { }
- }
- }
- }
|