| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526 |
- using System.IO;
- using System.Data;
- using NPOI.HSSF.UserModel;
- using NPOI.SS.UserModel;
- using NPOI.HSSF.Util;
- using NPOI.XSSF.UserModel;
- using System;
- using UAS_LabelMachine.Entity;
- using UAS_LabelMachine.PublicMethod;
- using System.Collections.Generic;
- using System.Windows.Forms;
- using System.Text.RegularExpressions;
- namespace UAS_LabelMachine
- {
- class ExcelHandler
- {
- DataHelper dh = SystemInf.dh;
- /// <summary>
- /// 导出Excel,返回文件在客户端的路径
- /// </summary>
- public string ExportExcel(DataTable dt, string FolderPath, string FileName)
- {
- //创建一个内存流,用来接收转换成Excel的内容
- MemoryStream ms;
- ms = DataTableToExcel(dt);
- //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
- string filePath = @FolderPath + "\\" + FileName + ".xls";
- FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
- byte[] data = ms.ToArray();
- fs.Write(data, 0, data.Length);
- fs.Flush();
- //释放当前Excel文件,否则打开文件的时候会显示文件被占用
- ms.Dispose();
- fs.Dispose();
- return filePath;
- }
- /// <summary>
- /// 导出Excel,返回文件在客户端的路径
- /// </summary>
- public string ExportExcel_Special(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
- {
- //创建一个内存流,用来接收转换成Excel的内容
- MemoryStream ms;
- ms = DataTableToExcel2(firstsdt, dt, Type, FileName, PageSize, conditionbox);
- //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
- 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"); //文件名+(count)+后缀
- filePath = Path.Combine(FolderPath, filename); //保存路径
- counter++; //count+1
- }
- FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
- byte[] data = ms.ToArray();
- fs.Write(data, 0, data.Length);
- fs.Flush();
- //释放当前Excel文件,否则打开文件的时候会显示文件被占用
- ms.Dispose();
- fs.Dispose();
- return filePath;
- }
- /// <summary>
- /// 导出Excel,返回文件在客户端的路径
- /// </summary>
- public string ExportExcel(DataTable firstsdt, DataTable dt, string FolderPath, string FileName, string Type, int PageSize, List<CheckBox> conditionbox)
- {
- //创建一个内存流,用来接收转换成Excel的内容
- MemoryStream ms;
- ms = DataTableToExcel1(firstsdt, dt, Type, FileName, PageSize, conditionbox);
- //以系统当前时间命名文件,FileMode.Create表示创建文件,FileAccess.Write表示拥有写的权限
- 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"); //文件名+(count)+后缀
- filePath = Path.Combine(FolderPath, filename); //保存路径
- counter++; //count+1
- }
- FileStream fs = new FileStream(filePath, FileMode.Create, FileAccess.Write);
- byte[] data = ms.ToArray();
- fs.Write(data, 0, data.Length);
- fs.Flush();
- //释放当前Excel文件,否则打开文件的时候会显示文件被占用
- ms.Dispose();
- fs.Dispose();
- return filePath;
- }
- /// <summary>
- /// 导入Excel
- /// </summary>
- public void ImportExcel(DataTable DataTable, string TableName)
- {
- int columnNum = DataTable.Columns.Count;
- int rowNum = DataTable.Columns.Count;
- string[] field = new string[columnNum];
- for (int i = 0; i < columnNum; i++)
- {
- field[i] = DataTable.Rows[0][i].ToString();
- }
- }
- public static DataTable ExcelToDataTable(string filePath, bool isColumnName)
- {
- DataTable dataTable = null;
- FileStream fs = null;
- DataColumn column = null;
- DataRow dataRow = null;
- IWorkbook workbook = null;
- ISheet sheet = null;
- IRow row = null;
- ICell cell = null;
- int startRow = 0;
- try
- {
- using (fs = File.OpenRead(filePath))
- {
- // 2007版本
- if (filePath.IndexOf(".xlsx") > 0)
- {
- workbook = new XSSFWorkbook(fs);
- }
- // 2003版本
- else if (filePath.IndexOf(".xls") > 0)
- {
- workbook = new HSSFWorkbook(fs);
- }
- if (workbook != null)
- {
- sheet = workbook.GetSheetAt(0);//读取第一个sheet,当然也可以循环读取每个sheet
- dataTable = new DataTable();
- if (sheet != null)
- {
- int rowCount = sheet.LastRowNum;//总行数
- if (rowCount > 0)
- {
- IRow firstRow = sheet.GetRow(0);//第一行
- int cellCount = firstRow.LastCellNum;//列数
- //构建datatable的列
- if (isColumnName)
- {
- startRow = 1;//如果第一行是列名,则从第二行开始读取
- for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
- {
- cell = firstRow.GetCell(i);
- if (cell != null)
- {
- if (cell.StringCellValue != null)
- {
- column = new DataColumn(cell.StringCellValue);
- dataTable.Columns.Add(column);
- }
- }
- }
- }
- else
- {
- for (int i = firstRow.FirstCellNum; i < cellCount; ++i)
- {
- column = new DataColumn("column" + (i + 1));
- dataTable.Columns.Add(column);
- }
- }
- //填充行
- for (int i = startRow; i <= rowCount; ++i)
- {
- row = sheet.GetRow(i);
- if (row == null) continue;
- dataRow = dataTable.NewRow();
- for (int j = row.FirstCellNum; j < cellCount; ++j)
- {
- cell = row.GetCell(j);
- if (cell == null)
- {
- dataRow[j] = "";
- }
- else
- {
- //CellType(Unknown = -1,Numeric = 0,String = 1,Formula = 2,Blank = 3,Boolean = 4,Error = 5,)
- switch (cell.CellType)
- {
- case CellType.Blank:
- dataRow[j] = "";
- break;
- case CellType.Numeric:
- short format = cell.CellStyle.DataFormat;
- //对时间格式(2015.12.5、2015/12/5、2015-12-5等)的处理
- if (format == 14 || format == 31 || format == 57 || format == 58)
- dataRow[j] = cell.DateCellValue;
- else
- dataRow[j] = cell.NumericCellValue;
- break;
- case CellType.String:
- dataRow[j] = cell.StringCellValue;
- break;
- }
- }
- }
- dataTable.Rows.Add(dataRow);
- }
- }
- }
- }
- }
- return dataTable;
- }
- catch (Exception)
- {
- if (fs != null)
- {
- fs.Close();
- }
- return null;
- }
- }
- int RowHeight = 12;
- /// <summary>
- /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
- /// </summary>
- /// <param name="DataTable"></param>
- /// <returns></returns>
- public MemoryStream DataTableToExcel(DataTable DataTable)
- {
- //创建内存流
- MemoryStream ms = new MemoryStream();
- //创建一个Book,相当于一个Excel文件
- HSSFWorkbook book = new HSSFWorkbook();
- //Excel中的Sheet
- ISheet sheet = book.CreateSheet("sheet1");
- //获取行数量和列数量
- int rowNum = DataTable.Rows.Count;
- int columnNum = DataTable.Columns.Count;
- //设置列的宽度,根据首行的列的内容的长度来设置
- for (int i = 0; i < columnNum; i++)
- {
- int dataLength;
- //如果内容比标题短则取标题长度
- if (DataTable.Rows[0][i].ToString().Length < DataTable.Columns[i].ColumnName.Length)
- {
- dataLength = DataTable.Columns[i].ColumnName.Length;
- dataLength = dataLength * 300;
- }
- else
- {
- dataLength = DataTable.Rows[0][i].ToString().Length;
- dataLength = dataLength * 300;
- }
- sheet.SetColumnWidth(i, dataLength);
- }
- //首先画好第一行带颜色的,单独写出来,避免写在循环里面
- IRow row = sheet.CreateRow(0);
- //冻结第一行
- sheet.CreateFreezePane(0, 1, 0, 1);
- ICellStyle style = book.CreateCellStyle();
- style.FillForegroundColor = HSSFColor.PaleBlue.Index;
- style.FillPattern = FillPattern.BigSpots;
- style.FillBackgroundColor = HSSFColor.LightGreen.Index;
- //设置边框
- style.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;
- style.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;
- style.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;
- style.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;
- row.HeightInPoints = 20;
- //固定第一行
- //row.RowStyle.IsLocked=true;
- //给第一行的标签赋值样式和值
- for (int j = 0; j < columnNum; j++)
- {
- row.CreateCell(j);
- row.Cells[j].CellStyle = style;
- row.Cells[j].CellStyle.VerticalAlignment = VerticalAlignment.Center;
- row.Cells[j].CellStyle.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;
- row.Cells[j].SetCellValue(DataTable.Columns[j].Caption);
- }
- //将DataTable的值循环赋值给book,Aligment设置居中
- //之前已经画了带颜色的第一行,所以从i=1开始画
- for (int i = 0; i < rowNum; i++)
- {
- IRow row1 = sheet.CreateRow(i + 1);
- row1.HeightInPoints = 20;
- for (int j = 0; j < columnNum; j++)
- {
- row1.CreateCell(j);
- row1.Cells[j].SetCellValue(DataTable.Rows[i][j].ToString());
- row1.GetCell(j).CellStyle.VerticalAlignment = VerticalAlignment.Center;
- }
- }
- //将book的内容写入内存流中返回
- book.Write(ms);
- return ms;
- }
- /// <summary>
- /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
- /// </summary>
- /// <param name="DataTable"></param>
- /// <returns></returns>
- public MemoryStream DataTableToExcel1(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
- {
- string 小计 = "";
- string 总计 = "";
- string 片 = "";
- string companyname = "";
- if (dh.getFieldDataByCondition("ProdInout", "pi_exporttype", "pi_inoutno='" + Inoutno + "'").ToString() == "Chinese")
- {
- 小计 = "小计";
- 总计 = "总计";
- companyname = "深爱半导体股份有限公司芯片出货清单";
- }
- else
- {
- 小计 = "total";
- 总计 = "total";
- companyname = "SHENZHEN SI SEMICONDUCTORS CO.,LTD";
- }
- //转换为序列
- CheckBox[] box = conditionbox.ToArray();
- //创建内存流
- MemoryStream ms = new MemoryStream();
- //创建一个Book,相当于一个Excel文件
- HSSFWorkbook book = new HSSFWorkbook();
- //Excel中的Sheet
- 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.RowStyle.IsLocked=true;
- //给第一行的标签赋值样式和值
- // ffont.FontHeight = 13;
- row.CreateCell(0);
- row.Cells[0].SetCellValue(" " + companyname);
- row.GetCell(0).CellStyle.SetFont((ffont));
- //ffont.FontHeight = 10;
- //开始绘制的Index
- 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() + " ";
- }
- //不包含Wafer_id
- 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;
- }
- 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)
- {
- //第一行添加客户信息 rownum只有一行的情
- 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);
- }
- }
- //固定行号分组的时候自动拼接新的DataTable
- 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);
- 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;
- }
- }
- 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();
- //第一行添加客户信息
- //if (i != rowNum - 1)
- {
- 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);
- 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;
- }
- }
- 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();
- //第一行添加客户信息
- //if (i != rowNum - 1)
- {
- 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);
- 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的内容写入内存流中返回
- book.Write(ms);
- return ms;
- }
- /// <summary>
- /// 将DataTable形式的数据转成Excel格式的,然后用字节流的形式写入文件
- /// </summary>
- /// <param name="DataTable"></param>
- /// <returns></returns>
- public MemoryStream DataTableToExcel2(DataTable FirstDT, DataTable DataTable, string Type, string Inoutno, int PageSize, List<CheckBox> conditionbox)
- {
- string 小计 = "";
- string 总计 = "";
- string 片 = "";
- string companyname = "";
- if (dh.getFieldDataByCondition("ProdInout", "pi_exporttype", "pi_inoutno='" + Inoutno + "'").ToString() == "Chinese")
- {
- 小计 = "小计";
- 总计 = "总计";
- 片 = "片";
- companyname = "深爱半导体股份有限公司芯片出货清单";
- }
- else
- {
- 小计 = "total";
- 总计 = "total";
- 片 = "slice";
- companyname = "SHENZHEN SI SEMICONDUCTORS CO.,LTD";
- }
- //转换为序列
- CheckBox[] box = conditionbox.ToArray();
- //创建内存流
- MemoryStream ms = new MemoryStream();
- //创建一个Book,相当于一个Excel文件
- HSSFWorkbook book = new HSSFWorkbook();
- //Excel中的Sheet
- 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.PrintSetup.NoColor = true;
- sheet.PrintSetup.Landscape = true;
- sheet.PrintSetup.PaperSize = (short)PaperSize.A4;
- //芯片号需要作为更新盒号的条件
- 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 = "";
- 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_date");
- NotShowColumn.Add("pi_chipouttype");
- //设置列的宽度,根据首行的列的内容的长度来设置
- 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;
- //首先画好第一行带颜色的,单独写出来,避免写在循环里面
- //ffont.FontHeight = 10;
- //开始绘制的Index
- int PaintIndex = 0;
- int sumCount = 0;
- int totalCount = 0;
- //Title的字体
- HSSFFont titlefont = (HSSFFont)book.CreateFont();
- titlefont.FontName = "宋体";
- titlefont.FontHeight = 270;
- titlefont.Boldweight = (short)FontBoldWeight.Bold;
- 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;
- ICellStyle TitleStyle = book.CreateCellStyle();
- TitleStyle.SetFont(titlefont);
- int ShowColumnCount = 0;
- IRow row1 = null;
- 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++)
- {
- if (PaintIndex != 0)
- {
- 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() + " ";
- }
- //不包含Wafer_id
- 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) + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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)
- {
- //第一行添加客户信息 rownum只有一行的情
- if (i != rowNum - 1 || rowNum == 1)
- {
- //抬头设置
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- row1.CreateCell(0).SetCellValue(" " + companyname);
- row1.GetCell(0).CellStyle = TitleStyle;
- 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["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.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;
- for (int j = 0; j < columnNum; j++)
- {
- row1.CreateCell(j).SetCellValue("");
- }
- //添加列名
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- //计数列所在的索引
- int showcount = 0;
- //前面有4列标题内容,数据库设置的,需要从4开始索引
- 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);
- }
- }
- //固定行号分组的时候自动拼接新的DataTable
- 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 + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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++)
- {
- row1 = sheet.CreateRow(PaintIndex);
- if (i != 0)
- 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 + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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页";
- PageNum = 1;
- }
- //每次到了页数开始分页
- if (LastBatchCode == "" || (LastBatchCode != "" && LastBatchCode != DataTable.Rows[i]["ch_splitbatch"].ToString()))
- {
- LastBatchCode = DataTable.Rows[i]["ch_splitbatch"].ToString();
- //第一行添加客户信息
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- row1.CreateCell(0).SetCellValue(" " + companyname);
- row1.GetCell(0).CellStyle = TitleStyle;
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- //if (i != rowNum - 1)
- {
- 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.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;
- for (int j = 0; j < columnNum; j++)
- {
- row1.CreateCell(j).SetCellValue("");
- }
- //添加列名
- 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 + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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++)
- {
- row1 = sheet.CreateRow(PaintIndex);
- if (i != 0)
- 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 - 1 + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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页";
- PageNum1 = 1;
- }
- //每次到了页数开始分页
- if (LastBoxCode == "" || (LastBoxCode != "" && LastBoxCode != DataTable.Rows[i]["ch_pbcode"].ToString()))
- {
- LastBoxCode = DataTable.Rows[i]["CH_PBCODE"].ToString();
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- row1.CreateCell(0).SetCellValue(" " + companyname);
- row1.GetCell(0).CellStyle = TitleStyle;
- row1 = sheet.CreateRow(PaintIndex);
- PaintIndex = PaintIndex + 1;
- //第一行添加客户信息
- //if (i != rowNum - 1)
- {
- 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.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;
- for (int j = 0; j < columnNum; j++)
- {
- row1.CreateCell(j).SetCellValue("");
- }
- //添加列名
- 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 + 片);
- row1.Cells[1].CellStyle = ColumnTitleStyle;
- }
- 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 = 0;
- ISheet sheet2 = book.CreateSheet("首页");
- IRow 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++)
- {
- 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的内容写入内存流中返回
- book.Write(ms);
- return ms;
- }
- }
- }
|