ruoxing.wang 4 days ago
parent
commit
68f0fd0c6b
  1. 25
      PaintingScreen/Handler/Function.cs
  2. 1
      PaintingScreen/Handler/Handler.ashx
  3. 16
      PaintingScreen/Manage/PaintingResultScreen2.html
  4. 11
      PaintingScreen/Manage/PaintingScreenPaoGuang.html
  5. 5
      PunchAssemble/PunchAndWeld/BusinessHelper.cs
  6. 21
      PunchAssemble/PunchAndWeld/DataSouce/ProScreenFunc.cs
  7. 308
      PunchAssemble/PunchAndWeld/FrmDoorSill_214_3.Designer.cs
  8. 55
      PunchAssemble/PunchAndWeld/FrmDoorSill_214_3.cs
  9. 7
      PunchAssemble/PunchAndWeld/FrmProScreenS.cs
  10. 4
      PunchAssemble/PunchAndWeld/Properties/AssemblyInfo.cs
  11. 252
      PurchingMistakeNew/UtilityHelper.cs

25
PaintingScreen/Handler/Function.cs

@ -384,6 +384,8 @@ namespace PaintingScreen.Handler
public static string GetMiddleTableData(string page)
{
System.Threading.Thread.Sleep(700);
string res = "";
try
{
@ -391,20 +393,22 @@ namespace PaintingScreen.Handler
select * from tb_ReportPaintingScreen
";
DataTable dt = SqlHelper.GetDataDateTable(SqlHelper.SqlConnString, CommandType.Text, sql, null);
int p = dt.Rows.Count;
string q = page.ToString();
if (Convert.ToInt32(page) * 9 >= dt.Rows.Count)
{
//查询第一页
page = "0";
}
else
{
{
//查询下一页(page+1页)
page = (Convert.ToInt32(page) + 1).ToString();
}
string queryStr = @"
declare @pageIndex int;
declare @pageSize int;
set @pageIndex = "+ page +@";
set @pageIndex = " + page + @";
set @pageSize = 9;
select * from
(
@ -421,6 +425,11 @@ namespace PaintingScreen.Handler
WHERE t.xh between @pageSize*(@pageIndex - 1)+1 and @pageSize*@pageIndex
";
DataTable dt_page = SqlHelper.GetDataDateTable(SqlHelper.SqlConnString, CommandType.Text, queryStr, null);
if (dt_page.Rows.Count == 0)
{
LogHelper.WriteErrLogBase(q + " " + p.ToString() + "喷涂下线合格率看板 查询条数为0,语句:" + queryStr, MethodBase.GetCurrentMethod().Name);
}
if (dt_page != null && dt_page.Rows.Count > 0)
{
res += "<table class='borderTable' style='height:760px;'>";
@ -434,7 +443,7 @@ namespace PaintingScreen.Handler
res += "</tr>";
}
res += "</table>";
res += ","+ page;
res += "," + page;
}
return res;
}
@ -443,6 +452,9 @@ namespace PaintingScreen.Handler
LogHelper.WriteErrLogBase("喷涂下线合格率看板-查询中间分页数据失败:" + ex.ToString(), MethodBase.GetCurrentMethod().Name);
return res;
}
}
#endregion
@ -699,6 +711,7 @@ namespace PaintingScreen.Handler
string res = "";
try
{
System.Threading.Thread.Sleep(700);
string sql = @"
select * from tb_ReportPaintingScreen_pg
";
@ -713,6 +726,7 @@ namespace PaintingScreen.Handler
//查询下一页(page+1页)
page = (Convert.ToInt32(page) + 1).ToString();
}
int ppp = 0;
string queryStr = @"
declare @pageIndex int;
declare @pageSize int;
@ -740,6 +754,11 @@ namespace PaintingScreen.Handler
WHERE t.xh between @pageSize*(@pageIndex - 1)+1 and @pageSize*@pageIndex
";
DataTable dt_page = SqlHelper.GetDataDateTable(SqlHelper.SqlConnString, CommandType.Text, queryStr, null);
if(dt_page.Rows.Count == 0)
{
LogHelper.WriteErrLogBase("抛光TOP5看板-查询中间table数据为空,语句为:" + queryStr, MethodBase.GetCurrentMethod().Name);
}
if (dt_page != null && dt_page.Rows.Count > 0)
{
res += "<table class='borderTable' width='100%' cellpadding='0' cellspacing='0' height='500px' style='color:white; font-size:30px; font-family: 微软雅黑;'>";

1
PaintingScreen/Handler/Handler.ashx

@ -33,6 +33,7 @@ public class Handler : IHttpHandler {
break;
case "GetMiddleTableData": //PaintingResultScreen2
string page = Request.Params["page"];
GetMiddleTableData(page);
break;
case "CreateTablePaoGuang":

16
PaintingScreen/Manage/PaintingResultScreen2.html

@ -13,11 +13,11 @@
<script>
$(function () {
createTable();
initTable2();
initTable1();
//initTable2();
initTable1('1');
setInterval("createTable()", 10000); //每十秒生成中间数据
setInterval("initTable2()", 3000 * 1); //每三秒刷新总计数据
setInterval("initTable1()", 6000 * 1); //每六秒刷新中间数据
setInterval("initTable2()", 10000 * 1); //每三秒刷新总计数据
setInterval("initTable1('0')", 6000 * 1); //每六秒刷新中间数据
});
function createTable() {
@ -43,8 +43,12 @@
}
//中间表格
function initTable1() {
function initTable1( initPage) {
var page = $("#page").val();
if (initPage != '0') {
page = initPage;
}
/*alert(initPage + " " + page);*/
$.ajax({
type: "GET",
url: "../Handler/Handler.ashx?method=GetMiddleTableData",
@ -108,7 +112,7 @@
</tr>-->
<tr style="height:54px;">
<td>
<table class="borderTable" style="height:54px; background-image:url('../Pic/title03.png')"><tr><td class='TableTitle' style="height: 54px">颜色2</td><td class='TableTitle'>型号</td><td class='TableTitle'>下线数</td><td class='TableTitle'>一次合格数</td><td class='TableTitle'>一次合格率</td><td class='TableTitle'>总合格数</td><td class='TableTitle'>总合格率</td></tr></table>
<table class="borderTable" style="height:54px; background-image:url('../Pic/title03.png')"><tr><td class='TableTitle' style="height: 54px">颜色</td><td class='TableTitle'>型号</td><td class='TableTitle'>下线数</td><td class='TableTitle'>一次合格数</td><td class='TableTitle'>一次合格率</td><td class='TableTitle'>总合格数</td><td class='TableTitle'>总合格率</td></tr></table>
</td>
</tr>
<tr style="height:760px;">

11
PaintingScreen/Manage/PaintingScreenPaoGuang.html

@ -14,11 +14,11 @@
CreateMiddleTable(); //取消注释后,初始时频繁反复刷新
GetSumTable();
GetSumRateTable();
GetMiddleTablePaoGuang();
setInterval("CreateMiddleTable()", 120000); //每十秒生成中间数据
GetMiddleTablePaoGuang('1');
setInterval("CreateMiddleTable()", 12000); //每十秒生成中间数据
setInterval("GetSumTable()", 3000 * 10); //每三秒刷新总计数据
setInterval("GetSumRateTable()", 3000 * 10); //每三秒刷新总计数据
setInterval("GetMiddleTablePaoGuang()", 6000 * 10); //每五秒刷新中间数据
setInterval("GetMiddleTablePaoGuang('0')", 6000 ); //每五秒刷新中间数据
});
//生成中间数据
@ -52,8 +52,11 @@
}
//中间表数据显示
function GetMiddleTablePaoGuang() {
function GetMiddleTablePaoGuang(initPage) {
var page = $("#page").val();
if (initPage != '0') {
page = initPage;
}
$.ajax({
type: "GET",
url: "../Handler/Handler.ashx?method=GetMiddleTablePaoGuang",

5
PunchAssemble/PunchAndWeld/BusinessHelper.cs

@ -48,7 +48,10 @@ namespace PunchAndWeld
public static string GetQLevel(string part)
{
return ProScreenFunc.SearchQLevel("", part);
string qlevel = ProScreenFunc.SearchQLevel("", part);
MESClassLibrary.BLL.Log.LogErrBLL.AddInfo("Qlevel测试,qlevel =" + qlevel, System.Reflection.MethodBase.GetCurrentMethod());
return qlevel;
}

21
PunchAssemble/PunchAndWeld/DataSouce/ProScreenFunc.cs

@ -1949,6 +1949,23 @@ namespace PunchAndWeld.DataSouce
return res;
}
public static int DelScanRecord(string barCode,string tableName)
{
int res = 0;
try
{
string sql = $@"delete from {tableName} where BarCode='{barCode}'";
res = SqlHelper.ExecuteNonQuery(SqlHelper.SqlConnString, CommandType.Text, sql, null);
return res;
}
catch (Exception ex)
{
LogHelper.WriteErrLogBase(ex.ToString(), MethodBase.GetCurrentMethod().Name);
}
return res;
}
public static string GetScanCountByClass(string workClass)
{
string res = "0";
@ -3531,6 +3548,8 @@ order by CreateTime desc
try
{
string wmsConn = ConfigurationManager.ConnectionStrings["WmsConnString"].ConnectionString;
LogErrBLL.AddInfo("Qlevel测试,wmsConn ="+ wmsConn, MethodBase.GetCurrentMethod());
string sql = string.Empty;
SqlParameter[] param = new SqlParameter[1];
if (!string.IsNullOrEmpty(stockNo))
@ -3546,7 +3565,7 @@ order by CreateTime desc
param[0] = new SqlParameter("@PartCode", SqlDbType.VarChar);
param[0].Value = partCode;
}
LogErrBLL.AddInfo("Qlevel测试,sql =" + wmsConn, MethodBase.GetCurrentMethod());
DataTable dt = SqlHelper.GetDataDateTable(wmsConn, CommandType.Text, sql, param);
if (dt.Rows.Count > 0)

308
PunchAssemble/PunchAndWeld/FrmDoorSill_214_3.Designer.cs

@ -29,8 +29,8 @@
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.txtLastScanL = new System.Windows.Forms.TextBox();
@ -78,6 +78,9 @@
this.label11 = new System.Windows.Forms.Label();
this.focusTimer = new System.Windows.Forms.Timer(this.components);
this.dateTimer = new System.Windows.Forms.Timer(this.components);
this.panel5 = new System.Windows.Forms.Panel();
this.panel6 = new System.Windows.Forms.Panel();
this.btnReScan = new System.Windows.Forms.Button();
this.tableLayoutPanel1.SuspendLayout();
this.panel1.SuspendLayout();
this.tableLayoutPanel2.SuspendLayout();
@ -90,35 +93,41 @@
//
// tableLayoutPanel1
//
this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(34)))), ((int)(((byte)(52)))));
this.tableLayoutPanel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(65)))), ((int)(((byte)(83)))));
this.tableLayoutPanel1.ColumnCount = 1;
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.Controls.Add(this.panel1, 0, 2);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 3);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 5);
this.tableLayoutPanel1.Controls.Add(this.lbMsg, 0, 7);
this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 4);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 6);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 4);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 7);
this.tableLayoutPanel1.Controls.Add(this.lbMsg, 0, 9);
this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 5);
this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel4, 0, 8);
this.tableLayoutPanel1.Controls.Add(this.panel3, 0, 1);
this.tableLayoutPanel1.Controls.Add(this.panel4, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.panel5, 0, 6);
this.tableLayoutPanel1.Controls.Add(this.panel6, 0, 3);
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
this.tableLayoutPanel1.RowCount = 8;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 160F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 7F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 256F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 160F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 96F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 160F));
this.tableLayoutPanel1.RowCount = 10;
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 140F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 6F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 224F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 2F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 140F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 84F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 2F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 140F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 112F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(2560, 1760);
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 98F));
this.tableLayoutPanel1.Size = new System.Drawing.Size(2347, 1540);
this.tableLayoutPanel1.TabIndex = 0;
//
// panel1
//
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.panel1.Controls.Add(this.btnReScan);
this.panel1.Controls.Add(this.txtLastScanL);
this.panel1.Controls.Add(this.txtLastScanR);
this.panel1.Controls.Add(this.txtProduceModel);
@ -131,37 +140,36 @@
this.panel1.Controls.Add(this.btnOpenParamDialog);
this.panel1.Controls.Add(this.btnSearch);
this.panel1.Controls.Add(this.label1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(4, 170);
this.panel1.Location = new System.Drawing.Point(4, 149);
this.panel1.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(2552, 250);
this.panel1.Size = new System.Drawing.Size(2339, 218);
this.panel1.TabIndex = 0;
//
// txtLastScanL
//
this.txtLastScanL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.txtLastScanL.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtLastScanL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.txtLastScanL.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtLastScanL.Font = new System.Drawing.Font("宋体", 22.2F, System.Drawing.FontStyle.Bold);
this.txtLastScanL.ForeColor = System.Drawing.Color.White;
this.txtLastScanL.Location = new System.Drawing.Point(60, 127);
this.txtLastScanL.Location = new System.Drawing.Point(55, 111);
this.txtLastScanL.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.txtLastScanL.Name = "txtLastScanL";
this.txtLastScanL.ReadOnly = true;
this.txtLastScanL.Size = new System.Drawing.Size(685, 68);
this.txtLastScanL.Size = new System.Drawing.Size(628, 67);
this.txtLastScanL.TabIndex = 11;
//
// txtLastScanR
//
this.txtLastScanR.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.txtLastScanR.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.txtLastScanR.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.txtLastScanR.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtLastScanR.Font = new System.Drawing.Font("宋体", 22.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtLastScanR.ForeColor = System.Drawing.Color.White;
this.txtLastScanR.Location = new System.Drawing.Point(780, 127);
this.txtLastScanR.Location = new System.Drawing.Point(715, 111);
this.txtLastScanR.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.txtLastScanR.Name = "txtLastScanR";
this.txtLastScanR.ReadOnly = true;
this.txtLastScanR.Size = new System.Drawing.Size(685, 68);
this.txtLastScanR.Size = new System.Drawing.Size(628, 67);
this.txtLastScanR.TabIndex = 10;
//
// txtProduceModel
@ -170,10 +178,10 @@
this.txtProduceModel.BackColor = System.Drawing.Color.Green;
this.txtProduceModel.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.txtProduceModel.ForeColor = System.Drawing.Color.White;
this.txtProduceModel.Location = new System.Drawing.Point(1831, 47);
this.txtProduceModel.Location = new System.Drawing.Point(1678, 41);
this.txtProduceModel.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtProduceModel.Name = "txtProduceModel";
this.txtProduceModel.Size = new System.Drawing.Size(118, 48);
this.txtProduceModel.Size = new System.Drawing.Size(104, 42);
this.txtProduceModel.TabIndex = 9;
this.txtProduceModel.Text = "左右";
//
@ -182,10 +190,10 @@
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.label7.ForeColor = System.Drawing.Color.White;
this.label7.Location = new System.Drawing.Point(1523, 47);
this.label7.Location = new System.Drawing.Point(1396, 41);
this.label7.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(314, 48);
this.label7.Size = new System.Drawing.Size(276, 42);
this.label7.TabIndex = 8;
this.label7.Text = "当前生产模式";
//
@ -195,10 +203,10 @@
this.txtConfig.BackColor = System.Drawing.Color.Green;
this.txtConfig.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.txtConfig.ForeColor = System.Drawing.Color.White;
this.txtConfig.Location = new System.Drawing.Point(1381, 47);
this.txtConfig.Location = new System.Drawing.Point(1266, 41);
this.txtConfig.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtConfig.Name = "txtConfig";
this.txtConfig.Size = new System.Drawing.Size(118, 48);
this.txtConfig.Size = new System.Drawing.Size(104, 42);
this.txtConfig.TabIndex = 7;
this.txtConfig.Text = "高配";
//
@ -207,10 +215,10 @@
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.label5.ForeColor = System.Drawing.Color.White;
this.label5.Location = new System.Drawing.Point(1073, 47);
this.label5.Location = new System.Drawing.Point(984, 41);
this.label5.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(314, 48);
this.label5.Size = new System.Drawing.Size(276, 42);
this.label5.TabIndex = 6;
this.label5.Text = "当前配置状态";
//
@ -220,10 +228,10 @@
this.lbScanState.BackColor = System.Drawing.Color.Green;
this.lbScanState.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.lbScanState.ForeColor = System.Drawing.Color.White;
this.lbScanState.Location = new System.Drawing.Point(700, 47);
this.lbScanState.Location = new System.Drawing.Point(642, 41);
this.lbScanState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbScanState.Name = "lbScanState";
this.lbScanState.Size = new System.Drawing.Size(247, 55);
this.lbScanState.Size = new System.Drawing.Size(190, 42);
this.lbScanState.TabIndex = 5;
this.lbScanState.Text = "允许扫码";
//
@ -232,10 +240,10 @@
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.label3.ForeColor = System.Drawing.Color.White;
this.label3.Location = new System.Drawing.Point(484, 47);
this.label3.Location = new System.Drawing.Point(444, 41);
this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(216, 48);
this.label3.Size = new System.Drawing.Size(190, 42);
this.label3.TabIndex = 4;
this.label3.Text = "扫描状态";
//
@ -245,10 +253,10 @@
this.lbLinkState.BackColor = System.Drawing.Color.Green;
this.lbLinkState.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold);
this.lbLinkState.ForeColor = System.Drawing.Color.White;
this.lbLinkState.Location = new System.Drawing.Point(224, 47);
this.lbLinkState.Location = new System.Drawing.Point(205, 41);
this.lbLinkState.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbLinkState.Name = "lbLinkState";
this.lbLinkState.Size = new System.Drawing.Size(216, 48);
this.lbLinkState.Size = new System.Drawing.Size(190, 42);
this.lbLinkState.TabIndex = 3;
this.lbLinkState.Text = "连接成功";
//
@ -257,10 +265,10 @@
this.btnOpenParamDialog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnOpenParamDialog.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.btnOpenParamDialog.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnOpenParamDialog.Location = new System.Drawing.Point(2228, 125);
this.btnOpenParamDialog.Location = new System.Drawing.Point(2042, 109);
this.btnOpenParamDialog.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.btnOpenParamDialog.Name = "btnOpenParamDialog";
this.btnOpenParamDialog.Size = new System.Drawing.Size(308, 111);
this.btnOpenParamDialog.Size = new System.Drawing.Size(282, 97);
this.btnOpenParamDialog.TabIndex = 2;
this.btnOpenParamDialog.Text = "返回选中窗口";
this.btnOpenParamDialog.UseVisualStyleBackColor = false;
@ -271,10 +279,10 @@
this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnSearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.btnSearch.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnSearch.Location = new System.Drawing.Point(1912, 125);
this.btnSearch.Location = new System.Drawing.Point(1753, 109);
this.btnSearch.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.btnSearch.Name = "btnSearch";
this.btnSearch.Size = new System.Drawing.Size(308, 111);
this.btnSearch.Size = new System.Drawing.Size(282, 97);
this.btnSearch.TabIndex = 1;
this.btnSearch.Text = "查询明细";
this.btnSearch.UseVisualStyleBackColor = false;
@ -285,54 +293,54 @@
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(16, 47);
this.label1.Location = new System.Drawing.Point(15, 41);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(193, 48);
this.label1.Size = new System.Drawing.Size(170, 42);
this.label1.TabIndex = 0;
this.label1.Text = "PLC状态";
//
// tableLayoutPanel2
//
this.tableLayoutPanel2.ColumnCount = 4;
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 89F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 55F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 89F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 82F));
this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
this.tableLayoutPanel2.Controls.Add(this.txtLeftScan, 1, 0);
this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 426);
this.tableLayoutPanel2.Location = new System.Drawing.Point(4, 375);
this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tableLayoutPanel2.Name = "tableLayoutPanel2";
this.tableLayoutPanel2.RowCount = 1;
this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel2.Size = new System.Drawing.Size(2552, 154);
this.tableLayoutPanel2.Size = new System.Drawing.Size(2339, 134);
this.tableLayoutPanel2.TabIndex = 1;
//
// txtLeftScan
//
this.txtLeftScan.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
this.txtLeftScan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.txtLeftScan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.txtLeftScan.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.txtLeftScan.ForeColor = System.Drawing.Color.White;
this.txtLeftScan.Location = new System.Drawing.Point(93, 34);
this.txtLeftScan.Location = new System.Drawing.Point(59, 29);
this.txtLeftScan.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.txtLeftScan.Name = "txtLeftScan";
this.txtLeftScan.Size = new System.Drawing.Size(1179, 86);
this.txtLeftScan.Size = new System.Drawing.Size(1093, 76);
this.txtLeftScan.TabIndex = 2;
this.txtLeftScan.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtLeftScan_KeyDown);
//
// tableLayoutPanel3
//
this.tableLayoutPanel3.ColumnCount = 9;
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 120F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 165F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 165F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 165F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 165F));
this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.Controls.Add(this.txtLowQty, 7, 0);
this.tableLayoutPanel3.Controls.Add(this.txtHighQty, 5, 0);
@ -344,12 +352,12 @@
this.tableLayoutPanel3.Controls.Add(this.label4, 4, 0);
this.tableLayoutPanel3.Controls.Add(this.label8, 6, 0);
this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel3.Location = new System.Drawing.Point(4, 682);
this.tableLayoutPanel3.Location = new System.Drawing.Point(4, 601);
this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tableLayoutPanel3.Name = "tableLayoutPanel3";
this.tableLayoutPanel3.RowCount = 1;
this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel3.Size = new System.Drawing.Size(2552, 154);
this.tableLayoutPanel3.Size = new System.Drawing.Size(2339, 134);
this.tableLayoutPanel3.TabIndex = 3;
//
// txtLowQty
@ -360,10 +368,10 @@
this.txtLowQty.AutoSize = true;
this.txtLowQty.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.txtLowQty.ForeColor = System.Drawing.Color.White;
this.txtLowQty.Location = new System.Drawing.Point(1024, 0);
this.txtLowQty.Location = new System.Drawing.Point(939, 0);
this.txtLowQty.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtLowQty.Name = "txtLowQty";
this.txtLowQty.Size = new System.Drawing.Size(172, 154);
this.txtLowQty.Size = new System.Drawing.Size(157, 134);
this.txtLowQty.TabIndex = 9;
this.txtLowQty.Text = "0";
this.txtLowQty.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -376,10 +384,10 @@
this.txtHighQty.AutoSize = true;
this.txtHighQty.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.txtHighQty.ForeColor = System.Drawing.Color.White;
this.txtHighQty.Location = new System.Drawing.Point(724, 0);
this.txtHighQty.Location = new System.Drawing.Point(664, 0);
this.txtHighQty.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtHighQty.Name = "txtHighQty";
this.txtHighQty.Size = new System.Drawing.Size(172, 154);
this.txtHighQty.Size = new System.Drawing.Size(157, 134);
this.txtHighQty.TabIndex = 8;
this.txtHighQty.Text = "0";
this.txtHighQty.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -392,10 +400,10 @@
this.txtRightQty.AutoSize = true;
this.txtRightQty.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.txtRightQty.ForeColor = System.Drawing.Color.White;
this.txtRightQty.Location = new System.Drawing.Point(424, 0);
this.txtRightQty.Location = new System.Drawing.Point(389, 0);
this.txtRightQty.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtRightQty.Name = "txtRightQty";
this.txtRightQty.Size = new System.Drawing.Size(172, 154);
this.txtRightQty.Size = new System.Drawing.Size(157, 134);
this.txtRightQty.TabIndex = 7;
this.txtRightQty.Text = "0";
this.txtRightQty.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -408,10 +416,10 @@
this.txtLeftQty.AutoSize = true;
this.txtLeftQty.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.txtLeftQty.ForeColor = System.Drawing.Color.White;
this.txtLeftQty.Location = new System.Drawing.Point(124, 0);
this.txtLeftQty.Location = new System.Drawing.Point(114, 0);
this.txtLeftQty.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtLeftQty.Name = "txtLeftQty";
this.txtLeftQty.Size = new System.Drawing.Size(172, 154);
this.txtLeftQty.Size = new System.Drawing.Size(157, 134);
this.txtLeftQty.TabIndex = 6;
this.txtLeftQty.Text = "0";
this.txtLeftQty.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -422,13 +430,13 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label13.AutoSize = true;
this.label13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.label13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.label13.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.label13.ForeColor = System.Drawing.Color.White;
this.label13.Location = new System.Drawing.Point(4, 0);
this.label13.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(112, 154);
this.label13.Size = new System.Drawing.Size(102, 134);
this.label13.TabIndex = 1;
this.label13.Text = "左";
this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -439,13 +447,13 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label14.AutoSize = true;
this.label14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.label14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.label14.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.label14.ForeColor = System.Drawing.Color.White;
this.label14.Location = new System.Drawing.Point(304, 0);
this.label14.Location = new System.Drawing.Point(279, 0);
this.label14.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(112, 154);
this.label14.Size = new System.Drawing.Size(102, 134);
this.label14.TabIndex = 2;
this.label14.Text = "右";
this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -455,10 +463,10 @@
this.lbVer.Anchor = System.Windows.Forms.AnchorStyles.Right;
this.lbVer.AutoSize = true;
this.lbVer.ForeColor = System.Drawing.Color.White;
this.lbVer.Location = new System.Drawing.Point(2490, 65);
this.lbVer.Location = new System.Drawing.Point(2281, 56);
this.lbVer.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbVer.Name = "lbVer";
this.lbVer.Size = new System.Drawing.Size(58, 24);
this.lbVer.Size = new System.Drawing.Size(54, 21);
this.lbVer.TabIndex = 10;
this.lbVer.Text = " ";
//
@ -468,13 +476,13 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.label4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.label4.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.label4.ForeColor = System.Drawing.Color.White;
this.label4.Location = new System.Drawing.Point(604, 0);
this.label4.Location = new System.Drawing.Point(554, 0);
this.label4.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(112, 154);
this.label4.Size = new System.Drawing.Size(102, 134);
this.label4.TabIndex = 11;
this.label4.Text = "高";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -485,13 +493,13 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.label8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.label8.Font = new System.Drawing.Font("宋体", 25.8F, System.Drawing.FontStyle.Bold);
this.label8.ForeColor = System.Drawing.Color.White;
this.label8.Location = new System.Drawing.Point(904, 0);
this.label8.Location = new System.Drawing.Point(829, 0);
this.label8.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(112, 154);
this.label8.Size = new System.Drawing.Size(102, 134);
this.label8.TabIndex = 12;
this.label8.Text = "低";
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -503,10 +511,10 @@
this.lbMsg.AutoSize = true;
this.lbMsg.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbMsg.ForeColor = System.Drawing.Color.Red;
this.lbMsg.Location = new System.Drawing.Point(4, 1648);
this.lbMsg.Location = new System.Drawing.Point(4, 1442);
this.lbMsg.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbMsg.Name = "lbMsg";
this.lbMsg.Size = new System.Drawing.Size(230, 112);
this.lbMsg.Size = new System.Drawing.Size(201, 98);
this.lbMsg.TabIndex = 5;
this.lbMsg.Text = "异常信息 提示";
this.lbMsg.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -518,10 +526,10 @@
this.panel2.Controls.Add(this.lbBegin);
this.panel2.Controls.Add(this.label2);
this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel2.Location = new System.Drawing.Point(4, 586);
this.panel2.Location = new System.Drawing.Point(4, 515);
this.panel2.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(2552, 90);
this.panel2.Size = new System.Drawing.Size(2339, 78);
this.panel2.TabIndex = 6;
//
// lbEnd
@ -529,10 +537,10 @@
this.lbEnd.AutoSize = true;
this.lbEnd.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbEnd.ForeColor = System.Drawing.Color.White;
this.lbEnd.Location = new System.Drawing.Point(740, 16);
this.lbEnd.Location = new System.Drawing.Point(678, 14);
this.lbEnd.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbEnd.Name = "lbEnd";
this.lbEnd.Size = new System.Drawing.Size(397, 37);
this.lbEnd.Size = new System.Drawing.Size(357, 33);
this.lbEnd.TabIndex = 3;
this.lbEnd.Text = "2024-06-01 23:59:59";
//
@ -541,10 +549,10 @@
this.label6.AutoSize = true;
this.label6.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label6.ForeColor = System.Drawing.Color.White;
this.label6.Location = new System.Drawing.Point(673, 16);
this.label6.Location = new System.Drawing.Point(617, 14);
this.label6.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(37, 37);
this.label6.Size = new System.Drawing.Size(33, 33);
this.label6.TabIndex = 2;
this.label6.Text = "-";
//
@ -553,10 +561,10 @@
this.lbBegin.AutoSize = true;
this.lbBegin.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbBegin.ForeColor = System.Drawing.Color.White;
this.lbBegin.Location = new System.Drawing.Point(276, 16);
this.lbBegin.Location = new System.Drawing.Point(253, 14);
this.lbBegin.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbBegin.Name = "lbBegin";
this.lbBegin.Size = new System.Drawing.Size(397, 37);
this.lbBegin.Size = new System.Drawing.Size(357, 33);
this.lbBegin.TabIndex = 1;
this.lbBegin.Text = "2024-06-01 00:00:00";
//
@ -565,10 +573,10 @@
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label2.ForeColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(8, 16);
this.label2.Location = new System.Drawing.Point(7, 14);
this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(265, 37);
this.label2.Size = new System.Drawing.Size(237, 33);
this.label2.TabIndex = 0;
this.label2.Text = "当前生产数据:";
//
@ -580,27 +588,27 @@
this.tableLayoutPanel4.Controls.Add(this.dgridScanRecords, 1, 0);
this.tableLayoutPanel4.Controls.Add(this.txtAllQty, 0, 0);
this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
this.tableLayoutPanel4.Location = new System.Drawing.Point(4, 842);
this.tableLayoutPanel4.Location = new System.Drawing.Point(4, 741);
this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.tableLayoutPanel4.Name = "tableLayoutPanel4";
this.tableLayoutPanel4.RowCount = 1;
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 802F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(2552, 803);
this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 703F));
this.tableLayoutPanel4.Size = new System.Drawing.Size(2339, 698);
this.tableLayoutPanel4.TabIndex = 7;
//
// dgridScanRecords
//
this.dgridScanRecords.AllowUserToAddRows = false;
this.dgridScanRecords.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
dataGridViewCellStyle13.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle13.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgridScanRecords.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle13;
this.dgridScanRecords.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
dataGridViewCellStyle15.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle15.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgridScanRecords.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle15;
this.dgridScanRecords.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgridScanRecords.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.,
@ -610,21 +618,21 @@
this.});
this.dgridScanRecords.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgridScanRecords.EnableHeadersVisualStyles = false;
this.dgridScanRecords.Location = new System.Drawing.Point(1280, 3);
this.dgridScanRecords.Location = new System.Drawing.Point(1173, 3);
this.dgridScanRecords.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.dgridScanRecords.Name = "dgridScanRecords";
this.dgridScanRecords.ReadOnly = true;
dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgridScanRecords.RowHeadersDefaultCellStyle = dataGridViewCellStyle14;
dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
dataGridViewCellStyle16.Font = new System.Drawing.Font("宋体", 13.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle16.ForeColor = System.Drawing.Color.White;
dataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgridScanRecords.RowHeadersDefaultCellStyle = dataGridViewCellStyle16;
this.dgridScanRecords.RowHeadersWidth = 51;
this.dgridScanRecords.RowTemplate.Height = 27;
this.dgridScanRecords.Size = new System.Drawing.Size(1268, 797);
this.dgridScanRecords.Size = new System.Drawing.Size(1162, 692);
this.dgridScanRecords.TabIndex = 4;
this.dgridScanRecords.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgridScanRecords_CellContentClick);
//
@ -682,13 +690,13 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtAllQty.AutoSize = true;
this.txtAllQty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(38)))), ((int)(((byte)(46)))), ((int)(((byte)(64)))));
this.txtAllQty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(17)))), ((int)(((byte)(56)))), ((int)(((byte)(71)))));
this.txtAllQty.Font = new System.Drawing.Font("宋体", 220F, System.Drawing.FontStyle.Bold);
this.txtAllQty.ForeColor = System.Drawing.Color.Yellow;
this.txtAllQty.Location = new System.Drawing.Point(4, 0);
this.txtAllQty.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.txtAllQty.Name = "txtAllQty";
this.txtAllQty.Size = new System.Drawing.Size(1268, 803);
this.txtAllQty.Size = new System.Drawing.Size(1161, 698);
this.txtAllQty.TabIndex = 5;
this.txtAllQty.Text = "0";
this.txtAllQty.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
@ -697,10 +705,10 @@
//
this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel3.Location = new System.Drawing.Point(4, 163);
this.panel3.Location = new System.Drawing.Point(4, 143);
this.panel3.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(2552, 1);
this.panel3.Size = new System.Drawing.Size(2339, 1);
this.panel3.TabIndex = 8;
//
// panel4
@ -712,7 +720,7 @@
this.panel4.Location = new System.Drawing.Point(4, 3);
this.panel4.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(2552, 154);
this.panel4.Size = new System.Drawing.Size(2339, 134);
this.panel4.TabIndex = 9;
//
// lbCfg
@ -720,9 +728,9 @@
this.lbCfg.AutoSize = true;
this.lbCfg.BackColor = System.Drawing.Color.Transparent;
this.lbCfg.ForeColor = System.Drawing.Color.White;
this.lbCfg.Location = new System.Drawing.Point(1, 7);
this.lbCfg.Location = new System.Drawing.Point(1, 6);
this.lbCfg.Name = "lbCfg";
this.lbCfg.Size = new System.Drawing.Size(70, 24);
this.lbCfg.Size = new System.Drawing.Size(65, 21);
this.lbCfg.TabIndex = 23;
this.lbCfg.Text = " ";
//
@ -732,10 +740,10 @@
this.lbTime.AutoSize = true;
this.lbTime.Font = new System.Drawing.Font("宋体", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.lbTime.ForeColor = System.Drawing.Color.Yellow;
this.lbTime.Location = new System.Drawing.Point(1912, 61);
this.lbTime.Location = new System.Drawing.Point(1753, 53);
this.lbTime.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.lbTime.Name = "lbTime";
this.lbTime.Size = new System.Drawing.Size(636, 64);
this.lbTime.Size = new System.Drawing.Size(556, 56);
this.lbTime.TabIndex = 1;
this.lbTime.Text = "2024-10-10 12:23:32";
this.lbTime.DoubleClick += new System.EventHandler(this.lbTime_DoubleClick);
@ -745,10 +753,10 @@
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("宋体", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label11.ForeColor = System.Drawing.Color.Yellow;
this.label11.Location = new System.Drawing.Point(388, 31);
this.label11.Location = new System.Drawing.Point(356, 27);
this.label11.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(818, 97);
this.label11.Size = new System.Drawing.Size(715, 84);
this.label11.TabIndex = 0;
this.label11.Text = "北汽模塑生产看板";
//
@ -764,11 +772,42 @@
this.dateTimer.Interval = 500;
this.dateTimer.Tick += new System.EventHandler(this.dateTimer_Tick);
//
// panel5
//
this.panel5.BackColor = System.Drawing.Color.Cyan;
this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel5.Location = new System.Drawing.Point(3, 599);
this.panel5.Name = "panel5";
this.panel5.Size = new System.Drawing.Size(2341, 1);
this.panel5.TabIndex = 10;
//
// panel6
//
this.panel6.BackColor = System.Drawing.Color.Cyan;
this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel6.Location = new System.Drawing.Point(3, 373);
this.panel6.Name = "panel6";
this.panel6.Size = new System.Drawing.Size(2341, 1);
this.panel6.TabIndex = 11;
//
// btnReScan
//
this.btnReScan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
this.btnReScan.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btnReScan.Location = new System.Drawing.Point(2042, 6);
this.btnReScan.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.btnReScan.Name = "btnReScan";
this.btnReScan.Size = new System.Drawing.Size(282, 97);
this.btnReScan.TabIndex = 12;
this.btnReScan.Text = "重扫";
this.btnReScan.UseVisualStyleBackColor = false;
this.btnReScan.Click += new System.EventHandler(this.btnReScan_Click);
//
// FrmDoorSill_214_3
//
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 21F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(2560, 1760);
this.ClientSize = new System.Drawing.Size(2347, 1540);
this.Controls.Add(this.tableLayoutPanel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
@ -844,5 +883,8 @@
private System.Windows.Forms.DataGridViewTextBoxColumn ;
private System.Windows.Forms.DataGridViewTextBoxColumn ;
private System.Windows.Forms.Label lbCfg;
private System.Windows.Forms.Panel panel5;
private System.Windows.Forms.Panel panel6;
private System.Windows.Forms.Button btnReScan;
}
}

55
PunchAssemble/PunchAndWeld/FrmDoorSill_214_3.cs

@ -26,6 +26,14 @@ namespace PunchAndWeld
private string _lastScan = string.Empty;
private string _leftScanCode = string.Empty;
private string _rightScanCode = string.Empty;
private string _leftScanCodeLast = string.Empty;
private string _rightScanCodeLast = string.Empty;
//原来颜色
//18, 34, 52 背景,
//38, 46, 64 黑色
public FrmDoorSill_214_3()
{
InitializeComponent();
@ -340,11 +348,13 @@ namespace PunchAndWeld
{
txtLastScanL.Text = barCode;
_leftScanCode = barCode;
_leftScanCodeLast = barCode;
}
else
{
txtLastScanR.Text = barCode;
_rightScanCode = barCode;
_rightScanCodeLast = barCode;
}
txtLeftScan.Text = "";
@ -628,5 +638,50 @@ namespace PunchAndWeld
}
}
private void btnReScan_Click(object sender, EventArgs e)
{
if(string.IsNullOrEmpty(_leftScanCodeLast) && string.IsNullOrEmpty(_rightScanCodeLast))
{
MessageBox.Show("未扫码,无需重扫.");
return;
}
if (MessageBox.Show("执行重扫后,扫码左右侧数据全部清空,同时给设备发送初始化信号,是否继续执行?","重扫提示", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
if (!string.IsNullOrEmpty(_leftScanCodeLast))
{
ProScreenFunc.DelScanRecord(_leftScanCodeLast, "tb_ScanRecord_Laser");
ProScreenFunc.DelScanRecord(_leftScanCodeLast, "tb_ScanRecord_LaserL");
}
if (!string.IsNullOrEmpty(_rightScanCodeLast))
{
ProScreenFunc.DelScanRecord(_rightScanCodeLast, "tb_ScanRecord_Laser");
ProScreenFunc.DelScanRecord(_rightScanCodeLast, "tb_ScanRecord_LaserL");
}
SendToPLC(0, 0, 0);
ShowDevState(false);
ClearDisplay();
_produceModel = string.Empty;
_lastScan = string.Empty;
_leftScanCode = string.Empty;
_rightScanCode = string.Empty;
txtLastScanL.Text = string.Empty;
txtLastScanR.Text = string.Empty;
_leftScanCodeLast = string.Empty;
_rightScanCodeLast = string.Empty;
GetScanRecords();
//_leftScanCode
// _rightScanCode
// tb_ScanRecord_Laser //高配表
// tb_ScanRecord_LaserL //低配表
}
}
}
}

