SystemSetting_PrinterTest.cs 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. using Seagull.BarTender.Print;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Drawing.Printing;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. using UAS_MES_NEW.DataOperate;
  12. using UAS_MES_NEW.Entity;
  13. using UAS_MES_NEW.PublicMethod;
  14. using static System.Runtime.CompilerServices.RuntimeHelpers;
  15. namespace UAS_MES_NEW.SystemSetting
  16. {
  17. public partial class SystemSetting_PrinterTest : Form
  18. {
  19. Engine engine = new Engine();
  20. LabelFormatDocument format;
  21. DataHelper dh = SystemInf.dh;
  22. DataTable Dbfind;
  23. public SystemSetting_PrinterTest()
  24. {
  25. InitializeComponent();
  26. }
  27. private void PrintTest_Click(object sender, EventArgs e)
  28. {
  29. PrintDocument print = new PrintDocument();
  30. print.PrinterSettings.PrinterName = PrinterList.Text;
  31. print.PrintPage += Print_PrintPage;
  32. print.Print();
  33. }
  34. private void Print_PrintPage(object sender, PrintPageEventArgs e)
  35. {
  36. Graphics g = e.Graphics;
  37. float leftMargin = 10f; //左边距
  38. SolidBrush myBrush = new SolidBrush(Color.Black);//刷子
  39. float yPosition = 5f;//行定位
  40. Font printFont = new Font("微软雅黑", 20f, FontStyle.Bold);//设置字体
  41. yPosition += printFont.GetHeight(g);//另起一行
  42. g.DrawString("成功连接此打印机", printFont, myBrush, leftMargin, yPosition, new StringFormat());
  43. }
  44. private void Setting_Click(object sender, EventArgs e)
  45. {
  46. PrintDialog printd = new PrintDialog();
  47. printd.PrinterSettings.PrinterName = PrinterList.Text;
  48. printd.ShowDialog();
  49. }
  50. private void Export_Click(object sender, EventArgs e)
  51. {
  52. if (!dh.CheckExist("make", "ma_code='" + ma_code.Text + "'"))
  53. {
  54. MessageBox.Show("工单号不存在");
  55. return;
  56. }
  57. /*DataTable dt = (DataTable)dh.ExecuteSql("select pr_machinetype from make left join product on ma_prodcode=pr_code where ma_code='" + ma_code.Text + "'", "select");
  58. if (dt.Rows.Count > 0)
  59. {
  60. string pr_machinetype = dt.Rows[0]["pr_machinetype"].ToString();
  61. if (pr_machinetype != Prefix.Text)
  62. {
  63. MessageBox.Show("前缀和产品机型" + pr_machinetype + "不匹配");
  64. return;
  65. }
  66. }*/
  67. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 4)
  68. {
  69. int temp = i;
  70. for (int j = 0; j < format.SubStrings.Count; j++)
  71. {
  72. switch (format.SubStrings[j].Name)
  73. {
  74. case "SN":
  75. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyyyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  76. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  77. dh.ExecuteSql("insert into makesnlist(msl_id,msl_indate,msl_makecode,msl_sncode,msl_type,msl_printstatus)values(makesnlist_seq.nextval,sysdate,'" + ma_code.Text + "','" + format.SubStrings[j].Value + "','before',-1)", "insert");
  78. break;
  79. case "SN2":
  80. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyyyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 1).ToString()));
  81. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  82. dh.ExecuteSql("insert into makesnlist(msl_id,msl_indate,msl_makecode,msl_sncode,msl_type,msl_printstatus)values(makesnlist_seq.nextval,sysdate,'" + ma_code.Text + "','" + format.SubStrings[j].Value + "','before',-1)", "insert");
  83. break;
  84. case "SN3":
  85. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyyyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 2).ToString()));
  86. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  87. dh.ExecuteSql("insert into makesnlist(msl_id,msl_indate,msl_makecode,msl_sncode,msl_type,msl_printstatus)values(makesnlist_seq.nextval,sysdate,'" + ma_code.Text + "','" + format.SubStrings[j].Value + "','before',-1)", "insert");
  88. break;
  89. case "SN4":
  90. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyyyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 3).ToString()));
  91. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  92. dh.ExecuteSql("insert into makesnlist(msl_id,msl_indate,msl_makecode,msl_sncode,msl_type,msl_printstatus)values(makesnlist_seq.nextval,sysdate,'" + ma_code.Text + "','" + format.SubStrings[j].Value + "','before',-1)", "insert");
  93. break;
  94. default:
  95. break;
  96. }
  97. }
  98. format.PrintSetup.PrinterName = PrinterList.Text;
  99. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  100. format.Print();
  101. DataTable dt = (DataTable)dh.ExecuteSql("select ma_qty,ma_prodcode,pr_detail,ma_printnum from make left join product on ma_prodcode=pr_code left join (select count(1)ma_printnum,msl_makecode from makesnlist where msl_printstatus=-1 group by msl_makecode) on msl_makecode=ma_code where ma_code='" + ma_code.Text + "'", "select");
  102. if (dt.Rows.Count > 0)
  103. {
  104. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  105. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  106. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  107. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  108. }
  109. }
  110. }
  111. private static string lpad(int length, string number)
  112. {
  113. while (number.Length < length)
  114. {
  115. number = "0" + number;
  116. }
  117. number = number.Substring(number.Length - length, length);
  118. return number;
  119. }
  120. private void SystemSetting_PrinterTest_Load(object sender, EventArgs e)
  121. {
  122. engine.Start();
  123. format = engine.Documents.Open(Application.StartupPath + "/Label.btw");
  124. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  125. ma_code.SelectField = "ma_code # 工单编号,pr_code # 产品编号,pr_spec # 型号";
  126. ma_code.FormName = Name;
  127. ma_code.SetValueField = new string[] { "ma_code" };
  128. ma_code.Condition = "ma_statuscode='STARTED'";
  129. ma_code.DbChange += pr_code_DbChange;
  130. }
  131. private void pr_code_DbChange(object sender, EventArgs e)
  132. {
  133. Dbfind = ma_code.ReturnData;
  134. BaseUtil.SetFormValue(this.Controls, Dbfind);
  135. DataTable dt = (DataTable)dh.ExecuteSql("select ma_qty,ma_prodcode,pr_detail,ma_printnum from make left join product on ma_prodcode=pr_code left join (select count(1)ma_printnum,mil_makecode from makeimeilist where mil_printstatus=-1 group by mil_makecode) on mil_makecode=ma_code where ma_code='" + ma_code.Text + "'", "select");
  136. if (dt.Rows.Count > 0)
  137. {
  138. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  139. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  140. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  141. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  142. }
  143. }
  144. }
  145. }