SystemSetting_PrinterTest.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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(System.Drawing.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. if (OneColumn.Checked)
  68. {
  69. format = engine.Documents.Open(Application.StartupPath + "/单排.btw");
  70. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 1)
  71. {
  72. int temp = i;
  73. for (int j = 0; j < format.SubStrings.Count; j++)
  74. {
  75. switch (format.SubStrings[j].Name)
  76. {
  77. case "SN":
  78. format.SubStrings[j].Value = (ma_code.Text + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  79. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  80. 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");
  81. break;
  82. case "COLOR":
  83. format.SubStrings[j].Value = Color.Text;
  84. break;
  85. case "MACHINE":
  86. format.SubStrings[j].Value = Type.Text;
  87. break;
  88. case "RAM":
  89. format.SubStrings[j].Value = Ram.Text;
  90. break;
  91. default:
  92. break;
  93. }
  94. }
  95. format.PrintSetup.PrinterName = PrinterList.Text;
  96. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  97. format.Print();
  98. 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");
  99. if (dt.Rows.Count > 0)
  100. {
  101. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  102. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  103. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  104. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  105. }
  106. }
  107. }
  108. if (TwoColumn.Checked)
  109. {
  110. format = engine.Documents.Open(Application.StartupPath + "/Label.btw");
  111. format.SubStrings["Line"].Value = Line.Text;
  112. format.SubStrings["Type"].Value = Type.Text;
  113. format.SubStrings["Color_"].Value = Color.Text;
  114. format.SubStrings["QTY"].Value = ma_qty.Text;
  115. format.SubStrings["Make"].Value = ma_code.Text;
  116. format.SubStrings["CUSTOMER"].Value = customer.Text;
  117. format.SubStrings["SETTING"].Value = Ram.Text;
  118. string updatefield = "";
  119. if (Line.Text != "")
  120. {
  121. updatefield += " ma_linecode='" + Line.Text + "',";
  122. }
  123. if (Type.Text != "")
  124. {
  125. updatefield += " ma_type='" + Type.Text + "',";
  126. }
  127. if (Color.Text != "")
  128. {
  129. updatefield += " ma_color='" + Color.Text + "',";
  130. }
  131. if (customer.Text != "")
  132. {
  133. updatefield += " ma_CUSTOMER='" + customer.Text + "',";
  134. }
  135. if (Ram.Text != "")
  136. {
  137. updatefield += " ma_ram='" + Ram.Text + "',";
  138. }
  139. dh.ExecuteSql("update make set " + updatefield.Substring(0, updatefield.Length - 1) + " where ma_code='" + ma_code.Text + "'", "update");
  140. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 2)
  141. {
  142. int temp = i;
  143. for (int j = 0; j < format.SubStrings.Count; j++)
  144. {
  145. switch (format.SubStrings[j].Name)
  146. {
  147. case "SN":
  148. format.SubStrings[j].Value = (ma_code.Text + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  149. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  150. 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");
  151. break;
  152. case "SN2":
  153. format.SubStrings[j].Value = (ma_code.Text + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 1).ToString()));
  154. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  155. 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");
  156. break;
  157. default:
  158. break;
  159. }
  160. }
  161. format.PrintSetup.PrinterName = PrinterList.Text;
  162. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  163. format.Print();
  164. 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");
  165. if (dt.Rows.Count > 0)
  166. {
  167. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  168. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  169. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  170. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  171. }
  172. }
  173. }
  174. }
  175. private static string lpad(int length, string number)
  176. {
  177. while (number.Length < length)
  178. {
  179. number = "0" + number;
  180. }
  181. number = number.Substring(number.Length - length, length);
  182. return number;
  183. }
  184. private void SystemSetting_PrinterTest_Load(object sender, EventArgs e)
  185. {
  186. engine.Start();
  187. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  188. ma_code.SelectField = "ma_code # 工单编号,pr_code # 产品编号,ma_qty # 工单数量,pr_spec # 型号";
  189. ma_code.FormName = Name;
  190. ma_code.SetValueField = new string[] { "ma_code" };
  191. ma_code.Condition = "ma_statuscode='STARTED'";
  192. ma_code.DbChange += pr_code_DbChange;
  193. }
  194. private void pr_code_DbChange(object sender, EventArgs e)
  195. {
  196. Dbfind = ma_code.ReturnData;
  197. BaseUtil.SetFormValue(this.Controls, Dbfind);
  198. DataTable dt = (DataTable)dh.ExecuteSql("select ma_linecode,ma_ram,ma_customer,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,msl_makecode from makesnlist where msl_printstatus=-1 group by msl_makecode) on msl_makecode=ma_code where ma_code='" + ma_code.Text + "'", "select");
  199. if (dt.Rows.Count > 0)
  200. {
  201. Color.Text = dt.Rows[0]["ma_color"].ToString();
  202. Type.Text = dt.Rows[0]["pr_detail"].ToString();
  203. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  204. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  205. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  206. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  207. Ram.Text = dt.Rows[0]["ma_ram"].ToString();
  208. customer.Text = dt.Rows[0]["ma_customer"].ToString();
  209. Line.Text = dt.Rows[0]["ma_linecode"].ToString();
  210. }
  211. }
  212. }
  213. }