| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using CoreFS.CA06;
- using System.Collections;
- using Infragistics.Win.UltraWinGrid;
- using System.Diagnostics;
- using Infragistics.Win.UltraWinEditors;
- using Infragistics.Win;
- namespace Core.LZMes.Client.QCM
- {
- public partial class QCM0309 : FrmBase
- {
- private string judge_type = "";//用于区分1检测中心和2轧钢厂
- public QCM0309()
- {
- InitializeComponent();
- }
- public override void ToolBar_Click(object sender, string ToolbarKey)
- {
- switch (ToolbarKey)
- {
- case "Query":
- this.DoQuery();
- break;
- case "Exit":
- this.Close();
- break;
- case "Unlock":
- this.cancel_fb();
- break;
- case "Export":
- this.DoExport();
- break;
- case "CancelFy":
- CancelFy();
- break;
- }
- }
- private void CancelFy()
- {
-
- }
-
- private void DoQuery()
- {
- if (this.ultraTabControl1.Tabs[0].Selected) //待判信息
- {
- DoQueryMe();
- }
- if (this.ultraTabControl1.Tabs[1].Selected) //判定记录
- {
- DoQueryRe();
- }
- }
- private void DoQueryMe()
- {
- try
- {
- this.dataSet1.Clear();
- string starttime = "";
- string endtime = "";
- string ebatchno = "";
- string sbatchno = BatchNo.Text.Trim();
- if (BatchNo.Text.ToString() == "")
- {
- starttime = this.dateTimePicker1.Value.ToString("yyyyMMdd");
- endtime = this.dateTimePicker2.Value.AddDays(1).ToString("yyyyMMdd");
- }
- if (BatchNo1.Text.ToString() == "")
- {
- ebatchno = this.BatchNo.Text.Trim();
-
- }
- else
- {
- ebatchno = BatchNo1.Text.Trim();
- }
- CoreClientParam ccp = new CoreClientParam();
- ccp.ServerName = "QCM.QCM03.QCM0303.QcmJudgeMeasureServiceImpl";
- ccp.MethodName = "doQueryMaterialDetailsRZFB";
- ccp.ServerParams = new object[] { starttime, endtime, sbatchno, ebatchno };
- ccp.SourceDataTable = this.dataSet1.Tables[0];
- this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
- /*CoreClientParam ccp = new CoreClientParam();
- ccp.ServerName = "QCM.QCM03.QCM0303.QcmJudgeMeasureServiceImpl";
- ccp.MethodName = "doQueryMaterialDetailsRZFB";
- ccp.ServerParams = new object[] { starttime, endtime, sbatchno, ebatchno };
- ccp.SourceDataTable = this.dataSet1.Tables[0];
- this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);*/
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- MessageBox.Show("系统出错,请联系管理人员", "警告");
- }
- }
- private void DoQueryRe()
- {
- try
- {
- this.dataSet2.Clear();
- string starttime = "";
- string endtime = "";
- string ebatchno = "";
- string sbatchno = BatchNo.Text.Trim();
- if (BatchNo.Text.ToString() == "")
- {
- starttime = this.dateTimePicker1.Value.ToString("yyyyMMdd");
- endtime = this.dateTimePicker2.Value.AddDays(1).ToString("yyyyMMdd");
- }
- if (BatchNo1.Text.ToString() == "")
- {
- ebatchno = this.BatchNo.Text.Trim();
-
- }
- else
- {
- ebatchno = BatchNo1.Text.Trim();
- }
- CoreClientParam ccp = new CoreClientParam();
- ccp.ServerName = "QCM.QCM03.QCM0303.QcmJudgeMeasureServiceImpl";
- ccp.MethodName = "doQueryMaterialDetailsRZFBJL";
- ccp.ServerParams = new object[] { starttime, endtime, sbatchno, ebatchno };
- ccp.SourceDataTable = this.dataSet2.Tables[0];
- this.ExecuteQueryToDataTable(ccp, CoreInvokeType.Internal);
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- MessageBox.Show("系统出错,请联系管理人员", "警告");
- }
- }
- private void cancel_fb()
- {
- try
- {
- List<UltraGridRow> lists = new List<UltraGridRow>();
- foreach (UltraGridRow ugr in ultraGrid9.Rows)
- {
- if (ugr.Cells["CHECK"].Text.ToString() == "True")
- {
- if (ugr.Cells["DLIV_DIRNO"].Value.ToString() != "")
- {
- MessageBox.Show(ugr.Cells["MATERIAL_NO"].Value.ToString() + "卷已有货运指示号,不可进行解除封闭操作!");
- return;
- }
- CoreClientParam ccp = new CoreClientParam();
- ccp.ServerName = "QCM.QCM03.QCM0303.QcmJudgeMeasureServiceImpl";
- ccp.MethodName = "coiljudge_status_call_commit";
- ccp.ServerParams = new object[] { "RZ1"
- , ugr.Cells["MATERIAL_NO"].Value.ToString()
- , ""
- , ""
- , ""
- , ""
- , ""
- , "N"
- ,"",""};
- ccp = this.ExecuteNonQuery(ccp, CoreInvokeType.Internal);
- if (ccp.ReturnCode == -1)
- {
- return;
- }
- string remark = "取消封闭";
- CoreClientParam ccp1 = new CoreClientParam();
- ccp1.ServerName = "QCM.QCM03.QCM0303.QcmJudgeMeasureServiceImpl";
- ccp1.MethodName = "RZ_Record1";
- ccp1.ServerParams = new object[] { ugr.Cells["MATERIAL_NO"].Value.ToString(), this.UserInfo.GetUserName().ToString(), remark,"" };
- ccp1 = this.ExecuteNonQuery(ccp1, CoreInvokeType.Internal);
- if (ccp1.ReturnCode == -1)
- {
- return;
- }
- lists.Add(ugr);
- }
- }
- for (int i = 0; i < lists.Count; i++)
- {
- lists[i].Delete(false);
- }
- //DoQuery();
- MessageBox.Show("解除封闭成功!");
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- MessageBox.Show("系统出错,请联系管理人员", "警告");
- }
- }
- private void label1_Click(object sender, EventArgs e)
- {
- }
- private void panel4_Paint(object sender, PaintEventArgs e)
- {
- }
- private void panel2_Paint(object sender, PaintEventArgs e)
- {
- }
- private void DoQueryC()
- {
-
-
- }
- private void ultraGrid9_DoubleClickCell(object sender, DoubleClickCellEventArgs e)
- {
-
- }
- private void button1_Click(object sender, EventArgs e)
- {
-
- }
- public static bool SetUltraComboEditor(ref UltraComboEditor cbEdt, ref ValueList vlist, bool bNull)
- {
- if (cbEdt == null || vlist == null)
- return false;
- cbEdt.Items.Clear();
- if (bNull)
- cbEdt.Items.Add(null, "");
- for (int i = 0; i < vlist.ValueListItems.Count; i++)
- {
- try
- {
- cbEdt.Items.Add(vlist.ValueListItems[i].DataValue, vlist.ValueListItems[i].DisplayText);
- }
- catch { }
- }
- return true;
- }
- public static ValueList GeneralValuelist(ref DataTable table, string strKey, string strText)
- {
- if (table == null || !table.Columns.Contains(strKey) || !table.Columns.Contains(strText))
- return null;
- ArrayList alist = new ArrayList();
- ValueList vlist = new ValueList();
- for (int i = 0; i < table.Rows.Count; i++)
- {
- try
- {
- if (!alist.Contains(table.Rows[i][strKey]))
- {
- alist.Add(table.Rows[i][strKey]);
- vlist.ValueListItems.Add(table.Rows[i][strKey], Convert.ToString(table.Rows[i][strText]));
- }
- }
- catch { }
- }
- return vlist;
- }
- private void QCM0309_Load(object sender, EventArgs e)
- {
-
- }
- private void ultraGrid2_DoubleClickCell(object sender, DoubleClickCellEventArgs e)
- {
-
- }
- private void ultraTabControl1_Click(object sender, EventArgs e)
- {
- if (this.ultraTabControl1.Tabs[1].Selected) //判定记录
- {
- this.label9.Text = "操作封闭时间";
- }
- if (this.ultraTabControl1.Tabs[0].Selected) //判定记录
- {
- this.label9.Text = "封锁时间";
- }
- }
- private void DoExport()
- {
- if (this.ultraTabControl1.Tabs[0].Selected) //待判信息
- {
- try
- {
- if (this.ultraGrid9.Rows.Count == 0)
- {
- MessageBox.Show("没有可以导出的数据", "提示");
- return;
- }
- if (this.saveFileDialog1.ShowDialog(this) == DialogResult.OK)
- {
- string fName = this.saveFileDialog1.FileName;
- this.ultraGridExcelExporter1.Export(this.ultraGrid9, fName);
- Process.Start(fName);
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- if (this.ultraTabControl1.Tabs[1].Selected) //判定记录
- {
- try
- {
- if (this.ultraGrid2.Rows.Count == 0)
- {
- MessageBox.Show("没有可以导出的数据", "提示");
- return;
- }
- if (this.saveFileDialog1.ShowDialog(this) == DialogResult.OK)
- {
- string fName = this.saveFileDialog1.FileName;
- this.ultraGridExcelExporter1.Export(this.ultraGrid2, fName);
- Process.Start(fName);
- }
- }
- catch (Exception ex)
- {
- System.Diagnostics.Debug.WriteLine(ex.ToString());
- }
- }
- }
- private void label11_Click(object sender, EventArgs e)
- {
-
- }
- private void checkBox2_CheckedChanged(object sender, EventArgs e)
- {
- foreach (UltraGridRow ugr in this.ultraGrid9.Rows.Where(p => p.IsFilteredOut == false).ToList())
- {
- if (checkBox2.Checked)
- {
- ugr.Cells["CHECK"].Value = "True";
- }
- else
- {
- ugr.Cells["CHECK"].Value = "False";
- }
- }
- }
- }
- }
|