SystemSetting_PrinterTestRadium.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_PrinterTestRadium : Form
  18. {
  19. Engine engine = new Engine();
  20. LabelFormatDocument format;
  21. DataHelper dh = SystemInf.dh;
  22. DataTable Dbfind;
  23. public SystemSetting_PrinterTestRadium()
  24. {
  25. InitializeComponent();
  26. }
  27. private void PrintTest_Click(object sender, EventArgs e)
  28. {
  29. PrintDocument print = new PrintDocument();
  30. print.PrintPage += Print_PrintPage;
  31. print.Print();
  32. }
  33. private void Print_PrintPage(object sender, PrintPageEventArgs e)
  34. {
  35. Graphics g = e.Graphics;
  36. float leftMargin = 10f; //左边距
  37. SolidBrush myBrush = new SolidBrush(System.Drawing.Color.Black);//刷子
  38. float yPosition = 5f;//行定位
  39. Font printFont = new Font("微软雅黑", 20f, FontStyle.Bold);//设置字体
  40. yPosition += printFont.GetHeight(g);//另起一行
  41. g.DrawString("成功连接此打印机", printFont, myBrush, leftMargin, yPosition, new StringFormat());
  42. }
  43. private void Setting_Click(object sender, EventArgs e)
  44. {
  45. PrintDialog printd = new PrintDialog();
  46. printd.ShowDialog();
  47. }
  48. private void Export_Click(object sender, EventArgs e)
  49. {
  50. if (!dh.CheckExist("make", "ma_code='" + ma_code.Text + "'"))
  51. {
  52. MessageBox.Show("工单号不存在");
  53. return;
  54. }
  55. /*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");
  56. if (dt.Rows.Count > 0)
  57. {
  58. string pr_machinetype = dt.Rows[0]["pr_machinetype"].ToString();
  59. if (pr_machinetype != Prefix.Text)
  60. {
  61. MessageBox.Show("前缀和产品机型" + pr_machinetype + "不匹配");
  62. return;
  63. }
  64. }*/
  65. format = engine.Documents.Open(Application.StartupPath + "/单排.btw");
  66. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 1)
  67. {
  68. int temp = i;
  69. for (int j = 0; j < format.SubStrings.Count; j++)
  70. {
  71. switch (format.SubStrings[j].Name)
  72. {
  73. case "SN":
  74. format.SubStrings[j].Value = (PreFix.Text + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  75. if (!dh.CheckExist("makesnlist_radium", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  76. dh.ExecuteSql("insert into makesnlist_radium(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");
  77. break;
  78. }
  79. }
  80. 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");
  81. if (dt.Rows.Count > 0)
  82. {
  83. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  84. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  85. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  86. }
  87. }
  88. }
  89. private static string lpad(int length, string number)
  90. {
  91. while (number.Length < length)
  92. {
  93. number = "0" + number;
  94. }
  95. number = number.Substring(number.Length - length, length);
  96. return number;
  97. }
  98. private void SystemSetting_PrinterTest_Load(object sender, EventArgs e)
  99. {
  100. engine.Start();
  101. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  102. ma_code.SelectField = "ma_code # 工单编号,pr_code # 产品编号,pr_spec # 型号";
  103. ma_code.FormName = Name;
  104. ma_code.SetValueField = new string[] { "ma_code" };
  105. ma_code.Condition = "ma_statuscode='STARTED'";
  106. ma_code.DbChange += pr_code_DbChange;
  107. }
  108. private void pr_code_DbChange(object sender, EventArgs e)
  109. {
  110. Dbfind = ma_code.ReturnData;
  111. BaseUtil.SetFormValue(this.Controls, Dbfind);
  112. DataTable dt = (DataTable)dh.ExecuteSql("select ma_submodel,ma_color,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");
  113. if (dt.Rows.Count > 0)
  114. {
  115. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  116. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  117. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  118. }
  119. }
  120. }
  121. }