SystemSetting_PrinterTest.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 + 3)
  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. default:
  90. break;
  91. }
  92. }
  93. format.PrintSetup.PrinterName = PrinterList.Text;
  94. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  95. format.Print();
  96. 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");
  97. if (dt.Rows.Count > 0)
  98. {
  99. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  100. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  101. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  102. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  103. }
  104. }
  105. }
  106. private static string lpad(int length, string number)
  107. {
  108. while (number.Length < length)
  109. {
  110. number = "0" + number;
  111. }
  112. number = number.Substring(number.Length - length, length);
  113. return number;
  114. }
  115. private void SystemSetting_PrinterTest_Load(object sender, EventArgs e)
  116. {
  117. engine.Start();
  118. format = engine.Documents.Open(Application.StartupPath + "/Label.btw");
  119. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  120. ma_code.SelectField = "ma_code # 工单编号,pr_code # 产品编号,pr_spec # 型号";
  121. ma_code.FormName = Name;
  122. ma_code.SetValueField = new string[] { "ma_code" };
  123. ma_code.Condition = "ma_statuscode='STARTED'";
  124. ma_code.DbChange += pr_code_DbChange;
  125. }
  126. private void pr_code_DbChange(object sender, EventArgs e)
  127. {
  128. Dbfind = ma_code.ReturnData;
  129. BaseUtil.SetFormValue(this.Controls, Dbfind);
  130. 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");
  131. if (dt.Rows.Count > 0)
  132. {
  133. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  134. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  135. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  136. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  137. }
  138. }
  139. }
  140. }