|
@@ -40,11 +40,11 @@ namespace UAS_LabelMachine
|
|
|
|
|
|
|
|
|
|
|
|
- public string ExportExcel_Special(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ public string ExportExcel_Normal(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
|
|
|
{
|
|
|
|
|
|
MemoryStream ms;
|
|
|
- ms = DataTableToExcel2(firstsdt, dt, Type, FileName, PageSize, conditionbox);
|
|
|
+ ms = DataTableToExcel_Normal(firstsdt, dt, Type, FileName, PageSize, conditionbox);
|
|
|
|
|
|
string filePath = @FolderPath + "\\" + FileName + ".xls";
|
|
|
int counter = 1;
|
|
@@ -66,13 +66,41 @@ namespace UAS_LabelMachine
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+ public string JINYUAN(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ {
|
|
|
+
|
|
|
+ MemoryStream ms;
|
|
|
+ ms = DataTableToExcel_JINYUAN(firstsdt, dt, Type, FileName, PageSize, conditionbox);
|
|
|
+
|
|
|
+ string filePath = @FolderPath + "\\" + FileName + ".xls";
|
|
|
+ int counter = 1;
|
|
|
+ string filename = FileName + ".xls";
|
|
|
+ while (File.Exists(filePath))
|
|
|
+ {
|
|
|
+ filename = string.Format("{0}({1}){2}", FileName, counter, ".xls");
|
|
|
+ filePath = Path.Combine(FolderPath, filename);
|
|
|
+ counter++;
|
|
|
+ }
|
|
|
+ FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
|
|
|
+ byte[] data = ms.ToArray();
|
|
|
+ fs.Write(data, 0, data.Length);
|
|
|
+ fs.Flush();
|
|
|
+
|
|
|
+ ms.Dispose();
|
|
|
+ fs.Dispose();
|
|
|
+ return filePath;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
- public string ExportExcel(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ public string LIPIUXIN(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
|
|
|
{
|
|
|
|
|
|
MemoryStream ms;
|
|
|
- ms = DataTableToExcel1(firstsdt, dt, Type, FileName, PageSize, conditionbox);
|
|
|
+ ms = DataTableToExcel_LIPUXIN(firstsdt, dt, Type, FileName, PageSize, conditionbox);
|
|
|
|
|
|
string filePath = @FolderPath + "\\" + FileName + ".xls";
|
|
|
int counter = 1;
|
|
@@ -304,7 +332,7 @@ namespace UAS_LabelMachine
|
|
|
|
|
|
|
|
|
|
|
|
- public MemoryStream DataTableToExcel1(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ public MemoryStream DataTableToExcel_Normal(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
|
|
|
{
|
|
|
string 小计 = "";
|
|
|
string 总计 = "";
|
|
@@ -1391,7 +1419,7 @@ namespace UAS_LabelMachine
|
|
|
|
|
|
|
|
|
|
|
|
- public MemoryStream DataTableToExcel2(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ private MemoryStream DataTableToExcel_JINYUAN(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
|
|
|
{
|
|
|
string 小计 = "";
|
|
|
string 总计 = "";
|
|
@@ -2522,5 +2550,1229 @@ namespace UAS_LabelMachine
|
|
|
book.Write(ms);
|
|
|
return ms;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ private MemoryStream DataTableToExcel_LIPUXIN(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
|
|
|
+ {
|
|
|
+ string 小计 = "";
|
|
|
+ string 批小计 = "";
|
|
|
+ string 总计 = "";
|
|
|
+ string 片 = "";
|
|
|
+ string companyname = "";
|
|
|
+ if (dh.getFieldDataByCondition("ProdInout", "pi_exporttype", "pi_inoutno='" + Inoutno + "'").ToString() == "Chinese")
|
|
|
+ {
|
|
|
+ 小计 = "小计";
|
|
|
+ 总计 = "总计";
|
|
|
+ 批小计 = "批小计";
|
|
|
+ companyname = "深爱半导体股份有限公司芯片出货清单";
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ 批小计 = "BatchTotal";
|
|
|
+ 小计 = "total";
|
|
|
+ 总计 = "total";
|
|
|
+ companyname = "SHENZHEN SI SEMICONDUCTORS CO.,LTD";
|
|
|
+ }
|
|
|
+
|
|
|
+ CheckBox[] box = conditionbox.ToArray();
|
|
|
+
|
|
|
+ MemoryStream ms = new MemoryStream();
|
|
|
+
|
|
|
+ HSSFWorkbook book = new HSSFWorkbook();
|
|
|
+
|
|
|
+ ISheet sheet = book.CreateSheet("分页");
|
|
|
+ sheet.SetMargin(MarginType.TopMargin, 0.4);
|
|
|
+ sheet.SetMargin(MarginType.BottomMargin, 0.4);
|
|
|
+ sheet.SetMargin(MarginType.LeftMargin, 0.4);
|
|
|
+ sheet.SetMargin(MarginType.RightMargin, 0.4);
|
|
|
+ sheet.FitToPage = true;
|
|
|
+ sheet.PrintSetup.FitHeight = 200;
|
|
|
+
|
|
|
+ HSSFFont ffont = (HSSFFont)book.CreateFont();
|
|
|
+ ffont.FontName = "宋体";
|
|
|
+ bool ShowChcode = true;
|
|
|
+
|
|
|
+ List<string> pib_id = new List<string>();
|
|
|
+
|
|
|
+ List<string> pib_outboxcode1 = new List<string>();
|
|
|
+ int BoxCode = 1;
|
|
|
+ ICellStyle style = book.CreateCellStyle();
|
|
|
+ style.VerticalAlignment = VerticalAlignment.Center;
|
|
|
+ style.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Left;
|
|
|
+ style.SetFont(ffont);
|
|
|
+ ICellStyle styleborder = book.CreateCellStyle();
|
|
|
+ styleborder.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ styleborder.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ styleborder.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ styleborder.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ styleborder.VerticalAlignment = VerticalAlignment.Center;
|
|
|
+ styleborder.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Left;
|
|
|
+ styleborder.SetFont(ffont);
|
|
|
+ string pi_inoutno = "";
|
|
|
+ HSSFFont ColumnTitle = (HSSFFont)book.CreateFont();
|
|
|
+ ColumnTitle.FontName = "宋体";
|
|
|
+ ColumnTitle.Boldweight = (short)FontBoldWeight.Bold;
|
|
|
+
|
|
|
+ ICellStyle ColumnTitleStyle = book.CreateCellStyle();
|
|
|
+ ColumnTitleStyle.SetFont(ColumnTitle);
|
|
|
+
|
|
|
+ ColumnTitleStyle.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ ColumnTitleStyle.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ ColumnTitleStyle.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+ ColumnTitleStyle.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;
|
|
|
+
|
|
|
+ List<string> NotShowColumn = new List<string>();
|
|
|
+ NotShowColumn.Add("ch_level");
|
|
|
+ NotShowColumn.Add("pib_id");
|
|
|
+ NotShowColumn.Add("chw_itemname1");
|
|
|
+ NotShowColumn.Add("chw_itemname2");
|
|
|
+ NotShowColumn.Add("pd_ordercode");
|
|
|
+ NotShowColumn.Add("pr_size");
|
|
|
+ NotShowColumn.Add("me_desc");
|
|
|
+ NotShowColumn.Add("pr_orispeccode");
|
|
|
+ NotShowColumn.Add("pr_orispeccode1");
|
|
|
+ NotShowColumn.Add("pi_title");
|
|
|
+ NotShowColumn.Add("pi_chipouttype");
|
|
|
+ NotShowColumn.Add("pi_date");
|
|
|
+
|
|
|
+ int ShowColumnCount = 0;
|
|
|
+
|
|
|
+
|
|
|
+ for (int i = DataTable.Columns.Count - 1; i > 0; i--)
|
|
|
+ {
|
|
|
+ for (int j = 0; j < box.Length; j++)
|
|
|
+ {
|
|
|
+ if (box[j].Name.ToLower() == "ch_bluefilm" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_bluefilm"))
|
|
|
+ {
|
|
|
+ DataTable.Columns.RemoveAt(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name.ToLower() == "ch_code" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_code"))
|
|
|
+ {
|
|
|
+ ShowChcode = true;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name.ToLower() == "ch_splitbatch" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_splitbatch"))
|
|
|
+ {
|
|
|
+ DataTable.Columns.RemoveAt(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name.ToLower() == "ch_waterid" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_waterid"))
|
|
|
+ {
|
|
|
+ DataTable.Columns.RemoveAt(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name.ToLower() == "ch_pbcode" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_pbcode"))
|
|
|
+ {
|
|
|
+ DataTable.Columns.RemoveAt(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name.ToLower() == "ch_remark" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[i].ColumnName.ToLower().Contains("ch_remark"))
|
|
|
+ {
|
|
|
+ DataTable.Columns.RemoveAt(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ int rowNum = DataTable.Rows.Count;
|
|
|
+ int columnNum = DataTable.Columns.Count;
|
|
|
+
|
|
|
+ IRow row = sheet.CreateRow(0);
|
|
|
+
|
|
|
+ sheet.CreateFreezePane(0, 1, 0, 1);
|
|
|
+
|
|
|
+ row.HeightInPoints = RowHeight;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ row.CreateCell(0);
|
|
|
+ row.Cells[0].SetCellValue(" " + companyname);
|
|
|
+
|
|
|
+ row.GetCell(0).CellStyle.SetFont((ffont));
|
|
|
+
|
|
|
+
|
|
|
+ int PaintIndex = 0;
|
|
|
+ int sumCount = 0;
|
|
|
+ int totalCount = 0;
|
|
|
+ switch (Type)
|
|
|
+ {
|
|
|
+ case "FixRow":
|
|
|
+
|
|
|
+ BaseUtil.CleanDataTableData(FirstDT);
|
|
|
+
|
|
|
+ string First_OrderCode = "";
|
|
|
+ string First_Prspec = "";
|
|
|
+ string First_Batch = "";
|
|
|
+ int NumIndex = 0;
|
|
|
+ ArrayList<string> First_WID = new ArrayList<string>();
|
|
|
+ for (int i = 0; i < rowNum; i++)
|
|
|
+ {
|
|
|
+ IRow row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ row1.HeightInPoints = RowHeight;
|
|
|
+
|
|
|
+ if (DataTable.Columns.Contains("pd_ordercode") && !First_OrderCode.Contains(DataTable.Rows[i]["pd_ordercode"].ToString()))
|
|
|
+ {
|
|
|
+ First_OrderCode += DataTable.Rows[i]["pd_ordercode"].ToString() + " ";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (DataTable.Columns.Contains("pr_orispeccode") && !First_Prspec.Contains(DataTable.Rows[i]["pr_orispeccode"].ToString()))
|
|
|
+ {
|
|
|
+ First_Prspec += DataTable.Rows[i]["pr_orispeccode"].ToString() + " ";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (DataTable.Columns.Contains("ch_splitbatch") && !First_Batch.Contains(DataTable.Rows[i]["ch_splitbatch"].ToString()))
|
|
|
+ {
|
|
|
+ First_Batch += DataTable.Rows[i]["ch_splitbatch"].ToString() + " ";
|
|
|
+ }
|
|
|
+
|
|
|
+ if (DataTable.Columns.Contains("Wafer_ID") && !First_WID.Contains(DataTable.Rows[i]["Wafer_ID"].ToString()))
|
|
|
+ {
|
|
|
+ First_WID.Add(DataTable.Rows[i]["Wafer_ID"].ToString());
|
|
|
+ }
|
|
|
+ if (i / PageSize >= 1 && i % PageSize == 0)
|
|
|
+ {
|
|
|
+ DataRow dr = FirstDT.NewRow();
|
|
|
+ dr["pr_orispeccode"] = DataTable.Rows[i]["pr_orispeccode"].ToString();
|
|
|
+ dr["pi_inoutno"] = DataTable.Rows[i]["pi_inoutno"].ToString();
|
|
|
+ pi_inoutno = DataTable.Rows[i]["pi_inoutno"].ToString();
|
|
|
+ dr["pi_title"] = DataTable.Rows[i]["pi_title"].ToString();
|
|
|
+ dr["pi_date"] = DataTable.Rows[i]["pi_date"].ToString();
|
|
|
+ dr["pd_ordercode"] = First_OrderCode;
|
|
|
+ dr["pr_orispeccode"] = First_Prspec;
|
|
|
+ dr["ch_splitbatch"] = First_Batch;
|
|
|
+ dr["ch_waterid"] = BaseUtil.GetArrStr(First_WID, " ");
|
|
|
+ dr["num"] = PageSize;
|
|
|
+ dr["io_qty"] = sumCount;
|
|
|
+ FirstDT.Rows.Add(dr);
|
|
|
+ First_OrderCode = "";
|
|
|
+ First_Prspec = "";
|
|
|
+ First_Batch = "";
|
|
|
+ First_WID.Clear();
|
|
|
+ BoxCode = BoxCode + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue((i % PageSize == 0 ? PageSize : i) + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ }
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue((i % PageSize == 0 ? PageSize : i) + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ }
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ sumCount = 0;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ sheet.SetRowBreak(PaintIndex - 1);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (i % PageSize == 0 || i == rowNum - 1)
|
|
|
+ {
|
|
|
+
|
|
|
+ if (i != rowNum - 1 || rowNum == 1 || (rowNum - i == rowNum % PageSize))
|
|
|
+ {
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_title"].Caption + ":" + DataTable.Rows[i]["pi_title"].ToString() + " "
|
|
|
+ + DataTable.Columns["ch_level"].Caption + ":" + DataTable.Rows[i]["ch_level"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_inoutno"].Caption + ":" + DataTable.Rows[i]["pi_inoutno"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_orispeccode"].Caption + ":" + DataTable.Rows[i]["pr_orispeccode"].ToString() + " "
|
|
|
+ + "(" + DataTable.Rows[i]["me_desc"].ToString() + ") " + DataTable.Columns["pi_chipouttype"].Caption + ":" + DataTable.Rows[i]["pi_chipouttype"].ToString());
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_size"].Caption + ":" + DataTable.Rows[i]["pr_size"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_date"].Caption + ":" + DataTable.Rows[i]["pi_date"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ int showcount = 0;
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname1"].ToString());
|
|
|
+ }
|
|
|
+ else if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname2"].ToString());
|
|
|
+ }
|
|
|
+ else if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Columns[j].Caption);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (DataTable.Columns[j].ColumnName.ToString() == "io_qty")
|
|
|
+ {
|
|
|
+ NumIndex = j;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ShowColumnCount = showcount;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ string Data = DataTable.Rows[i][j].ToString();
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(Data);
|
|
|
+ row1.GetCell(j - 4).CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "io_qty")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(int.Parse(Data));
|
|
|
+ sumCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ totalCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "rownum")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(i + 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (i == rowNum - 1)
|
|
|
+ {
|
|
|
+ DataRow dr = FirstDT.NewRow();
|
|
|
+ dr["pr_orispeccode"] = DataTable.Rows[i]["pr_orispeccode"].ToString();
|
|
|
+ dr["pi_inoutno"] = DataTable.Rows[i]["pi_inoutno"].ToString();
|
|
|
+ dr["pi_title"] = DataTable.Rows[i]["pi_title"].ToString();
|
|
|
+ dr["pi_date"] = DataTable.Rows[i]["pi_date"].ToString();
|
|
|
+ dr["pd_ordercode"] = First_OrderCode;
|
|
|
+ dr["pr_orispeccode"] = First_Prspec;
|
|
|
+ dr["ch_splitbatch"] = First_Batch;
|
|
|
+ dr["ch_waterid"] = BaseUtil.GetArrStr(First_WID, " ");
|
|
|
+ dr["num"] = (i % PageSize) + 1;
|
|
|
+ dr["io_qty"] = sumCount;
|
|
|
+ FirstDT.Rows.Add(dr);
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(rowNum % PageSize + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ }
|
|
|
+
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(rowNum % PageSize + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ }
|
|
|
+
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue("备注");
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(totalCount);
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(rowNum);
|
|
|
+ }
|
|
|
+ else if (j == 4)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(片);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.Cells[j].CellStyle = style;
|
|
|
+ }
|
|
|
+ sheet.SetRowBreak(PaintIndex);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+ pib_id.Add(DataTable.Rows[i]["pib_id"].ToString());
|
|
|
+ pib_outboxcode1.Add(BoxCode.ToString());
|
|
|
+ }
|
|
|
+ for (int i = 0; i < sheet.LastRowNum; i++)
|
|
|
+ {
|
|
|
+ if (i != 0)
|
|
|
+ {
|
|
|
+ sheet.AutoSizeColumn(i);
|
|
|
+ sheet.SetColumnWidth(i, sheet.GetColumnWidth(i) + 1000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case "BatchCode":
|
|
|
+ string LastBatchCode = "";
|
|
|
+ int PageNum = 0;
|
|
|
+ for (int i = 0; i < rowNum; i++)
|
|
|
+ {
|
|
|
+ IRow row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ row1.HeightInPoints = RowHeight;
|
|
|
+
|
|
|
+ PageNum = PageNum + 1;
|
|
|
+ if (LastBatchCode != "" && LastBatchCode != DataTable.Rows[i]["ch_splitbatch"].ToString())
|
|
|
+ {
|
|
|
+ BoxCode = BoxCode + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum - 1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum - 1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ sumCount = 0;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ sheet.SetRowBreak(PaintIndex - 1);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ PageNum = 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (LastBatchCode == "" || (LastBatchCode != "" && LastBatchCode != DataTable.Rows[i]["ch_splitbatch"].ToString()) || i == rowNum - 1)
|
|
|
+ {
|
|
|
+ LastBatchCode = DataTable.Rows[i]["ch_splitbatch"].ToString();
|
|
|
+
|
|
|
+
|
|
|
+ {
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_title"].Caption + ":" + DataTable.Rows[i]["pi_title"].ToString() + " "
|
|
|
+ + DataTable.Columns["ch_level"].Caption + ":" + DataTable.Rows[i]["ch_level"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_inoutno"].Caption + ":" + DataTable.Rows[i]["pi_inoutno"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_orispeccode"].Caption + ":" + DataTable.Rows[i]["pr_orispeccode"].ToString() + " "
|
|
|
+ + "(" + DataTable.Rows[i]["me_desc"].ToString() + ") " + DataTable.Columns["pi_chipouttype"].Caption + ":" + DataTable.Rows[i]["pi_chipouttype"].ToString());
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_size"].Caption + ":" + DataTable.Rows[i]["pr_size"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_date"].Caption + ":" + DataTable.Rows[i]["pi_date"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ int showcount = 0;
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname1"].ToString());
|
|
|
+ }
|
|
|
+ else if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname2"].ToString());
|
|
|
+ }
|
|
|
+ else if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Columns[j].Caption);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ShowColumnCount = showcount;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ string Data = DataTable.Rows[i][j].ToString();
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(Data);
|
|
|
+ row1.GetCell(j - 4).CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "io_qty")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(int.Parse(Data));
|
|
|
+ sumCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ totalCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "rownum")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(i + 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (i == rowNum - 1)
|
|
|
+ {
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue("备注");
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(totalCount);
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(rowNum);
|
|
|
+ }
|
|
|
+ else if (j == 4)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(片);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.Cells[j].CellStyle = style;
|
|
|
+ }
|
|
|
+ sheet.SetRowBreak(PaintIndex);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ PageNum = 1;
|
|
|
+ }
|
|
|
+ pib_id.Add(DataTable.Rows[i]["pib_id"].ToString());
|
|
|
+ pib_outboxcode1.Add(BoxCode.ToString());
|
|
|
+ }
|
|
|
+ for (int i = 0; i < sheet.LastRowNum; i++)
|
|
|
+ {
|
|
|
+ if (i != 0)
|
|
|
+ {
|
|
|
+ sheet.AutoSizeColumn(i);
|
|
|
+ sheet.SetColumnWidth(i, sheet.GetColumnWidth(i) + 1000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ case "BoxCode":
|
|
|
+ string LastBoxCode = "";
|
|
|
+ int PageNum1 = 0;
|
|
|
+
|
|
|
+ for (int i = 0; i < rowNum; i++)
|
|
|
+ {
|
|
|
+ IRow row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ row1.HeightInPoints = RowHeight;
|
|
|
+ PageNum1 = PageNum1 + 1;
|
|
|
+
|
|
|
+ if (LastBoxCode != "" && LastBoxCode != DataTable.Rows[i]["CH_PBCODE"].ToString())
|
|
|
+ {
|
|
|
+ BoxCode = BoxCode + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ sumCount = 0;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ sheet.SetRowBreak(PaintIndex - 1);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (LastBoxCode == "" || (LastBoxCode != "" && LastBoxCode != DataTable.Rows[i]["ch_pbcode"].ToString()) || i == rowNum - 1)
|
|
|
+ {
|
|
|
+ LastBoxCode = DataTable.Rows[i]["CH_PBCODE"].ToString();
|
|
|
+
|
|
|
+
|
|
|
+ {
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_title"].Caption + ":" + DataTable.Rows[i]["pi_title"].ToString() + " "
|
|
|
+ + DataTable.Columns["ch_level"].Caption + ":" + DataTable.Rows[i]["ch_level"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_inoutno"].Caption + ":" + DataTable.Rows[i]["pi_inoutno"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_orispeccode"].Caption + ":" + DataTable.Rows[i]["pr_orispeccode"].ToString() + " "
|
|
|
+ + "(" + DataTable.Rows[i]["me_desc"].ToString() + ") " + DataTable.Columns["pi_chipouttype"].Caption + ":" + DataTable.Rows[i]["pi_chipouttype"].ToString());
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pr_size"].Caption + ":" + DataTable.Rows[i]["pr_size"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 14 && j == columnNum - 14)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(DataTable.Columns["pi_date"].Caption + ":" + DataTable.Rows[i]["pi_date"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ int showcount = 0;
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname1"].ToString());
|
|
|
+ }
|
|
|
+ else if (DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2")
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Rows[i]["chw_itemname2"].ToString());
|
|
|
+ }
|
|
|
+ else if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ showcount = showcount + 1;
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = ColumnTitleStyle;
|
|
|
+ row1.Cells[j - 4].SetCellValue(DataTable.Columns[j].Caption);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ShowColumnCount = showcount;
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ string Data = DataTable.Rows[i][j].ToString();
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ if ((DataTable.Rows[i]["chw_itemname1"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent1") ||
|
|
|
+ (DataTable.Rows[i]["chw_itemname2"].ToString() == "" && DataTable.Columns[j].ColumnName.ToLower() == "chw_percent2") || (NotShowColumn.Contains(DataTable.Columns[j].ColumnName.ToLower())) || (!ShowChcode && DataTable.Columns[j].ColumnName.ToLower().Contains("ch_code")))
|
|
|
+ {
|
|
|
+
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(Data);
|
|
|
+ row1.GetCell(j - 4).CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "io_qty")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(int.Parse(Data));
|
|
|
+ sumCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ totalCount += int.Parse(DataTable.Rows[i][j].ToString());
|
|
|
+ }
|
|
|
+ if (DataTable.Columns[j].ColumnName == "rownum")
|
|
|
+ {
|
|
|
+ row1.Cells[j - 4].SetCellValue(i + 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (i == rowNum - 1)
|
|
|
+ {
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(批小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < ShowColumnCount; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.Cells[j].SetCellValue(小计);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else if (j == 1)
|
|
|
+ {
|
|
|
+ row1.Cells[1].SetCellValue(PageNum1 + 片);
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.Cells[2].SetCellValue(sumCount);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ row1 = sheet.CreateRow(PaintIndex);
|
|
|
+
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue("备注");
|
|
|
+ }
|
|
|
+ else if (j == 2)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(totalCount);
|
|
|
+ }
|
|
|
+ else if (j == 3)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(rowNum);
|
|
|
+ }
|
|
|
+ else if (j == 4)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(片);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.Cells[j].CellStyle = style;
|
|
|
+ }
|
|
|
+ sheet.SetRowBreak(PaintIndex);
|
|
|
+ sheet.Footer.Center = "第&P页,共&N页";
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ PageNum1 = 1;
|
|
|
+ }
|
|
|
+ pib_id.Add(DataTable.Rows[i]["pib_id"].ToString());
|
|
|
+ pib_outboxcode1.Add(BoxCode.ToString());
|
|
|
+ }
|
|
|
+ for (int i = 0; i < sheet.LastRowNum; i++)
|
|
|
+ {
|
|
|
+ if (i != 0)
|
|
|
+ {
|
|
|
+ sheet.AutoSizeColumn(i);
|
|
|
+ sheet.SetColumnWidth(i, sheet.GetColumnWidth(i) + 1000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ dh.BatchInsert("update prodiobarcode set pib_outboxcode1=:pib_outboxcode1 where pib_inoutno='" + Inoutno + "' and pib_id=:pib_id", new string[] { "pib_outboxcode1", "pib_id" }, pib_outboxcode1.ToArray(), pib_id.ToArray());
|
|
|
+
|
|
|
+ HttpHandler.GenDownLoadLinK(Inoutno);
|
|
|
+
|
|
|
+ sumCount = 0;
|
|
|
+ totalCount = 0;
|
|
|
+ PaintIndex = 1;
|
|
|
+ ISheet sheet2 = book.CreateSheet("首页");
|
|
|
+ row = sheet2.CreateRow(0);
|
|
|
+ row.CreateCell(0);
|
|
|
+ row.Cells[0].SetCellValue(" " + companyname);
|
|
|
+ row.GetCell(0).CellStyle = style;
|
|
|
+ rowNum = FirstDT.Rows.Count;
|
|
|
+
|
|
|
+ for (int i = FirstDT.Columns.Count - 1; i > 0; i--)
|
|
|
+ {
|
|
|
+ for (int j = 0; j < box.Length; j++)
|
|
|
+ {
|
|
|
+ if (box[j].Name == "FirstPage_WID" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (FirstDT.Columns[i].ColumnName.ToLower().Contains("ch_waterid"))
|
|
|
+ {
|
|
|
+ FirstDT.Columns.RemoveAt(i);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name == "FirstPage_YIELD" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (FirstDT.Columns[i].ColumnName.ToLower().Contains("ch_yeild"))
|
|
|
+ {
|
|
|
+ FirstDT.Columns.RemoveAt(i);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (box[j].Name == "FirstPage_REMARK" && !box[j].Checked)
|
|
|
+ {
|
|
|
+ if (FirstDT.Columns[i].ColumnName.ToLower().Contains("ch_remark"))
|
|
|
+ {
|
|
|
+ FirstDT.Columns.RemoveAt(i);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ columnNum = FirstDT.Columns.Count;
|
|
|
+ for (int i = 0; i < rowNum; i++)
|
|
|
+ {
|
|
|
+ IRow row1 = sheet2.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ row1.HeightInPoints = RowHeight;
|
|
|
+
|
|
|
+ if (i == 0)
|
|
|
+ {
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pi_title"].Caption + ":" + FirstDT.Rows[i]["pi_title"].ToString());
|
|
|
+ }
|
|
|
+ else if (j > 5 && j == columnNum - 5)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pi_inoutno"].Caption + ":" + FirstDT.Rows[i]["pi_inoutno"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 5 && j == columnNum - 5)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pi_inoutno"].Caption + ":" + FirstDT.Rows[i]["pi_inoutno"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+ row1 = sheet2.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ for (int j = 0; j < columnNum - 3; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pr_orispeccode"].Caption + ":" + FirstDT.Rows[i]["pr_orispeccode"].ToString());
|
|
|
+ }
|
|
|
+ else if (j > 5 && j == columnNum - 5)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pi_date"].Caption + ":" + FirstDT.Rows[i]["pi_date"].ToString());
|
|
|
+ }
|
|
|
+ else if (columnNum > 5 && j == columnNum - 5)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].SetCellValue(FirstDT.Columns["pi_date"].Caption + ":" + FirstDT.Rows[i]["pi_date"].ToString());
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ }
|
|
|
+ row1.GetCell(j).CellStyle = style;
|
|
|
+ }
|
|
|
+ row1 = sheet2.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].CellStyle = styleborder;
|
|
|
+ row1.Cells[j - 4].SetCellValue(FirstDT.Columns[j].Caption);
|
|
|
+ }
|
|
|
+ row1 = sheet2.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (int j = 4; j < columnNum; j++)
|
|
|
+ {
|
|
|
+ string Data = FirstDT.Rows[i][j].ToString();
|
|
|
+ row1.CreateCell(j - 4);
|
|
|
+ row1.Cells[j - 4].SetCellValue(Data);
|
|
|
+ row1.GetCell(j - 4).CellStyle = styleborder;
|
|
|
+ if (FirstDT.Columns[j].ColumnName == "num")
|
|
|
+ {
|
|
|
+ sumCount += int.Parse(Data);
|
|
|
+ }
|
|
|
+ if (FirstDT.Columns[j].ColumnName == "io_qty")
|
|
|
+ {
|
|
|
+ totalCount += int.Parse(Data);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (i == rowNum - 1)
|
|
|
+ {
|
|
|
+ row1 = sheet2.CreateRow(PaintIndex);
|
|
|
+ PaintIndex = PaintIndex + 1;
|
|
|
+ for (int j = 0; j < columnNum - 4; j++)
|
|
|
+ {
|
|
|
+ if (j == 0)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ row1.Cells[j].SetCellValue(总计);
|
|
|
+ }
|
|
|
+ else if (j == columnNum - 6)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ row1.Cells[j].SetCellValue(sumCount);
|
|
|
+ }
|
|
|
+ else if (j == columnNum - 5)
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ row1.Cells[j].SetCellValue(totalCount);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ row1.CreateCell(j);
|
|
|
+ row1.Cells[j].CellStyle = styleborder;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (int i = 0; i < sheet2.LastRowNum; i++)
|
|
|
+ {
|
|
|
+ if (i != 0)
|
|
|
+ {
|
|
|
+ sheet2.AutoSizeColumn(i);
|
|
|
+ sheet2.SetColumnWidth(i, sheet2.GetColumnWidth(i) + 1000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ book.Write(ms);
|
|
|
+ return ms;
|
|
|
+ }
|
|
|
}
|
|
|
}
|