| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760 |
- 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.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 FrmPlnZyJgWorkBill : FrmBase
- {
- public FrmPlnZyJgWorkBill()
- {
- InitializeComponent();
- }
- private void FrmPlnZyJgWorkBill_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 "Save":
- DoSave();
- break;
- case "Update":
- DoUpdate();
- break;
- case "Delete":
- DoDelete();
- break;
- case "UndBill":
- DoUndBill();
- break;
- case "DownBill":
- DoDownBill();
- break;
- case "Offline":
- DoOffline();
- break;
- case "DownOffline":
- DoDownOffline();
- break;
- case "CloseBill":
- DoCloseBill();
- break;
- case "DownCloseBill":
- DoDownCloseBill();
- break;
- case "Close":
- this.Close();
- break;
- }
- }
- /// <summary>
- /// 查询
- /// </summary>
- private void DoQuery()
- {
- string plnNo = "";
- string plnStrat = "";
- string plinCode = "";
- if (chkPlnNo.Checked)
- {
- if (txtPlnNo.Text == "")
- {
- MessageUtil.ShowTips("炉计划号不能为空!");
- return;
- }
- else {
- plnNo = txtPlnNo.Text.ToString().Trim();
- }
- }
- if (chkStarts.Checked)
- {
- if (cmbStarts.Text == "")
- {
- MessageUtil.ShowTips("炉计划状态不能为空!");
- return;
- }
- else
- {
- plnStrat = cmbStarts.Value.ToString();
- }
- }
- if (chkPlin.Checked)
- {
- if (cmbPlinCode.Text == "")
- {
- MessageUtil.ShowTips("生产产线不能为空!");
- return;
- }
- else
- {
- plinCode = cmbPlinCode.Value.ToString();
- }
- }
- ArrayList list = new ArrayList();
- list.Add(plnNo);
- list.Add(plnStrat);
- list.Add(plinCode);
- DataTable dt = ServerHelper.GetData("com.steering.mes.mcp.coup.FrmPlnZyJgWorkBill.geQueryPlnJg", new object[] { list }, ob);
- GridHelper.CopyDataToDatatable(ref dt, ref dataTable2, true);
- if (dt.Rows.Count < 0)
- {
- QueryPlnBill("");
- }
- }
- private void QueryPlnBill(string plnNo)
- {
- DataTable dt = ServerHelper.GetData("com.steering.mes.mcp.coup.FrmPlnZyJgWorkBill.geQueryPlnJgBill", new object[] { plnNo }, ob);
- GridHelper.CopyDataToDatatable(ref dt, ref dataTable1, true);
- }
- /// <summary>
- /// 新增
- /// </summary>
- private void DoSave()
- {
- UltraGridRow row = ultraGridPln.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无炉次计划!"); return; }
- ultraGridPln.UpdateData();
- int addCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGridPln.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- if (urg.Cells["PLN_KEB_NUM"].Value.ToString() == "0" || urg.Cells["PLN_KEB_NUM"].Value.ToString() == "")
- {
- MessageUtil.ShowTips("请输入可编辑支数!");
- return;
- }
- string plnCount = "";
- string csCount = "";
- //计划个数
- if (urg.Cells["PLAN_BL_NUM"].Value.ToString().Equals("0"))
- {
- plnCount = "0";
- }
- else
- {
- plnCount = ((double.Parse(urg.Cells["PLAN_JG_NUM1"].Value.ToString()) / double.Parse(urg.Cells["PLAN_BL_NUM"].Value.ToString())) * double.Parse(urg.Cells["PLN_KEB_NUM"].Value.ToString())).ToString("f0");
- }
- //测算个数
- if (urg.Cells["PLN_KEB_NUM"].Value.ToString().Equals("0"))
- {
- csCount = "0";
- }
- else
- {
- csCount = (double.Parse(urg.Cells["AIMLENGTH_BL"].Value.ToString()) * 1000 * double.Parse(urg.Cells["PLN_KEB_NUM"].Value.ToString()) / (double.Parse(urg.Cells["AIMLENGTH"].Value.ToString()) + double.Parse(urg.Cells["AVERAGE_LEN"].Value.ToString()))).ToString("f0");
- }
- //需求个数
- string xqCount = (double.Parse(plnCount) * 1.03).ToString("f0");
- addCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["PLN_KEB_NUM"].Value.ToString());
- list1.Add(this.UserInfo.GetUserOrder());
- list1.Add(this.UserInfo.GetUserGroup());
- list1.Add(this.UserInfo.GetUserName());
- list1.Add(urg.Cells["JUDGE_STOVE_NO"].Value.ToString());
- list1.Add(urg.Cells["BATCH_NO"].Value.ToString());
- list1.Add(plnCount);
- list1.Add(csCount);
- list1.Add(xqCount);
- 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "addPlnBillResult";
- 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 = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
-
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "deletePlnBillResult";
- 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 DoUpdate()
- {
- }
- /// <summary>
- /// 下发
- /// </summary>
- private void DoUndBill()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
-
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list1.Add(this.UserInfo.GetUserName());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "undPlnBillResult";
- 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 DoDownBill()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
-
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "downPlnBillResult";
- 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 DoOffline()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "offPlnBillResult";
- 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 DoDownOffline()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "downOffPlnBillResult";
- 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 DoCloseBill()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
-
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- //PLAN_BL_WT
- int plnCount = int.Parse(urg.Cells["PLAN_BL_NUM"].Value.ToString()) - int.Parse(urg.Cells["LOAD_PIECES"].Value.ToString());
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list1.Add(urg.Cells["LOAD_PIECES"].Value.ToString());
- list1.Add(urg.Cells["LOAD_WEIGHT"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "closePlnBillResult";
- 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 DoDownCloseBill()
- {
- UltraGridRow row = ultraGridPlnWork.ActiveRow;
- if (row == null) { MessageUtil.ShowTips("无工单信息!"); return; }
- ultraGridPlnWork.UpdateData();
- int delteCount = 0;
- ArrayList list = new ArrayList();
- foreach (UltraGridRow urg in ultraGridPlnWork.Rows)
- {
- if (Convert.ToBoolean(urg.Cells["CHK"].Text) == true)
- {
- delteCount += 1;
- ArrayList list1 = new ArrayList();
- list1.Add(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- list1.Add(urg.Cells["WO_ID"].Value.ToString());
- list1.Add(urg.Cells["LOAD_PIECES"].Value.ToString());
- list1.Add(urg.Cells["LOAD_WEIGHT"].Value.ToString());
- list.Add(list1);
- }
- }
- if (delteCount == 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.FrmPlnZyJgWorkBill";
- ccp.MethodName = "downClosePlnBillResult";
- 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 (chkStarts.Checked) { cmbStarts.Enabled = true; } else { cmbStarts.Enabled = false; }
- if (chkPlin.Checked) { cmbPlinCode.Enabled = true; } else { cmbPlinCode.Enabled = false; }
- if (chkPlnNo.Checked) { txtPlnNo.Enabled = true; } else { txtPlnNo.Enabled = false; }
- }
-
- private void ultraGridPln_AfterRowActivate(object sender, EventArgs e)
- {
- UltraGridRow urg=ultraGridPln.ActiveRow;
- if (urg == null) return;
- QueryPlnBill(urg.Cells["ZY_PLAN_ID"].Text.ToString());
- }
- private void ultraGridPln_AfterSelectChange(object sender, AfterSelectChangeEventArgs e)
- {
- try
- {
- ultraGridPln.UpdateData();
- foreach (UltraGridRow row in ultraGridPln.Rows)
- {
- row.Cells["CHK"].Value = row.Selected;
- }
- }
- catch { }
- }
- 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 ultraGridPln_CellChange(object sender, CellEventArgs e)
- {
- ultraGridPln.UpdateData();
- if (e.Cell.Column.Key.Equals("AVERAGE_LEN"))
- {
- if(e.Cell.Row.Cells["AVERAGE_LEN"].Value.ToString().Trim().Equals("")){
- e.Cell.Row.Cells["AVERAGE_LEN"].Value = "0";
- }
-
- }
- //if (e.Cell.Column.Key.Equals("PLN_KEB_NUM"))
- //{
- // if (e.Cell.Row.Cells["PLN_KEB_NUM"].Value.ToString() == "")
- // {
- // e.Cell.Row.Cells["PLN_KEB_NUM"].Value = "0";
- // }
- //}
- }
- }
- }
|