ExcelHandler.cs 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050
  1. using System.IO;
  2. using System.Data;
  3. using System;
  4. using NPOI.HSSF.UserModel;
  5. using NPOI.SS.UserModel;
  6. using NPOI.HSSF.Util;
  7. using NPOI.SS.Formula.Eval;
  8. using System.Text;
  9. using NPOI.SS.Util;
  10. using System.Drawing;
  11. using System.Collections.Generic;
  12. using Seagull.BarTender.Print;
  13. using DevExpress.XtraPrinting.Native.LayoutAdjustment;
  14. using DevExpress.XtraExport.Implementation;
  15. using NPOI.HSSF.Record.CF;
  16. using UAS_MES_NEW.Entity;
  17. using DevExpress.Schedule;
  18. using System.Runtime.Remoting.Metadata.W3cXsd2001;
  19. namespace UAS_MES_NEW.DataOperate
  20. {
  21. class ExcelHandler
  22. {
  23. DataHelper dh = new DataHelper();
  24. /// <summary>
  25. /// 导出Excel,返回文件在客户端的路径
  26. /// </summary>
  27. public string ExportExcel(DataTable dt, string FolderPath)
  28. {
  29. //创建一个内存流,用来接收转换成Excel的内容
  30. MemoryStream ms;
  31. ms = DataTableToExcel(dt);
  32. //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
  33. string filePath = FolderPath;
  34. FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
  35. byte[] data = ms.ToArray();
  36. fs.Write(data, 0, data.Length);
  37. fs.Flush();
  38. //释放当前Excel文件,否则打开文件的时候会显示文件被占用
  39. ms.Dispose();
  40. fs.Dispose();
  41. return filePath;
  42. }
  43. public string ExportExcel_LIANGAN(DataTable dt, string FolderPath, string custname, string spec, string bomversion, string workdate, string softname, string filecode, string releasedate, string tableab, string ecn, string machinename, string mademan)
  44. {
  45. //创建一个内存流,用来接收转换成Excel的内容
  46. MemoryStream ms;
  47. ms = DataTableToExcel_LIANGAN(dt, FolderPath, custname, spec, bomversion, workdate, softname, filecode, releasedate, tableab, ecn, machinename, mademan);
  48. //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
  49. string filePath = FolderPath;
  50. FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
  51. byte[] data = ms.ToArray();
  52. fs.Write(data, 0, data.Length);
  53. fs.Flush();
  54. //释放当前Excel文件,否则打开文件的时候会显示文件被占用
  55. ms.Dispose();
  56. fs.Dispose();
  57. return filePath;
  58. }
  59. public MemoryStream DataTableToExcel_LIANGAN(DataTable DataTable, string FolderPath, string custname, string spec, string bomversion, string workdate, string softname, string filecode, string releasedate, string tableab, string ecn, string machinename, string mademan)
  60. {
  61. //创建内存流
  62. MemoryStream ms = new MemoryStream();
  63. //创建一个Book,相当于一个Excel文件
  64. HSSFWorkbook book = new HSSFWorkbook();
  65. ICellStyle style = book.CreateCellStyle();
  66. style.BorderTop = BorderStyle.THIN;
  67. style.BorderLeft = BorderStyle.THIN;
  68. style.BorderRight = BorderStyle.THIN;
  69. style.BorderBottom = BorderStyle.THIN;
  70. //Excel中的Sheet
  71. //获取行数量和列数量
  72. int rowNum = DataTable.Rows.Count;
  73. int columnNum = DataTable.Columns.Count;
  74. //设置列的宽度,根据首行的列的内容的长度来设置
  75. string SheetName = "";
  76. //表格数据游标
  77. int DataRowCount = 8;
  78. string sumqty = "";
  79. int endrow = 0;
  80. for (int i = 0; i < 10; i++)
  81. {
  82. if (sumqty == "")
  83. sumqty = DataTable.Rows[i]["sumqty"].ToString();
  84. }
  85. List<int> id=new List<int>();
  86. for (int i = 0; i < DataTable.Rows.Count; i++)
  87. {
  88. if (DataTable.Rows[i]["STF_MACHINE"].ToString() != "" && DataTable.Rows[i]["STF_MACHINE"].ToString() != "***" && i != DataTable.Rows.Count - 1)
  89. {
  90. Console.WriteLine(DataTable.Rows[i]["STF_MACHINE"].ToString());
  91. Console.WriteLine(DataTable.Rows[i + 1]["STF_MACHINE"].ToString());
  92. ISheet sheet1 = book.CreateSheet(DataTable.Rows[i]["STF_MACHINE"].ToString() + "-" + DataTable.Rows[i + 1]["STF_MACHINE"].ToString().Substring(0, 1));
  93. SheetName = DataTable.Rows[i]["STF_MACHINE"].ToString() + "-" + DataTable.Rows[i + 1]["STF_MACHINE"].ToString().Substring(0, 1);
  94. IRow row1 = sheet1.CreateRow(0);
  95. row1.CreateCell(0); row1.CreateCell(1); row1.Cells[0].SetCellValue(" SMT程式料表 ");
  96. row1.Cells[0].CellStyle = style; row1.Cells[1].CellStyle = style;
  97. row1.CreateCell(2); row1.CreateCell(3);
  98. row1.Cells[2].CellStyle = style;
  99. row1.Cells[2].CellStyle = style; row1.Cells[3].CellStyle = style;
  100. row1.CreateCell(4); row1.CreateCell(5); row1.Cells[4].CellStyle = style;
  101. row1.Cells[4].CellStyle = style; row1.Cells[5].CellStyle = style;
  102. row1.CreateCell(6); row1.CreateCell(7); row1.Cells[6].CellStyle = style;
  103. row1.Cells[6].CellStyle = style; row1.Cells[7].CellStyle = style;
  104. row1.Cells[6].SetCellValue("点数:" + sumqty);
  105. //标题
  106. CellRangeAddress cellRangeAddress_first = new CellRangeAddress(0, 0, 0, 5);
  107. sheet1.AddMergedRegion(cellRangeAddress_first);
  108. //点数
  109. CellRangeAddress cellRangeAddress_points = new CellRangeAddress(0, 0, 6, 7);
  110. sheet1.AddMergedRegion(cellRangeAddress_points);
  111. //客户抬头
  112. IRow row2 = sheet1.CreateRow(1);
  113. CellRangeAddress cellRangeAddress = new CellRangeAddress(1, 1, 0, 1);
  114. CellRangeAddress cellRangeAddress1 = new CellRangeAddress(1, 1, 2, 3);
  115. CellRangeAddress cellRangeAddress2 = new CellRangeAddress(1, 1, 4, 5);
  116. CellRangeAddress cellRangeAddress3 = new CellRangeAddress(1, 1, 6, 7);
  117. sheet1.AddMergedRegion(cellRangeAddress);
  118. sheet1.AddMergedRegion(cellRangeAddress1);
  119. sheet1.AddMergedRegion(cellRangeAddress2);
  120. sheet1.AddMergedRegion(cellRangeAddress3);
  121. row2.CreateCell(0); row2.CreateCell(1); row2.Cells[0].SetCellValue("客户名称:");
  122. row2.Cells[0].CellStyle = style; row2.Cells[1].CellStyle = style;
  123. row2.CreateCell(2); row2.CreateCell(3); row2.Cells[2].SetCellValue(custname); row2.Cells[2].CellStyle = style;
  124. row2.Cells[2].CellStyle = style; row2.Cells[3].CellStyle = style;
  125. row2.CreateCell(4); row2.CreateCell(5); row2.Cells[4].SetCellValue("文件编号:"+ filecode); row2.Cells[4].CellStyle = style;
  126. row2.Cells[4].CellStyle = style; row2.Cells[5].CellStyle = style;
  127. row2.CreateCell(6); row2.CreateCell(7); row2.Cells[6].SetCellValue("发行日期:" + releasedate); row2.Cells[6].CellStyle = style;
  128. row2.Cells[6].CellStyle = style; row2.Cells[7].CellStyle = style;
  129. //产品型号
  130. IRow row3 = sheet1.CreateRow(2);
  131. CellRangeAddress cellRangeAddress4 = new CellRangeAddress(2, 2, 0, 1);
  132. CellRangeAddress cellRangeAddress5 = new CellRangeAddress(2, 2, 2, 3);
  133. CellRangeAddress cellRangeAddress6 = new CellRangeAddress(2, 2, 4, 5);
  134. CellRangeAddress cellRangeAddress7 = new CellRangeAddress(2, 2, 6, 7);
  135. sheet1.AddMergedRegion(cellRangeAddress4);
  136. sheet1.AddMergedRegion(cellRangeAddress5);
  137. sheet1.AddMergedRegion(cellRangeAddress6);
  138. sheet1.AddMergedRegion(cellRangeAddress7);
  139. row3.CreateCell(0); row3.CreateCell(1); row3.Cells[0].SetCellValue("产品型号:");
  140. row3.Cells[0].CellStyle = style; row3.Cells[1].CellStyle = style;
  141. row3.CreateCell(2); row3.CreateCell(3); row3.Cells[2].SetCellValue(spec);
  142. row3.Cells[2].CellStyle = style; row3.Cells[3].CellStyle = style;
  143. row3.CreateCell(4); row3.CreateCell(5); row3.Cells[4].SetCellValue("BOM编号:"+bomversion);
  144. row3.Cells[4].CellStyle = style; row3.Cells[5].CellStyle = style;
  145. row3.CreateCell(6); row3.CreateCell(7); row3.Cells[6].SetCellValue("生效日期:" + workdate);
  146. row3.Cells[6].CellStyle = style; row3.Cells[7].CellStyle = style;
  147. //程序名称
  148. IRow row4 = sheet1.CreateRow(3);
  149. CellRangeAddress cellRangeAddress8 = new CellRangeAddress(3, 3, 0, 1);
  150. CellRangeAddress cellRangeAddress9 = new CellRangeAddress(3, 3, 2, 3);
  151. CellRangeAddress cellRangeAddress10 = new CellRangeAddress(3, 3, 4, 5);
  152. sheet1.AddMergedRegion(cellRangeAddress8);
  153. sheet1.AddMergedRegion(cellRangeAddress9);
  154. sheet1.AddMergedRegion(cellRangeAddress10);
  155. row4.CreateCell(0); row4.CreateCell(1); row4.Cells[0].SetCellValue("程序名称");
  156. row4.Cells[0].CellStyle = style; row4.Cells[1].CellStyle = style;
  157. row4.CreateCell(2); row4.CreateCell(3); row4.Cells[2].SetCellValue(DataTable.Rows[i]["STF_CODE"].ToString() + "");
  158. row4.Cells[2].CellStyle = style; row4.Cells[3].CellStyle = style;
  159. row4.CreateCell(4); row4.CreateCell(5); row4.Cells[4].SetCellValue("面别: "+ tableab + "");
  160. row4.Cells[4].CellStyle = style; row4.Cells[5].CellStyle = style;
  161. row4.CreateCell(6); row4.CreateCell(7); row4.Cells[6].SetCellValue("ECN记录:" + ecn);
  162. row4.Cells[6].CellStyle = style; row4.Cells[7].CellStyle = style;
  163. //机器名称
  164. IRow row5 = sheet1.CreateRow(4);
  165. CellRangeAddress cellRangeAddress14 = new CellRangeAddress(4, 4, 0, 1);
  166. CellRangeAddress cellRangeAddress15 = new CellRangeAddress(4, 4, 2, 3);
  167. CellRangeAddress cellRangeAddress16 = new CellRangeAddress(4, 4, 4, 5);
  168. CellRangeAddress cellRangeAddress20 = new CellRangeAddress(4, 5, 6, 7);
  169. sheet1.AddMergedRegion(cellRangeAddress14);
  170. sheet1.AddMergedRegion(cellRangeAddress15);
  171. sheet1.AddMergedRegion(cellRangeAddress16);
  172. sheet1.AddMergedRegion(cellRangeAddress20);
  173. row5.CreateCell(0); row5.CreateCell(1); row5.Cells[0].SetCellValue("机器名称");
  174. row5.Cells[0].CellStyle = style; row5.Cells[1].CellStyle = style;
  175. row5.CreateCell(2); row5.CreateCell(3); row5.Cells[2].SetCellValue(machinename);
  176. row5.Cells[2].CellStyle = style; row5.Cells[3].CellStyle = style;
  177. row5.CreateCell(4); row5.CreateCell(5); row5.Cells[4].SetCellValue("QA确认:");
  178. row5.Cells[4].CellStyle = style; row5.Cells[5].CellStyle = style;
  179. row5.CreateCell(6); row5.CreateCell(7); row5.Cells[6].SetCellValue("文控签章:");
  180. row5.Cells[6].CellStyle = style; row5.Cells[7].CellStyle = style;
  181. //制作
  182. IRow row6 = sheet1.CreateRow(5);
  183. CellRangeAddress cellRangeAddress17 = new CellRangeAddress(5, 5, 0, 1);
  184. CellRangeAddress cellRangeAddress18 = new CellRangeAddress(5, 5, 2, 3);
  185. CellRangeAddress cellRangeAddress19 = new CellRangeAddress(5, 5, 4, 5);
  186. sheet1.AddMergedRegion(cellRangeAddress17);
  187. sheet1.AddMergedRegion(cellRangeAddress18);
  188. sheet1.AddMergedRegion(cellRangeAddress19);
  189. row6.CreateCell(0); row6.CreateCell(1); row6.Cells[0].SetCellValue("制作:"+ mademan);
  190. row6.Cells[0].CellStyle = style; row6.Cells[1].CellStyle = style;
  191. row6.CreateCell(2); row6.CreateCell(3); row6.Cells[2].SetCellValue(User.CurrentStepName);
  192. row6.Cells[2].CellStyle = style; row6.Cells[3].CellStyle = style;
  193. row6.CreateCell(4); row6.CreateCell(5); row6.Cells[4].SetCellValue("QA审核:");
  194. row6.Cells[4].CellStyle = style; row6.Cells[5].CellStyle = style;
  195. //制作
  196. IRow row7 = sheet1.CreateRow(6);
  197. CellRangeAddress cellRangeAddress21 = new CellRangeAddress(6, 6, 0, 7);
  198. sheet1.AddMergedRegion(cellRangeAddress21);
  199. row7.CreateCell(0); row7.CreateCell(1); row7.Cells[0].SetCellValue(DataTable.Rows[i]["STF_MACHINE"].ToString() + "-" + DataTable.Rows[i + 1]["STF_MACHINE"].ToString().Substring(0, 1));
  200. IRow row8 = sheet1.CreateRow(7);
  201. row8.CreateCell(0);
  202. row8.Cells[0].SetCellValue("站位");
  203. row8.Cells[0].CellStyle = style;
  204. row8.CreateCell(1);
  205. row8.Cells[1].SetCellValue("Feeder类型");
  206. row8.Cells[1].CellStyle = style;
  207. row8.CreateCell(2);
  208. row8.Cells[2].SetCellValue("位置");
  209. row8.Cells[2].CellStyle = style;
  210. row8.CreateCell(3);
  211. row8.Cells[3].SetCellValue("物料编码");
  212. row8.Cells[3].CellStyle = style;
  213. row8.CreateCell(4);
  214. row8.Cells[4].SetCellValue("物料描述");
  215. row8.Cells[4].CellStyle = style;
  216. row8.CreateCell(5);
  217. row8.Cells[5].SetCellValue("用量");
  218. row8.Cells[5].CellStyle = style;
  219. row8.CreateCell(6);
  220. row8.Cells[6].SetCellValue("位号");
  221. row8.Cells[6].CellStyle = style;
  222. row8.CreateCell(7);
  223. row8.Cells[7].SetCellValue("备注");
  224. row8.Cells[7].CellStyle = style;
  225. i = i + 1;
  226. DataRowCount = 8;
  227. sheet1.SetColumnWidth(4, sheet1.GetColumnWidth(4) + 3500);
  228. }
  229. else
  230. {
  231. if (SheetName != "")
  232. {
  233. ISheet sheet = book.GetSheet(SheetName);
  234. IRow row = sheet.CreateRow(DataRowCount);
  235. row.CreateCell(0);
  236. row.CreateCell(1);
  237. row.CreateCell(2);
  238. row.CreateCell(3);
  239. row.CreateCell(4);
  240. row.CreateCell(5);
  241. row.CreateCell(6);
  242. row.CreateCell(7);
  243. Console.WriteLine(DataTable.Rows[i]["STF_MODEL"].ToString() + " " + DataTable.Rows[i]["STF_FEEDER"].ToString() + " " + DataTable.Rows[i]["STF_FEEDERNO"].ToString());
  244. for (int k = i+1; k < DataTable.Rows.Count; k++)
  245. {
  246. if (k < DataTable.Rows.Count && DataTable.Rows[k]["STF_MODEL"].ToString() == "" &&
  247. DataTable.Rows[k]["STF_FEEDER"].ToString() == "" &&
  248. DataTable.Rows[k]["STF_FEEDERNO"].ToString() != "" && !id.Contains(k))
  249. {
  250. endrow++;
  251. id.Add(k);
  252. }
  253. else
  254. {
  255. break;
  256. }
  257. }
  258. //位置编号
  259. if (i + endrow < DataTable.Rows.Count && DataTable.Rows[i]["STF_MODEL"].ToString() != "")
  260. {
  261. CellRangeAddress cellRangeAddress = new CellRangeAddress(DataRowCount, DataRowCount + endrow, 0, 0);
  262. sheet.AddMergedRegion(cellRangeAddress);
  263. //飞达规格
  264. CellRangeAddress cellRangeAddress1 = new CellRangeAddress(DataRowCount, DataRowCount + endrow, 1, 1);
  265. sheet.AddMergedRegion(cellRangeAddress1);
  266. endrow = 0;
  267. }
  268. row.Cells[0].SetCellValue(DataTable.Rows[i]["STF_MODEL"].ToString());
  269. row.Cells[0].CellStyle = style;
  270. row.Cells[1].SetCellValue(DataTable.Rows[i]["STF_FEEDER"].ToString());
  271. row.Cells[1].CellStyle = style;
  272. //物料编号
  273. row.Cells[2].SetCellValue(DataTable.Rows[i]["STF_FEEDERNO"].ToString());
  274. row.Cells[2].CellStyle = style;
  275. row.Cells[3].SetCellValue(DataTable.Rows[i]["STF_LOCATION"].ToString());
  276. row.Cells[3].CellStyle = style;
  277. row.Cells[4].SetCellValue(DataTable.Rows[i]["pr_orispeccode"].ToString());
  278. row.Cells[4].CellStyle = style;
  279. row.Cells[4].CellStyle.WrapText = true;
  280. row.Cells[5].SetCellValue(DataTable.Rows[i]["bd_baseqty"].ToString());
  281. row.Cells[5].CellStyle = style;
  282. row.Cells[6].SetCellValue(DataTable.Rows[i]["BD_LOCATION"].ToString());
  283. row.Cells[6].CellStyle = style;
  284. row.Cells[7].SetCellValue("");
  285. row.Cells[7].CellStyle = style;
  286. row.Cells[4].CellStyle.ShrinkToFit = true;
  287. DataRowCount = DataRowCount + 1;
  288. }
  289. }
  290. }
  291. //将book的内容写入内存流中返回
  292. book.Write(ms);
  293. return ms;
  294. }
  295. /// <summary>
  296. /// 导出Excel,返回文件在客户端的路径
  297. /// </summary>
  298. public string ExportExcel_BAIDU(DataTable dt, DateTime begindate, int DateNum, string FolderPath)
  299. {
  300. //创建一个内存流,用来接收转换成Excel的内容
  301. MemoryStream ms;
  302. ms = DataTableToExcel_BAIDU(dt, begindate, DateNum);
  303. //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
  304. string filePath = @FolderPath + "\\" + DateTime.Now.ToString("yyyyMMddHHmmss") + "各工序直通率.xls";
  305. FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
  306. byte[] data = ms.ToArray();
  307. fs.Write(data, 0, data.Length);
  308. fs.Flush();
  309. //释放当前Excel文件,否则打开文件的时候会显示文件被占用
  310. ms.Dispose();
  311. fs.Dispose();
  312. return filePath;
  313. }
  314. /// <summary>
  315. /// 导入Excel
  316. /// </summary>
  317. public DataTable ImportExcel(string FolderPath, string TableName)
  318. {
  319. DataTable dt = new DataTable();
  320. dt.TableName = TableName;
  321. if (FolderPath.Contains(".xls") || FolderPath.Contains(".xlsx"))
  322. {
  323. using (FileStream file = new FileStream(FolderPath, FileMode.Open, FileAccess.Read))
  324. {
  325. //获取文件流
  326. HSSFWorkbook workbook = new HSSFWorkbook(file);
  327. ISheet sheet = workbook.GetSheetAt(0);
  328. //获取所有的列名
  329. foreach (ICell item in sheet.GetRow(sheet.FirstRowNum).Cells)
  330. {
  331. dt.Columns.Add(item.ToString(), typeof(string));
  332. }
  333. System.Collections.IEnumerator rows = sheet.GetRowEnumerator();
  334. while (rows.MoveNext())
  335. {
  336. IRow row = (HSSFRow)rows.Current;
  337. if (row.RowNum == sheet.FirstRowNum)
  338. {
  339. continue;
  340. }
  341. DataRow dr = dt.NewRow();
  342. foreach (ICell item in row.Cells)
  343. {
  344. switch (item.CellType)
  345. {
  346. case CellType.BOOLEAN:
  347. dr[item.ColumnIndex] = item.BooleanCellValue;
  348. break;
  349. case CellType.ERROR:
  350. dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);
  351. break;
  352. case CellType.FORMULA:
  353. switch (item.CachedFormulaResultType)
  354. {
  355. case CellType.BOOLEAN:
  356. dr[item.ColumnIndex] = item.BooleanCellValue;
  357. break;
  358. case CellType.ERROR:
  359. dr[item.ColumnIndex] = ErrorEval.GetText(item.ErrorCellValue);
  360. break;
  361. case CellType.NUMERIC:
  362. if (DateUtil.IsCellDateFormatted(item))
  363. {
  364. dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");
  365. }
  366. else
  367. {
  368. dr[item.ColumnIndex] = item.NumericCellValue;
  369. }
  370. break;
  371. case CellType.STRING:
  372. string str = item.StringCellValue;
  373. if (!string.IsNullOrEmpty(str))
  374. {
  375. dr[item.ColumnIndex] = str.ToString();
  376. }
  377. else
  378. {
  379. dr[item.ColumnIndex] = null;
  380. }
  381. break;
  382. case CellType.Unknown:
  383. case CellType.BLANK:
  384. default:
  385. dr[item.ColumnIndex] = string.Empty;
  386. break;
  387. }
  388. break;
  389. case CellType.NUMERIC:
  390. if (DateUtil.IsCellDateFormatted(item))
  391. {
  392. dr[item.ColumnIndex] = item.DateCellValue.ToString("yyyy-MM-dd hh:MM:ss");
  393. }
  394. else
  395. {
  396. dr[item.ColumnIndex] = item.NumericCellValue;
  397. }
  398. break;
  399. case CellType.STRING:
  400. string strValue = item.StringCellValue;
  401. if (string.IsNullOrEmpty(strValue))
  402. {
  403. dr[item.ColumnIndex] = strValue.ToString();
  404. }
  405. else
  406. {
  407. dr[item.ColumnIndex] = null;
  408. }
  409. break;
  410. case CellType.Unknown:
  411. case CellType.BLANK:
  412. default:
  413. dr[item.ColumnIndex] = string.Empty;
  414. break;
  415. }
  416. }
  417. dt.Rows.Add(dr);
  418. }
  419. }
  420. }
  421. return dt;
  422. }
  423. public void WriteTxt(DataTable dt, string FolderPath, string FileName)
  424. {
  425. StreamWriter sr;
  426. string filePath = @FolderPath;
  427. if (File.Exists(filePath + "\\" + FileName)) //如果文件存在,则创建File.AppendText对象
  428. {
  429. File.Delete(filePath + "\\" + FileName);
  430. }
  431. sr = File.CreateText(filePath + "\\" + FileName);
  432. StringBuilder sb = new StringBuilder();
  433. string Title = "";
  434. foreach (DataColumn dc in dt.Columns)
  435. {
  436. Title += string.Format("{0,10}", dc.ColumnName.ToString());
  437. }
  438. sr.WriteLine(Title + "\r");
  439. foreach (DataRow dr in dt.Rows)
  440. {
  441. string text = "";
  442. for (int i = 0; i < dt.Columns.Count; i++)
  443. {
  444. text += String.Format("{0,10}", dr[i].ToString());
  445. }
  446. sr.WriteLine(text + "\r");
  447. }
  448. sr.Close();
  449. }
  450. /// <summary>
  451. /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
  452. /// </summary>
  453. /// <param name="DataTable"></param>
  454. /// <returns></returns>
  455. public MemoryStream DataTableToExcel(DataTable DataTable)
  456. {
  457. //创建内存流
  458. MemoryStream ms = new MemoryStream();
  459. //创建一个Book,相当于一个Excel文件
  460. HSSFWorkbook book = new HSSFWorkbook();
  461. //Excel中的Sheet
  462. ISheet sheet = book.CreateSheet("sheet1");
  463. //获取行数量和列数量
  464. int rowNum = DataTable.Rows.Count;
  465. int columnNum = DataTable.Columns.Count;
  466. //设置列的宽度,根据首行的列的内容的长度来设置
  467. for (int i = 0; i < columnNum; i++)
  468. {
  469. int dataLength = DataTable.Columns[i].ColumnName.Length;
  470. sheet.SetColumnWidth(i, dataLength * 700);
  471. }
  472. //首先画好第一行带颜色的,单独写出来,避免写在循环里面
  473. IRow row = sheet.CreateRow(0);
  474. //冻结第一行
  475. sheet.CreateFreezePane(0, 1, 0, 1);
  476. ICellStyle style = book.CreateCellStyle();
  477. style.FillForegroundColor = HSSFColor.PALE_BLUE.index;
  478. style.FillPattern = FillPatternType.BIG_SPOTS;
  479. style.FillBackgroundColor = HSSFColor.LIGHT_GREEN.index;
  480. //设置边框
  481. style.BorderBottom = BorderStyle.THICK;
  482. style.BorderLeft = BorderStyle.THICK;
  483. style.BorderRight = BorderStyle.THICK;
  484. style.BorderTop = BorderStyle.THICK;
  485. row.HeightInPoints = 20;
  486. //固定第一行
  487. //row.RowStyle.IsLocked=true;
  488. //给第一行的标签赋值样式和值
  489. for (int j = 0; j < columnNum; j++)
  490. {
  491. row.CreateCell(j);
  492. row.Cells[j].CellStyle = style;
  493. row.Cells[j].CellStyle.VerticalAlignment = VerticalAlignment.CENTER;
  494. row.Cells[j].CellStyle.Alignment = HorizontalAlignment.CENTER;
  495. row.Cells[j].SetCellValue(DataTable.Columns[j].ColumnName);
  496. }
  497. //将DataTable的值循环赋值给book,Aligment设置居中
  498. //之前已经画了带颜色的第一行,所以从i=1开始画
  499. for (int i = 0; i < rowNum; i++)
  500. {
  501. IRow row1 = sheet.CreateRow(i + 1);
  502. row1.HeightInPoints = 20;
  503. for (int j = 0; j < columnNum; j++)
  504. {
  505. row1.CreateCell(j);
  506. row1.Cells[j].SetCellValue(DataTable.Rows[i][j].ToString());
  507. row1.GetCell(j).CellStyle.VerticalAlignment = VerticalAlignment.CENTER;
  508. }
  509. }
  510. //将book的内容写入内存流中返回
  511. book.Write(ms);
  512. return ms;
  513. }
  514. /// <summary>
  515. /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
  516. /// </summary>
  517. /// <param name="DataTable"></param>
  518. /// <returns></returns>
  519. public MemoryStream DataTableToExcel_BAIDU(DataTable DataTable, DateTime begindate, int DateNum)
  520. {
  521. string[] Step = new[] { "1-MT1", "2-MT2", "3-MMI", "4-RSA(耦合)", "5-AUD(曲线)", "6-SCW(写号)", "7-SCK(验号)" };
  522. string[] StepCode = new[] { "B_MT1", "B_MT2", "B_MMI", "B_RSA", "B_AUD", "B_WRITE", "B_SN", "B_OUTLOOK" };
  523. string[] Kind = new[] { "测试数", "通过数", "不良数", "误测通过数", "误测数", "FPY", "RPY" };
  524. string[] TotalKind = new[] { "总投入数", "总不良数", "FPY", "RPY" };
  525. string[] OutLook = new[] { "测试数", "不良数", "FPY" };
  526. //每行的内容
  527. int ContentRow = 7;
  528. //外观的展示的行
  529. int OutLookRow = 55;
  530. MemoryStream ms = new MemoryStream();
  531. //创建一个Book,相当于一个Excel文件
  532. HSSFWorkbook book = new HSSFWorkbook();
  533. ICellStyle NONE = book.CreateCellStyle();
  534. NONE.VerticalAlignment = VerticalAlignment.CENTER;
  535. NONE.Alignment = HorizontalAlignment.CENTER;
  536. NONE.BorderBottom = BorderStyle.THIN;
  537. NONE.BorderLeft = BorderStyle.THIN;
  538. NONE.BorderRight = BorderStyle.THIN;
  539. NONE.BorderTop = BorderStyle.THIN;
  540. ICellStyle TAN = book.CreateCellStyle();
  541. TAN.VerticalAlignment = VerticalAlignment.CENTER;
  542. TAN.Alignment = HorizontalAlignment.CENTER;
  543. TAN.FillForegroundColor = HSSFColor.TAN.index;
  544. TAN.FillPattern = FillPatternType.SOLID_FOREGROUND;
  545. TAN.BorderBottom = BorderStyle.THIN;
  546. TAN.BorderLeft = BorderStyle.THIN;
  547. TAN.BorderRight = BorderStyle.THIN;
  548. TAN.BorderTop = BorderStyle.THIN;
  549. ICellStyle PALE_BLUE = book.CreateCellStyle();
  550. PALE_BLUE.VerticalAlignment = VerticalAlignment.CENTER;
  551. PALE_BLUE.Alignment = HorizontalAlignment.CENTER;
  552. PALE_BLUE.FillForegroundColor = HSSFColor.PALE_BLUE.index;
  553. PALE_BLUE.FillPattern = FillPatternType.SOLID_FOREGROUND;
  554. PALE_BLUE.BorderBottom = BorderStyle.THIN;
  555. PALE_BLUE.BorderLeft = BorderStyle.THIN;
  556. PALE_BLUE.BorderRight = BorderStyle.THIN;
  557. PALE_BLUE.BorderTop = BorderStyle.THIN;
  558. ICellStyle LIME = book.CreateCellStyle();
  559. LIME.VerticalAlignment = VerticalAlignment.CENTER;
  560. LIME.Alignment = HorizontalAlignment.CENTER;
  561. LIME.FillForegroundColor = HSSFColor.LIME.index;
  562. LIME.FillPattern = FillPatternType.SOLID_FOREGROUND;
  563. LIME.BorderBottom = BorderStyle.THIN;
  564. LIME.BorderLeft = BorderStyle.THIN;
  565. LIME.BorderRight = BorderStyle.THIN;
  566. LIME.BorderTop = BorderStyle.THIN;
  567. ICellStyle LEMON_CHIFFON = book.CreateCellStyle();
  568. LEMON_CHIFFON.VerticalAlignment = VerticalAlignment.CENTER;
  569. LEMON_CHIFFON.Alignment = HorizontalAlignment.CENTER;
  570. LEMON_CHIFFON.FillForegroundColor = HSSFColor.LEMON_CHIFFON.index;
  571. LEMON_CHIFFON.FillPattern = FillPatternType.SOLID_FOREGROUND;
  572. LEMON_CHIFFON.BorderBottom = BorderStyle.THIN;
  573. LEMON_CHIFFON.BorderLeft = BorderStyle.THIN;
  574. LEMON_CHIFFON.BorderRight = BorderStyle.THIN;
  575. LEMON_CHIFFON.BorderTop = BorderStyle.THIN;
  576. LEMON_CHIFFON.DataFormat = HSSFDataFormat.GetBuiltinFormat("0.00%");
  577. ICellStyle GOLD = book.CreateCellStyle();
  578. GOLD.VerticalAlignment = VerticalAlignment.CENTER;
  579. GOLD.Alignment = HorizontalAlignment.CENTER;
  580. GOLD.FillForegroundColor = HSSFColor.GOLD.index;
  581. GOLD.FillPattern = FillPatternType.SOLID_FOREGROUND;
  582. GOLD.BorderBottom = BorderStyle.THIN;
  583. GOLD.BorderLeft = BorderStyle.THIN;
  584. GOLD.BorderRight = BorderStyle.THIN;
  585. GOLD.BorderTop = BorderStyle.THIN;
  586. ICellStyle LIGHT_GREEN = book.CreateCellStyle();
  587. LIGHT_GREEN.VerticalAlignment = VerticalAlignment.CENTER;
  588. LIGHT_GREEN.Alignment = HorizontalAlignment.CENTER;
  589. LIGHT_GREEN.FillForegroundColor = HSSFColor.LIGHT_GREEN.index;
  590. LIGHT_GREEN.FillPattern = FillPatternType.SOLID_FOREGROUND;
  591. LIGHT_GREEN.BorderBottom = BorderStyle.THIN;
  592. LIGHT_GREEN.BorderLeft = BorderStyle.THIN;
  593. LIGHT_GREEN.BorderRight = BorderStyle.THIN;
  594. LIGHT_GREEN.BorderTop = BorderStyle.THIN;
  595. //LIGHT_GREEN.DataFormat = HSSFDataFormat.GetBuiltinFormat("0.00%");
  596. ICellStyle DARK_BLUE = book.CreateCellStyle();
  597. DARK_BLUE.VerticalAlignment = VerticalAlignment.CENTER;
  598. DARK_BLUE.Alignment = HorizontalAlignment.CENTER;
  599. DARK_BLUE.FillForegroundColor = HSSFColor.LIGHT_BLUE.index;
  600. DARK_BLUE.FillPattern = FillPatternType.SOLID_FOREGROUND;
  601. DARK_BLUE.BorderBottom = BorderStyle.THIN;
  602. DARK_BLUE.BorderLeft = BorderStyle.THIN;
  603. DARK_BLUE.BorderRight = BorderStyle.THIN;
  604. DARK_BLUE.BorderTop = BorderStyle.THIN;
  605. DARK_BLUE.DataFormat = HSSFDataFormat.GetBuiltinFormat("0.00%");
  606. ICellStyle LIGHT_CORNFLOWER_BLUE = book.CreateCellStyle();
  607. LIGHT_CORNFLOWER_BLUE.VerticalAlignment = VerticalAlignment.CENTER;
  608. LIGHT_CORNFLOWER_BLUE.Alignment = HorizontalAlignment.CENTER;
  609. LIGHT_CORNFLOWER_BLUE.FillForegroundColor = HSSFColor.LIGHT_CORNFLOWER_BLUE.index;
  610. LIGHT_CORNFLOWER_BLUE.FillPattern = FillPatternType.SOLID_FOREGROUND;
  611. LIGHT_CORNFLOWER_BLUE.BorderBottom = BorderStyle.THIN;
  612. LIGHT_CORNFLOWER_BLUE.BorderLeft = BorderStyle.THIN;
  613. LIGHT_CORNFLOWER_BLUE.BorderRight = BorderStyle.THIN;
  614. LIGHT_CORNFLOWER_BLUE.BorderTop = BorderStyle.THIN;
  615. LIGHT_CORNFLOWER_BLUE.DataFormat = HSSFDataFormat.GetBuiltinFormat("0.00%");
  616. ICellStyle GREY_25_PERCENT = book.CreateCellStyle();
  617. GREY_25_PERCENT.VerticalAlignment = VerticalAlignment.CENTER;
  618. GREY_25_PERCENT.Alignment = HorizontalAlignment.CENTER;
  619. GREY_25_PERCENT.FillForegroundColor = HSSFColor.GREY_25_PERCENT.index;
  620. GREY_25_PERCENT.FillPattern = FillPatternType.SOLID_FOREGROUND;
  621. GREY_25_PERCENT.BorderBottom = BorderStyle.THIN;
  622. GREY_25_PERCENT.BorderLeft = BorderStyle.THIN;
  623. GREY_25_PERCENT.BorderRight = BorderStyle.THIN;
  624. GREY_25_PERCENT.BorderTop = BorderStyle.THIN;
  625. ICellStyle PINK = book.CreateCellStyle();
  626. PINK.VerticalAlignment = VerticalAlignment.CENTER;
  627. PINK.Alignment = HorizontalAlignment.CENTER;
  628. PINK.FillForegroundColor = HSSFColor.LIGHT_ORANGE.index;
  629. PINK.FillPattern = FillPatternType.SOLID_FOREGROUND;
  630. PINK.BorderBottom = BorderStyle.THIN;
  631. PINK.BorderLeft = BorderStyle.THIN;
  632. PINK.BorderRight = BorderStyle.THIN;
  633. PINK.BorderTop = BorderStyle.THIN;
  634. //Excel中的Sheet
  635. ISheet sheet = book.CreateSheet("sheet1");
  636. IRow row = sheet.CreateRow(0);
  637. ICell cell = row.CreateCell(0);
  638. //画第一行的抬头
  639. cell.SetCellValue("组装制程品质数据");
  640. cell.CellStyle = NONE;
  641. CellRangeAddress region = new CellRangeAddress(0, 0, 0, DateNum + 1);
  642. sheet.AddMergedRegion(region);
  643. //第一行的日期标题
  644. row = sheet.CreateRow(1);
  645. cell = row.CreateCell(0);
  646. cell.CellStyle = NONE;
  647. cell.SetCellValue("站点");
  648. cell = row.CreateCell(1);
  649. cell.SetCellValue("类别");
  650. cell.CellStyle = NONE;
  651. for (int i = 0; i < DateNum; i++)
  652. {
  653. cell = row.CreateCell(i + 2);
  654. cell.SetCellValue(begindate.AddDays(i).ToString("MM/dd"));
  655. cell.CellStyle = NONE;
  656. }
  657. //画第一列的工序名称和第二列的类别
  658. //总良率数据
  659. row = sheet.CreateRow(2);
  660. cell = row.CreateCell(0);
  661. cell.SetCellValue("总良率");
  662. cell.CellStyle = LEMON_CHIFFON;
  663. region = new CellRangeAddress(2, 5, 0, 0);
  664. sheet.AddMergedRegion(region);
  665. //总良率的统计数据
  666. for (int i = 0; i < TotalKind.Length; i++)
  667. {
  668. row = sheet.GetRow(i + 2);
  669. if (row == null)
  670. {
  671. row = sheet.CreateRow(i + 2);
  672. }
  673. cell = row.CreateCell(1);
  674. cell.SetCellValue(TotalKind[i]);
  675. cell.CellStyle = LEMON_CHIFFON;
  676. switch (i)
  677. {
  678. case 0:
  679. cell.CellStyle = LIME;
  680. break;
  681. case 1:
  682. cell.CellStyle = TAN;
  683. break;
  684. case 2:
  685. cell.CellStyle = DARK_BLUE;
  686. break;
  687. case 3:
  688. cell.CellStyle = LIGHT_CORNFLOWER_BLUE;
  689. break;
  690. default:
  691. break;
  692. }
  693. }
  694. //中间的设备测试工序
  695. for (int i = 0; i < Step.Length; i++)
  696. {
  697. //除去前面6行
  698. int rowindex = 6 + i * ContentRow;
  699. row = sheet.CreateRow(rowindex);
  700. cell = row.CreateCell(0);
  701. cell.SetCellValue(Step[i]);
  702. cell.CellStyle = PALE_BLUE;
  703. region = new CellRangeAddress(rowindex, rowindex + ContentRow - 1, 0, 0);
  704. sheet.AddMergedRegion(region);
  705. for (int j = rowindex; j < rowindex + ContentRow; j++)
  706. {
  707. row = sheet.GetRow(j);
  708. if (row == null)
  709. {
  710. row = sheet.CreateRow(j);
  711. }
  712. cell = row.CreateCell(1);
  713. cell.SetCellValue(Kind[j - rowindex]);
  714. switch (j - rowindex)
  715. {
  716. case 0:
  717. cell.CellStyle = GREY_25_PERCENT;
  718. break;
  719. case 1:
  720. cell.CellStyle = PINK;
  721. break;
  722. case 2:
  723. cell.CellStyle = TAN;
  724. break;
  725. case 3:
  726. cell.CellStyle = GOLD;
  727. break;
  728. case 4:
  729. cell.CellStyle = LIGHT_GREEN;
  730. break;
  731. case 5:
  732. cell.CellStyle = LIGHT_CORNFLOWER_BLUE;
  733. break;
  734. case 6:
  735. cell.CellStyle = LEMON_CHIFFON;
  736. break;
  737. default:
  738. break;
  739. }
  740. }
  741. }
  742. //最后一行外观数据
  743. row = sheet.CreateRow(OutLookRow);
  744. cell = row.CreateCell(0);
  745. cell.SetCellValue("8-外观");
  746. cell.CellStyle = PALE_BLUE;
  747. region = new CellRangeAddress(OutLookRow, OutLookRow + 2, 0, 0);
  748. sheet.AddMergedRegion(region);
  749. //外观的统计数据
  750. for (int i = 0; i < OutLook.Length; i++)
  751. {
  752. row = sheet.GetRow(OutLookRow + i);
  753. if (row == null)
  754. {
  755. row = sheet.CreateRow(OutLookRow + i);
  756. }
  757. cell = row.CreateCell(1);
  758. cell.SetCellValue(OutLook[i]);
  759. cell.CellStyle = PALE_BLUE;
  760. switch (i)
  761. {
  762. case 0:
  763. cell.CellStyle = GREY_25_PERCENT;
  764. break;
  765. case 1:
  766. cell.CellStyle = TAN;
  767. break;
  768. case 2:
  769. cell.CellStyle = LIGHT_GREEN;
  770. break;
  771. default:
  772. break;
  773. }
  774. }
  775. sheet.SetColumnWidth(0, 3700);
  776. for (int i = 0; i < DateNum; i++)
  777. {
  778. double TotalFPY = -1;
  779. double TotalRPY = -1;
  780. double TotalNG = 0;
  781. double TotalIN = 0;
  782. for (int j = 0; j < StepCode.Length; j++)
  783. {
  784. int rowindex = 6 + j * ContentRow;
  785. DataTable dt = PublicMethod.BaseUtil.filterDataTable(DataTable, "sp_date='" + begindate.AddDays(i).ToString("yyyy-MM-dd") + "' and 工序编号='" + StepCode[j] + "'");
  786. if (StepCode[j] != "B_OUTLOOK")
  787. {
  788. for (int k = rowindex; k < rowindex + ContentRow; k++)
  789. {
  790. row = sheet.GetRow(k);
  791. if (row == null)
  792. {
  793. row = sheet.CreateRow(k);
  794. }
  795. cell = row.CreateCell(i + 2);
  796. switch (k - rowindex)
  797. {
  798. case 0:
  799. double 测试数;
  800. if (dt.Rows.Count > 0)
  801. {
  802. if (double.TryParse(dt.Rows[0]["测试数"].ToString(), out 测试数))
  803. {
  804. cell.SetCellValue(测试数);
  805. }
  806. }
  807. cell.CellStyle = GREY_25_PERCENT;
  808. break;
  809. case 1:
  810. double 通过数;
  811. if (dt.Rows.Count > 0)
  812. {
  813. if (double.TryParse(dt.Rows[0]["通过总数"].ToString(), out 通过数))
  814. {
  815. cell.SetCellValue(通过数);
  816. }
  817. }
  818. cell.CellStyle = PINK;
  819. break;
  820. case 2:
  821. double 不良数;
  822. if (dt.Rows.Count > 0)
  823. {
  824. if (double.TryParse(dt.Rows[0]["不良数"].ToString(), out 不良数))
  825. {
  826. cell.SetCellValue(不良数);
  827. TotalNG = TotalNG + 不良数;
  828. }
  829. }
  830. cell.CellStyle = TAN;
  831. break;
  832. case 3:
  833. double 误测通过数;
  834. if (dt.Rows.Count > 0)
  835. {
  836. if (double.TryParse(dt.Rows[0]["误测通过数"].ToString(), out 误测通过数))
  837. {
  838. cell.SetCellValue(误测通过数);
  839. }
  840. }
  841. cell.CellStyle = GOLD;
  842. break;
  843. case 4:
  844. double 误测数;
  845. if (dt.Rows.Count > 0)
  846. {
  847. if (double.TryParse(dt.Rows[0]["误测数"].ToString(), out 误测数))
  848. {
  849. cell.SetCellValue(误测数);
  850. }
  851. }
  852. cell.CellStyle = LIGHT_GREEN;
  853. break;
  854. case 5:
  855. double FPY;
  856. if (dt.Rows.Count > 0)
  857. {
  858. if (double.TryParse(dt.Rows[0]["FPY"].ToString(), out FPY))
  859. {
  860. cell.SetCellValue(FPY);
  861. //累计所有FPY
  862. if (TotalFPY == -1)
  863. {
  864. TotalFPY = FPY;
  865. }
  866. else
  867. {
  868. TotalFPY = TotalFPY * FPY;
  869. }
  870. }
  871. }
  872. cell.CellStyle = LIGHT_CORNFLOWER_BLUE;
  873. break;
  874. case 6:
  875. double RPY;
  876. if (dt.Rows.Count > 0)
  877. {
  878. if (double.TryParse(dt.Rows[0]["RPY"].ToString(), out RPY))
  879. {
  880. cell.SetCellValue(RPY);
  881. //累计所有RPY
  882. if (TotalRPY == -1)
  883. {
  884. TotalRPY = RPY;
  885. }
  886. else
  887. {
  888. TotalRPY = TotalRPY * RPY;
  889. }
  890. }
  891. }
  892. cell.CellStyle = LEMON_CHIFFON;
  893. break;
  894. default:
  895. break;
  896. }
  897. }
  898. }
  899. else
  900. {
  901. for (int k = rowindex; k < rowindex + 3; k++)
  902. {
  903. row = sheet.GetRow(k);
  904. if (row == null)
  905. {
  906. row = sheet.CreateRow(k);
  907. }
  908. cell = row.CreateCell(i + 2);
  909. switch (k - rowindex)
  910. {
  911. case 0:
  912. double 测试数;
  913. if (dt.Rows.Count > 0)
  914. {
  915. if (double.TryParse(dt.Rows[0]["测试数"].ToString(), out 测试数))
  916. {
  917. cell.SetCellValue(测试数);
  918. }
  919. }
  920. cell.CellStyle = GREY_25_PERCENT;
  921. break;
  922. case 1:
  923. double 不良数;
  924. if (dt.Rows.Count > 0)
  925. {
  926. if (double.TryParse(dt.Rows[0]["不良数"].ToString(), out 不良数))
  927. {
  928. cell.SetCellValue(不良数);
  929. TotalNG = TotalNG + 不良数;
  930. }
  931. }
  932. cell.CellStyle = TAN;
  933. break;
  934. case 2:
  935. double FPY;
  936. if (dt.Rows.Count > 0)
  937. {
  938. if (double.TryParse(dt.Rows[0]["FPY"].ToString(), out FPY))
  939. {
  940. cell.SetCellValue(FPY);
  941. //累计所有FPY
  942. if (TotalFPY == -1)
  943. {
  944. TotalFPY = FPY;
  945. }
  946. else
  947. {
  948. TotalFPY = TotalFPY * FPY;
  949. }
  950. }
  951. }
  952. cell.CellStyle = LIGHT_GREEN;
  953. break;
  954. default:
  955. break;
  956. }
  957. }
  958. }
  959. }
  960. DataTable dt1 = PublicMethod.BaseUtil.filterDataTable(DataTable, "sp_date='" + begindate.AddDays(i).ToString("yyyy-MM-dd") + "' and 工序编号='B_LCDBA1'");
  961. double 投入数;
  962. if (dt1.Rows.Count > 0)
  963. {
  964. if (double.TryParse(dt1.Rows[0]["测试数"].ToString(), out 投入数))
  965. {
  966. TotalIN = 投入数;
  967. }
  968. }
  969. //设置最上方的总计数量
  970. row = sheet.GetRow(2);
  971. cell = row.CreateCell(i + 2);
  972. cell.CellStyle = LIME;
  973. cell.SetCellValue(TotalIN);
  974. row = sheet.GetRow(3);
  975. cell = row.CreateCell(i + 2);
  976. cell.CellStyle = TAN;
  977. cell.SetCellValue(TotalNG);
  978. row = sheet.GetRow(4);
  979. cell = row.CreateCell(i + 2);
  980. cell.CellStyle = DARK_BLUE;
  981. cell.SetCellValue(TotalFPY == -1 ? 0 : TotalFPY);
  982. row = sheet.GetRow(5);
  983. cell = row.CreateCell(i + 2);
  984. cell.CellStyle = LIGHT_CORNFLOWER_BLUE;
  985. cell.SetCellValue(TotalRPY == -1 ? 0 : TotalRPY);
  986. }
  987. for (int i = 0; i < sheet.PhysicalNumberOfRows; i++)
  988. {
  989. sheet.GetRow(i).Height = 300;
  990. }
  991. //将book的内容写入内存流中返回
  992. book.Write(ms);
  993. return ms;
  994. }
  995. }
  996. }