7
PunchAssemble/PunchAndWeld/FrmProScreenS.cs

@ -495,7 +495,7 @@ namespace PunchAndWeld
}
catch (Exception ex)
{
MessageBox.Show("连接数据库超时!");
MessageBox.Show("连接数据库超时!"+ ex.Message);
}
}
@ -1204,6 +1204,11 @@ namespace PunchAndWeld
private void button6_Click(object sender, EventArgs e)
{
if(stationNo == "ZP9127323")
{
SQLTableOnChange(null,null);
}
FrmProScreen2 frm = new FrmProScreen2();
frm.Show();
}

4
PunchAssemble/PunchAndWeld/Properties/AssemblyInfo.cs

@ -32,6 +32,6 @@ using System.Runtime.InteropServices;
// 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.24")]
[assembly: AssemblyFileVersion("1.0.0.24")]
[assembly: AssemblyVersion("1.0.0.25")]
[assembly: AssemblyFileVersion("1.0.0.25")]
//1.0.0.23 扫塑件码增加了,StockIn验证

252
PurchingMistakeNew/UtilityHelper.cs

@ -0,0 +1,252 @@
using gregn6Lib;
using MESClassLibrary.BLL.Mistake247;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Text;
namespace PurchingMistakeNew
{
public class UtilityHelper
{
#region box箱码 打印
/// <summary>
/// 247轮眉
/// </summary>
/// <param name="type">类型 例如后左,后右</param>
/// <param name="fB">前后</param>
/// <param name="lR">左右</param>
/// <param name="botDisplay">下部显示</param>
public static void Get247LMBoxPrintDisplay(string type, ref string fB, ref string lR, ref string botDisplay)
{
string cfg = ConfigurationManager.AppSettings["PrintDisplayLMBox247"].ToString();
GetBoxPrintDisplay(cfg, type, ref fB, ref lR, ref botDisplay);
//if (!string.IsNullOrEmpty(cfg))
//{
// string[] grp = cfg.Split(';');
// foreach(string grpItem in grp)
// {
// //前左-前左,轮眉18,FLFLFLFLFLFLFLFLFL
// string[] grp1 = grpItem.Split('-');
// if(grp1.Length == 2 && grp1[0] == type)
// {
// string[] grp2 = grp1[1].Split(',');
// if(grp2.Length == 3)
// {
// fB = grp2[0];
// lR = grp2[1];
// botDisplay = grp2[2];
// }
// }
// }
//}
}
/// <summary>
/// 247扰流板
/// </summary>
/// <param name="type">类型 例如后左H,后左X 注意需要带H或者X </param>
/// <param name="fB">前后</param>
/// <param name="lR">左右</param>
/// <param name="botDisplay">下部显示</param>
public static void Get247RLBBoxPrintDisplay(string type, ref string fB, ref string lR, ref string botDisplay)
{
string cfg = ConfigurationManager.AppSettings["PrintDisplayRLBBox247"].ToString();
GetBoxPrintDisplay(cfg, type, ref fB, ref lR, ref botDisplay);
}
/// <summary>
/// 243轮眉
/// </summary>
/// <param name="type">类型 例如后左H,后左X 注意需要带H或者X </param>
/// <param name="fB">前后</param>
/// <param name="lR">左右</param>
/// <param name="botDisplay">下部显示</param>
public static void Get243LMBoxPrintDisplay(string type, ref string fB, ref string lR, ref string botDisplay)
{
string cfg = ConfigurationManager.AppSettings["PrintDisplayLMBox243"].ToString();
GetBoxPrintDisplay(cfg, type, ref fB, ref lR, ref botDisplay);
}
private static void GetBoxPrintDisplay(string cfg, string type, ref string fB, ref string lR, ref string botDisplay)
{
if (!string.IsNullOrEmpty(cfg))
{
string[] grp = cfg.Split(';');
foreach (string grpItem in grp)
{
//前左-前左,轮眉18,FLFLFLFLFLFLFLFLFL
string[] grp1 = grpItem.Split('-');
if (grp1.Length == 2 && grp1[0] == type)
{
string[] grp2 = grp1[1].Split(',');
if (grp2.Length == 3)
{
fB = grp2[0];
lR = grp2[1];
botDisplay = grp2[2];
}
}
}
}
}
public static void SetBoxPrintInfo(ref string fileName, string printType, GridppReport report, string printerName, bool is247 = true)
{
if (printType == "门板")
{
fileName = ReportHelper.GetBoxTemplateNameDoor();
}
else if (printType == "轮眉")
{
if (is247 == true)
{
fileName = ReportHelper.GetBoxTemplateNameWheelBrow247();
}
else
{
fileName = ReportHelper.GetBoxTemplateNameWheelBrow243();
}
}
else if (printType == "扰流板")
{
fileName = ReportHelper.GetBoxTemplateNameSpoiler();
}
report.LoadFromFile(fileName);
report.Printer.PrinterName = ConfigurationManager.AppSettings[printerName].ToString();
//GetHeadTable = getData;
}
public static void PrintBox(GridppReport report, string fileName, string part, string moudleType, string partType, string carType, Func<DataTable> GetHeadTable)
{
DataTable headTable = null;
if (string.IsNullOrEmpty(fileName))
{
report.Register("");
report.ConnectionString = ConfigurationManager.ConnectionStrings["report"].ToString();
report.Print(false);
}
else
{
headTable = GetHeadTable();
headTable.Columns.Add("QLevel");
headTable.Columns.Add("FB");
headTable.Columns.Add("LR");
headTable.Columns.Add("Dis");
foreach (DataRow dr in headTable.Rows)
{
string qlevel = GetQLevel(part);
dr["QLevel"] = qlevel;
}
string fb = string.Empty;
string lr = string.Empty;
string dis = string.Empty;
if (partType == "轮眉")
{
if (carType.Contains("247"))
{
UtilityHelper.Get247LMBoxPrintDisplay(moudleType, ref fb, ref lr, ref dis);
}
else if (carType.Contains("243"))
{
UtilityHelper.Get243LMBoxPrintDisplay(moudleType, ref fb, ref lr, ref dis);
}
}
else if (partType == "扰流板")
{
if (carType.Contains("247"))
{
UtilityHelper.Get247RLBBoxPrintDisplay(moudleType, ref fb, ref lr, ref dis);
}
}
headTable.Rows[0]["FB"] = fb;
headTable.Rows[0]["LR"] = lr;
headTable.Rows[0]["Dis"] = dis;
ReportHelper report2 = new ReportHelper(fileName, headTable, null, (int)GRPaperOrientation.grpoPortrait, 1, report.Printer.PrinterName);
report2.Report.Printer.PrinterName = report.Printer.PrinterName;
report2.Report.Print(false);
}
}
#endregion
#region 标签打印
public static void SetPrintInfo(ref string fileName, string printType, GridppReport report, string printerName)
{
if (printType == "门板")
{
fileName = ReportHelper.GetTemplateDoor();
}
else if (printType == "扰流板")
{
fileName = ReportHelper.GetTemplateSpoiler();
}
else if (printType == "轮眉247")
{
fileName = ReportHelper.GetTemplateWheelBrow247();
}
else if (printType == "轮眉243")
{
fileName = ReportHelper.GetTemplateWheelBrow243();
}
report.LoadFromFile(fileName);
report.Printer.PrinterName = ConfigurationManager.AppSettings[printerName].ToString();
}
public static void Print(GridppReport report, string fileName, string part, DataTable assembleTable)
{
string simplePart = part;
if (!string.IsNullOrEmpty(part))
{
int i = part.IndexOf('.');
if (i > 0)
{
simplePart = part.Substring(0, i);
}
}
DataTable headTable = null;
if (string.IsNullOrEmpty(fileName))
{
report.Register("");
report.ConnectionString = ConfigurationManager.ConnectionStrings["report"].ToString();
report.Print(false);
}
else
{
if (assembleTable.Rows.Count == 0)
return;
headTable = assembleTable;
headTable.Columns.Add("QLevel");
foreach (DataRow dr in headTable.Rows)
{
string qlevel = GetQLevel(simplePart);
dr["QLevel"] = qlevel;
}
ReportHelper report2 = new ReportHelper(fileName, headTable, null, (int)GRPaperOrientation.grpoPortrait, 1, report.Printer.PrinterName);
report2.Report.Printer.PrinterName = report.Printer.PrinterName;
report2.Report.Print(false);
}
}
#endregion
public static string GetQLevel(string part)
{
RecordBLL bill = new RecordBLL();
string qlevel = bill.SearchQLevelFromWms("", part);
return qlevel;
}
}
}
Loading…
Cancel
Save