using BLL; using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.IO; using System.Linq; using System.Web.UI.WebControls; namespace FineUIPro.Web.HJGL.TestPackage { public partial class TestPackageData : PageBase { #region 定义项 /// /// 试压包主键 /// public string PTP_ID { get { return (string)ViewState["PTP_ID"]; } set { ViewState["PTP_ID"] = value; } } /// /// 单位工程Id /// public string UnitWorkId { get { return (string)ViewState["UnitWorkId"]; } set { ViewState["UnitWorkId"] = value; } } #endregion protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { this.ddlPageSize.SelectedValue = this.Grid1.PageSize.ToString(); this.InitTreeMenu();//加载树 BindGrid(); } } #region 加载树装置-单位-工作区 /// /// 加载树 /// private void InitTreeMenu() { this.tvControlItem.Nodes.Clear(); // 创建根节点 TreeNode rootNode1 = new TreeNode { NodeID = "1", Text = "建筑工程", CommandName = "建筑工程", Selectable = false, EnableClickEvent = true }; this.tvControlItem.Nodes.Add(rootNode1); TreeNode rootNode2 = new TreeNode { NodeID = "2", Text = "安装工程", CommandName = "安装工程", Expanded = true, EnableClickEvent = true }; this.tvControlItem.Nodes.Add(rootNode2); // 一次性获取所有需要的数据 var projectId = this.CurrUser.LoginProjectId; var unitWorkList = (from x in Funs.DB.WBS_UnitWork where x.ProjectId == projectId && x.SuperUnitWork == null && x.UnitId != null && x.ProjectType != null select x).ToList(); // 按项目类型分组,避免重复查询 var unitWorkGroups = unitWorkList .GroupBy(x => x.ProjectType) .ToDictionary(g => g.Key, g => g.ToList()); // 批量获取单位名称,避免在循环中查询数据库 var unitIds = unitWorkList.Where(x => x.UnitId != null).Select(x => x.UnitId).Distinct().ToList(); var unitNameDict = new Dictionary(); foreach (var unitId in unitIds) { var unitName = BLL.UnitService.getUnitNamesUnitIds(unitId); if (!string.IsNullOrEmpty(unitName)) { unitNameDict[unitId] = unitName; } } // 统一方法处理两种类型的单位工程 Action addUnitWorkNodes = (projectType, parentNode) => { if (unitWorkGroups.ContainsKey(projectType)) { foreach (var unitWork in unitWorkGroups[projectType]) { TreeNode treeNode = new TreeNode { NodeID = unitWork.UnitWorkId, Text = unitWork.UnitWorkName, ToolTip = unitNameDict.ContainsKey(unitWork.UnitId) ? "施工单位:" + unitNameDict[unitWork.UnitId] : "施工单位:", CommandName = "单位工程", EnableClickEvent = true }; parentNode.Nodes.Add(treeNode); } } }; // 添加建筑工程和安装工程节点 addUnitWorkNodes("1", rootNode1); addUnitWorkNodes("2", rootNode2); } #endregion #region 点击TreeView /// /// 点击TreeView /// /// /// protected void tvControlItem_NodeCommand(object sender, TreeCommandEventArgs e) { this.UnitWorkId = tvControlItem.SelectedNodeID; this.BindGrid(); } #endregion #region 数据绑定 /// /// 数据绑定 /// private void BindGrid() { string strSql = @" select t.PTP_ID, t.ProjectId, t.UnitId, t.UnitWorkId, t.TestPackageNo, t.TestPackageName, t.FinishDef, (case when t.PrintState>0 then '第'+convert(varchar(10),t.PrintState)+'次打印' else '未打印' end) as PrintState, t.TableDate from PTP_TestPackage t where t.ProjectId=@projectId"; List listStr = new List(); listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId)); if (!string.IsNullOrEmpty(this.UnitWorkId)) { strSql += " and t.UnitWorkId =@unitWorkId"; listStr.Add(new SqlParameter("@unitWorkId", this.UnitWorkId)); } if (!string.IsNullOrEmpty(this.txtTestPackageNo.Text.Trim())) { strSql += " and t.TestPackageNo like @testPackageNo"; listStr.Add(new SqlParameter("@testPackageNo", "%" + this.txtTestPackageNo.Text.Trim() + "%")); } SqlParameter[] parameter = listStr.ToArray(); DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter); // 2.获取当前分页数据 //var table = this.GetPagedDataTable(Grid1, tb1); Grid1.RecordCount = tb.Rows.Count; var table = this.GetPagedDataTable(Grid1, tb); Grid1.DataSource = table; Grid1.DataBind(); } #endregion #region 分页排序 #region 页索引改变事件 /// /// 页索引改变事件 /// /// /// protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e) { BindGrid(); } #endregion #region 排序 /// /// 排序 /// /// /// protected void Grid1_Sort(object sender, GridSortEventArgs e) { BindGrid(); } #endregion #region 分页选择下拉改变事件 /// /// 分页选择下拉改变事件 /// /// /// protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e) { Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue); BindGrid(); } #endregion #endregion #region 打印 /// /// 打印按钮 /// /// /// protected void btnPrint_Click(object sender, EventArgs e) { var selectedRows = this.Grid1.SelectedRowIDArray; if (selectedRows.Length == 0) { Alert.ShowInTop("请选择一条试压包", MessageBoxIcon.Warning); return; } Dictionary printFiles = new Dictionary(); foreach (var ptp_id in selectedRows) { var item = exportWord(ptp_id); TestPackagePrintService.AddPrintCountByPTP_ID(ptp_id);//增加明细打印次数 printFiles.Add(item.FirstOrDefault().Key, item.FirstOrDefault().Value); } if (printFiles.Count > 1) { string zipName = ""; string rootPath = Funs.RootPath; string startPath = rootPath + "FileUpload\\试压包资料" + DateTime.Now.GetHashCode(); if (!Directory.Exists(startPath)) { Directory.CreateDirectory(startPath); } string zipPath = rootPath + "FileUpload\\试压包资料" + DateTime.Now.GetHashCode() + ".zip"; foreach (var item in printFiles) { var sourceFile = item.Key; var destFile = startPath + "\\" + item.Value; zipName += item.Value.Replace(".pdf", "") + ","; if (File.Exists(sourceFile)) { File.Copy(sourceFile, destFile, true); File.Delete(sourceFile); } } zipName = zipName.TrimEnd(','); System.IO.Compression.ZipFile.CreateFromDirectory(startPath, zipPath); FileInfo info = new FileInfo(zipPath); long fileSize = info.Length; System.Web.HttpContext.Current.Response.Clear(); System.Web.HttpContext.Current.Response.ContentType = "application/x-zip-compressed"; System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(zipName + ".zip", System.Text.Encoding.UTF8)); System.Web.HttpContext.Current.Response.AddHeader("Content-Length", fileSize.ToString()); System.Web.HttpContext.Current.Response.TransmitFile(zipPath, 0, fileSize); System.Web.HttpContext.Current.Response.Flush(); System.Web.HttpContext.Current.Response.Close(); Funs.DeleteDir(startPath); File.Delete(zipPath); } else { FileInfo info = new FileInfo(printFiles.FirstOrDefault().Key); long fileSize = info.Length; System.Web.HttpContext.Current.Response.Clear(); System.Web.HttpContext.Current.Response.ContentType = "application/x-zip-compressed"; System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(printFiles.FirstOrDefault().Value, System.Text.Encoding.UTF8)); System.Web.HttpContext.Current.Response.AddHeader("Content-Length", fileSize.ToString()); System.Web.HttpContext.Current.Response.TransmitFile(printFiles.FirstOrDefault().Key, 0, fileSize); System.Web.HttpContext.Current.Response.Flush(); System.Web.HttpContext.Current.Response.Close(); } } protected void Grid1_RowCommand(object sender, GridCommandEventArgs e) { if (e.CommandName == "typePrint") { object[] keys = Grid1.DataKeys[e.RowIndex]; PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("TestPackageDatePrint.aspx?PTP_ID={0}", keys[0], "编辑 - "))); } } protected Dictionary exportWord(string ptp_id) { var keyValuePairs = new Dictionary(); if (string.IsNullOrEmpty(ptp_id)) { Alert.ShowInTop("请选择要打印的单据!", MessageBoxIcon.Warning); return null; } //修改试压包打印状态 var updateTestPackage = Funs.DB.PTP_TestPackage.FirstOrDefault(x => x.PTP_ID == ptp_id); string exportName = updateTestPackage?.TestPackageNo; //导出文件名称 if (updateTestPackage != null) { if (updateTestPackage.PrintState.HasValue && updateTestPackage.PrintState > 0) { updateTestPackage.PrintState = updateTestPackage.PrintState + 1; } else { updateTestPackage.PrintState = 1; } BLL.TestPackageEditService.UpdateTestPackagePrintState(updateTestPackage); string rootPath = Server.MapPath("~/"); BLL.FastReportService.ResetData(); if (this.drpPrintType.SelectedValue == "1")//pdf格式 { exportName += ".pdf"; ListItem[] list = new ListItem[10]; list[0] = new ListItem("0", "File\\Fastreport\\JGZL\\管道试压包文件资料.frx"); list[1] = new ListItem("1", "File\\Fastreport\\JGZL\\管道压力试验技术要求.frx"); list[2] = new ListItem("2", "File\\Fastreport\\JGZL\\管道压力包文件资料目录.frx"); list[3] = new ListItem("3", "File\\Fastreport\\JGZL\\管道系统压力试验条件确认记录.frx"); list[4] = new ListItem("4", "File\\Fastreport\\JGZL\\管道试压包尾项清单.frx"); list[5] = new ListItem("5", "File\\Fastreport\\JGZL\\管道系统压力试验记录.frx"); list[6] = new ListItem("6", "File\\Fastreport\\JGZL\\管道材料材质标识检查记录.frx"); list[7] = new ListItem("7", "File\\Fastreport\\JGZL\\管道焊接工作记录.frx"); list[8] = new ListItem("8", "File\\Fastreport\\JGZL\\管道无损检测数量统计表.frx"); list[9] = new ListItem("9", "File\\Fastreport\\JGZL\\无损检测结果汇总表.frx"); List FastReportItemList = new List(); foreach (var item in list) { FastReportItemList.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } string Path = Funs.RootPath + "FileUpload/" + ptp_id + ".pdf"; BLL.FastReportService.ExportMergeReport(FastReportItemList, Path, this.drpPrintType.SelectedValue); keyValuePairs.Add(Path, exportName); /* FileInfo info = new FileInfo(Path); long fileSize = info.Length; System.Web.HttpContext.Current.Response.Clear(); System.Web.HttpContext.Current.Response.ClearHeaders(); System.Web.HttpContext.Current.Response.ContentType = "application/x-zip-compressed"; System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(exportName + ".pdf", System.Text.Encoding.UTF8)); System.Web.HttpContext.Current.Response.AddHeader("Content-Length", fileSize.ToString()); System.Web.HttpContext.Current.Response.TransmitFile(Path, 0, fileSize); System.Web.HttpContext.Current.Response.Flush(); System.Web.HttpContext.Current.Response.Close(); File.Delete(Path);*/ } else if (this.drpPrintType.SelectedValue == "2")//word格式 { exportName += ".docx"; ListItem[] list = new ListItem[3]; list[0] = new ListItem("0", "File\\Fastreport\\JGZL\\管道试压包文件资料.frx"); list[1] = new ListItem("1", "File\\Fastreport\\JGZL\\管道压力试验技术要求.frx"); list[2] = new ListItem("2", "File\\Fastreport\\JGZL\\管道压力包文件资料目录.frx"); List FastReportItemList = new List(); foreach (var item in list) { FastReportItemList.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } var PathA = Funs.RootPath + "FileUpload/" + ptp_id + ".docx"; BLL.FastReportService.ExportMergeReport(FastReportItemList, PathA, this.drpPrintType.SelectedValue); Aspose.Words.Document doc1 = new Aspose.Words.Document(PathA); ListItem[] list2 = new ListItem[1]; list2[0] = new ListItem("3", "File\\Fastreport\\JGZL\\管道系统压力试验条件确认记录.frx"); List FastReportItemList2 = new List(); foreach (var item in list2) { FastReportItemList2.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } var PathB = Funs.RootPath + "FileUpload/" + ptp_id + "2.docx"; BLL.FastReportService.ExportMergeReport(FastReportItemList2, PathB, this.drpPrintType.SelectedValue); Aspose.Words.Document doc2 = new Aspose.Words.Document(PathB); // 合并 Word DOcx 文档 doc1.AppendDocument(doc2, Aspose.Words.ImportFormatMode.KeepSourceFormatting); ListItem[] list3 = new ListItem[1]; list3[0] = new ListItem("4", "File\\Fastreport\\JGZL\\管道试压包尾项清单.frx"); List FastReportItemList3 = new List(); foreach (var item in list3) { FastReportItemList3.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } var PathC = Funs.RootPath + "FileUpload/" + ptp_id + "3.docx"; BLL.FastReportService.ExportMergeReport(FastReportItemList3, PathC, this.drpPrintType.SelectedValue); Aspose.Words.Document doc3 = new Aspose.Words.Document(PathC); // 合并 Word DOcx 文档 doc1.AppendDocument(doc3, Aspose.Words.ImportFormatMode.KeepSourceFormatting); ListItem[] list4 = new ListItem[2]; list4[0] = new ListItem("5", "File\\Fastreport\\JGZL\\管道系统压力试验记录.frx"); list4[1] = new ListItem("6", "File\\Fastreport\\JGZL\\管道材料材质标识检查记录.frx"); List FastReportItemList4 = new List(); foreach (var item in list4) { FastReportItemList4.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } var PathD = Funs.RootPath + "FileUpload/" + ptp_id + "4.docx"; BLL.FastReportService.ExportMergeReport(FastReportItemList4, PathD, this.drpPrintType.SelectedValue); Aspose.Words.Document doc4 = new Aspose.Words.Document(PathD); // 合并 Word DOcx 文档 doc1.AppendDocument(doc4, Aspose.Words.ImportFormatMode.KeepSourceFormatting); ListItem[] list5 = new ListItem[3]; list5[0] = new ListItem("7", "File\\Fastreport\\JGZL\\管道焊接工作记录.frx"); list5[1] = new ListItem("8", "File\\Fastreport\\JGZL\\管道无损检测数量统计表.frx"); list5[2] = new ListItem("9", "File\\Fastreport\\JGZL\\无损检测结果汇总表.frx"); List FastReportItemList5 = new List(); foreach (var item in list5) { FastReportItemList5.Add(TestPackagePrintService.GetFastReportItem(updateTestPackage, item.Text, ptp_id, this.CurrUser.LoginProjectId)); } var PathE = Funs.RootPath + "FileUpload/" + ptp_id + "5.docx"; BLL.FastReportService.ExportMergeReport(FastReportItemList5, PathE, this.drpPrintType.SelectedValue); Aspose.Words.Document doc5 = new Aspose.Words.Document(PathE); // 合并 Word DOcx 文档 doc1.AppendDocument(doc5, Aspose.Words.ImportFormatMode.KeepSourceFormatting); //将合并的文档保存为 DOCX 文件 var Path = Funs.RootPath + "FileUpload/" + ptp_id + "Result.docx"; doc1.Save(Path); keyValuePairs.Add(Path, exportName); /* FileInfo info = new FileInfo(Path); long fileSize = info.Length; System.Web.HttpContext.Current.Response.Clear(); System.Web.HttpContext.Current.Response.ContentType = "application/x-zip-compressed"; System.Web.HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(exportName + ".docx", System.Text.Encoding.UTF8)); System.Web.HttpContext.Current.Response.AddHeader("Content-Length", fileSize.ToString()); System.Web.HttpContext.Current.Response.TransmitFile(Path, 0, fileSize); System.Web.HttpContext.Current.Response.Flush(); System.Web.HttpContext.Current.Response.Close();*/ //File.Delete(Path); File.Delete(PathA); File.Delete(PathB); File.Delete(PathC); File.Delete(PathD); File.Delete(PathE); } } return keyValuePairs; } #endregion #region 格式化字符串 protected string getMaterialCodeByPipelineId(string pipelineId) { string materialCode = string.Empty; if (!string.IsNullOrEmpty(pipelineId)) { var weldjoint = (from x in Funs.DB.HJGL_WeldJoint join y in Funs.DB.Base_Material on x.Material1Id equals y.MaterialId join z in Funs.DB.Base_Material on x.Material2Id equals z.MaterialId where x.PipelineId == pipelineId select new { MaterialCode1 = y.MaterialCode, MaterialCode2 = z.MaterialCode }).FirstOrDefault(); if (weldjoint != null) { if (!string.IsNullOrEmpty(weldjoint.MaterialCode1) && !string.IsNullOrEmpty(weldjoint.MaterialCode2)) { materialCode = weldjoint.MaterialCode1 + "/" + weldjoint.MaterialCode2; } else { if (!string.IsNullOrEmpty(weldjoint.MaterialCode1)) { materialCode = weldjoint.MaterialCode1; } else { materialCode = weldjoint.MaterialCode2; } } } } return materialCode; } protected string getSpecificationByPipelineId(string pipelineId) { string spcificaation = string.Empty; if (!string.IsNullOrEmpty(pipelineId)) { var weldjoint = (from x in Funs.DB.HJGL_WeldJoint where x.PipelineId == pipelineId select x).FirstOrDefault(); if (weldjoint != null) { spcificaation = weldjoint.Specification; } } return spcificaation; } #endregion #region 搜索 /// /// 查询 /// /// /// protected void txtTestPackageNo_TextChanged(object sender, EventArgs e) { BindGrid(); } #endregion } }