SystemSetting_PrinterTest.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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. 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 + Date.Value.ToString("yyMMdd") + 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. default:
  83. break;
  84. }
  85. }
  86. format.PrintSetup.PrinterName = PrinterList.Text;
  87. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  88. format.Print();
  89. 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");
  90. if (dt.Rows.Count > 0)
  91. {
  92. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  93. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  94. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  95. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  96. }
  97. }
  98. }
  99. if (TwoColumn.Checked)
  100. {
  101. format = engine.Documents.Open(Application.StartupPath + "/双排.btw");
  102. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 2)
  103. {
  104. int temp = i;
  105. for (int j = 0; j < format.SubStrings.Count; j++)
  106. {
  107. switch (format.SubStrings[j].Name)
  108. {
  109. case "SN":
  110. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  111. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  112. 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");
  113. break;
  114. case "SN2":
  115. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 1).ToString()));
  116. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  117. 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");
  118. break;
  119. default:
  120. break;
  121. }
  122. }
  123. format.PrintSetup.PrinterName = PrinterList.Text;
  124. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  125. format.Print();
  126. 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");
  127. if (dt.Rows.Count > 0)
  128. {
  129. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  130. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  131. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  132. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  133. }
  134. }
  135. }
  136. if (ThreeColumn.Checked)
  137. {
  138. format = engine.Documents.Open(Application.StartupPath + "/Label.btw");
  139. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 3)
  140. {
  141. int temp = i;
  142. for (int j = 0; j < format.SubStrings.Count; j++)
  143. {
  144. switch (format.SubStrings[j].Name)
  145. {
  146. case "SN":
  147. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  148. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  149. 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");
  150. break;
  151. case "SN2":
  152. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 1).ToString()));
  153. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  154. 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");
  155. break;
  156. case "SN3":
  157. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 2).ToString()));
  158. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  159. 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");
  160. break;
  161. default:
  162. break;
  163. }
  164. }
  165. format.PrintSetup.PrinterName = PrinterList.Text;
  166. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  167. format.Print();
  168. 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");
  169. if (dt.Rows.Count > 0)
  170. {
  171. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  172. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  173. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  174. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  175. }
  176. }
  177. }
  178. if (FourColumn.Checked)
  179. {
  180. format = engine.Documents.Open(Application.StartupPath + "/四排.btw");
  181. for (int i = int.Parse(Rn.Text); i < (int.Parse(Num.Text) + int.Parse(Rn.Text)); i = i + 4)
  182. {
  183. int temp = i;
  184. for (int j = 0; j < format.SubStrings.Count; j++)
  185. {
  186. switch (format.SubStrings[j].Name)
  187. {
  188. case "SN":
  189. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp).ToString()));
  190. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  191. 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");
  192. break;
  193. case "SN2":
  194. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 1).ToString()));
  195. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  196. 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");
  197. break;
  198. case "SN3":
  199. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 2).ToString()));
  200. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  201. 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");
  202. break;
  203. case "SN4":
  204. format.SubStrings[j].Value = (ma_code.Text + Date.Value.ToString("yyMMdd") + lpad(int.Parse(numericUpDown1.Value.ToString()), (temp + 3).ToString()));
  205. if (!dh.CheckExist("makesnlist", "msl_sncode='" + format.SubStrings[j].Value + "' and msl_makecode='" + ma_code.Text + "'"))
  206. 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");
  207. break;
  208. default:
  209. break;
  210. }
  211. }
  212. format.PrintSetup.PrinterName = PrinterList.Text;
  213. format.PrintSetup.IdenticalCopiesOfLabel = 1;
  214. format.Print();
  215. 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");
  216. if (dt.Rows.Count > 0)
  217. {
  218. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  219. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  220. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  221. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  222. }
  223. }
  224. }
  225. }
  226. private static string lpad(int length, string number)
  227. {
  228. while (number.Length < length)
  229. {
  230. number = "0" + number;
  231. }
  232. number = number.Substring(number.Length - length, length);
  233. return number;
  234. }
  235. private void SystemSetting_PrinterTest_Load(object sender, EventArgs e)
  236. {
  237. engine.Start();
  238. ma_code.TableName = " make left join product on ma_prodcode=pr_code";
  239. ma_code.SelectField = "ma_code # 工单编号,pr_code # 产品编号,pr_spec # 型号";
  240. ma_code.FormName = Name;
  241. ma_code.SetValueField = new string[] { "ma_code" };
  242. ma_code.Condition = "ma_statuscode='STARTED'";
  243. ma_code.DbChange += pr_code_DbChange;
  244. }
  245. private void pr_code_DbChange(object sender, EventArgs e)
  246. {
  247. Dbfind = ma_code.ReturnData;
  248. BaseUtil.SetFormValue(this.Controls, Dbfind);
  249. 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");
  250. if (dt.Rows.Count > 0)
  251. {
  252. pr_code.Text = dt.Rows[0]["ma_prodcode"].ToString();
  253. ma_qty.Text = dt.Rows[0]["ma_qty"].ToString();
  254. ma_printcount.Text = dt.Rows[0]["ma_printnum"].ToString();
  255. pr_detail.Text = dt.Rows[0]["pr_detail"].ToString();
  256. }
  257. }
  258. }
  259. }