CNCEC_SUBQHSE_WUHUAN/SGGL/FineUIPro.Web/Transfer/PunchlistFrom.aspx.cs

626 lines
27 KiB
C#
Raw Normal View History

2024-01-26 16:50:18 +08:00
using BLL;
2024-07-29 17:25:07 +08:00
using BLL.Common;
2024-01-26 16:50:18 +08:00
using BLL.CQMS.Comprehensive;
2024-07-29 18:05:22 +08:00
using FineUIPro.Web.AttachFile;
2024-07-29 17:25:07 +08:00
using NPOI.SS.Formula.Functions;
using NPOI.SS.UserModel;
2024-07-29 18:05:22 +08:00
using NPOI.XSSF.Streaming.Values;
2024-07-29 17:25:07 +08:00
using NPOI.XSSF.UserModel;
2024-01-26 16:50:18 +08:00
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
2024-07-29 17:25:07 +08:00
using System.Drawing.Imaging;
using System.IO;
2024-01-26 16:50:18 +08:00
using System.Linq;
2024-07-29 18:05:22 +08:00
using System.Web.Services.Description;
2024-07-29 17:25:07 +08:00
using static System.Windows.Forms.VisualStyles.VisualStyleElement.StartPanel;
2024-01-26 16:50:18 +08:00
namespace FineUIPro.Web.Transfer
{
public partial class PunchlistFrom : PageBase
{
#region
/// <summary>
/// 加载页面
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
GetButtonPower();
BindGrid();
2024-07-29 17:25:07 +08:00
this.btnNew.OnClientClick = Window1.GetShowReference("PunchlistFromEdit.aspx") + "return false;";
2024-01-26 16:50:18 +08:00
}
}
2024-07-29 17:25:07 +08:00
public DataTable DataSql()
2024-01-26 16:50:18 +08:00
{
2024-07-24 14:53:46 +08:00
string strSql = @"select *
,(CASE isnull(IsEng,0) WHEN 1 THEN 'Y' ELSE 'N' END) IsEngStr
2024-07-27 17:34:57 +08:00
,IsMatI IsMatIStr
2024-07-24 14:53:46 +08:00
from Transfer_PunchlistFrom
2024-01-26 16:50:18 +08:00
where ProjectId = @ProjectId";
List<SqlParameter> listStr = new List<SqlParameter>();
listStr.Add(new SqlParameter("@ProjectId", this.CurrUser.LoginProjectId));
2024-07-29 17:25:07 +08:00
if (!string.IsNullOrEmpty(this.txtRaised_By.Text.Trim()))
2024-01-26 16:50:18 +08:00
{
2024-07-29 17:25:07 +08:00
strSql += " AND Raised_By = @Raised_By";
listStr.Add(new SqlParameter("@Raised_By", this.txtRaised_By.Text.Trim()));
2024-01-26 16:50:18 +08:00
}
2024-07-24 14:53:46 +08:00
if (!string.IsNullOrEmpty(this.txtSystem_No.Text.Trim()))
2024-02-01 16:50:35 +08:00
{
2024-07-24 14:53:46 +08:00
strSql += " AND System_No like @System_No";
listStr.Add(new SqlParameter("@System_No", "%" + this.txtSystem_No.Text.Trim() + "%"));
2024-02-01 16:50:35 +08:00
}
2024-07-24 14:53:46 +08:00
if (!string.IsNullOrEmpty(this.txtSub_Sys_No.Text.Trim()))
2024-02-01 16:50:35 +08:00
{
2024-07-24 14:53:46 +08:00
strSql += " AND Sub_Sys_No like @Sub_Sys_No";
listStr.Add(new SqlParameter("@Sub_Sys_No", "%" + this.txtSub_Sys_No.Text.Trim() + "%"));
2024-02-01 16:50:35 +08:00
}
//if (!string.IsNullOrEmpty(txtStartDate_Raised.Text.Trim()))
//{
// strSql += " AND Date_Raised >= @StartDate_Raised";
// listStr.Add(new SqlParameter("@StartDate_Raised", Funs.GetNewDateTime(txtStartDate_Raised.Text.Trim())));
//}
//if (!string.IsNullOrEmpty(txtEndDate_Raised.Text.Trim()))
//{
// strSql += " AND Date_Raised <= @EndDate_Raised";
// listStr.Add(new SqlParameter("@EndDate_Raised", Funs.GetNewDateTime(txtEndDate_Raised.Text.Trim())));
//}
//if (!string.IsNullOrEmpty(txtStartRequired_Date.Text.Trim()))
//{
// strSql += " AND Required_Date >= @StartRequired_Date";
// listStr.Add(new SqlParameter("@StartRequired_Date", Funs.GetNewDateTime(txtStartRequired_Date.Text.Trim())));
//}
//if (!string.IsNullOrEmpty(txtEndRequired_Date.Text.Trim()))
//{
// strSql += " AND Required_Date <= @EndRequired_Date";
// listStr.Add(new SqlParameter("@EndRequired_Date", Funs.GetNewDateTime(txtEndRequired_Date.Text.Trim())));
//}
//if (!string.IsNullOrEmpty(txtStartActual_Date.Text.Trim()))
//{
// strSql += " AND Actual_Date >= @StartActual_Date";
// listStr.Add(new SqlParameter("@StartActual_Date", Funs.GetNewDateTime(txtStartActual_Date.Text.Trim())));
//}
//if (!string.IsNullOrEmpty(txtEndActual_Date.Text.Trim()))
//{
// strSql += " AND Actual_Date <= @EndActual_Date";
// listStr.Add(new SqlParameter("@EndActual_Date", Funs.GetNewDateTime(txtEndActual_Date.Text.Trim())));
//}
2024-07-25 14:19:34 +08:00
if (!string.IsNullOrEmpty(txtDisc.Text.Trim()))
{
strSql += " AND Disc = @Disc";
listStr.Add(new SqlParameter("@Disc", txtDisc.Text.Trim()));
}
if (!string.IsNullOrEmpty(ddlEng.SelectedValue.Trim()))
{
strSql += " AND IsEng = @IsEng";
listStr.Add(new SqlParameter("@IsEng", ddlEng.SelectedValue.Trim() == "Y" ? 1 : 0));
}
if (!string.IsNullOrEmpty(ddlMatI.SelectedValue.Trim()))
{
strSql += " AND IsMatI = @IsMatI";
2024-07-29 17:25:07 +08:00
listStr.Add(new SqlParameter("@IsMatI", ddlMatI.SelectedValue.Trim()));
2024-07-25 14:19:34 +08:00
}
if (!string.IsNullOrEmpty(ddlPunchType.SelectedValue.Trim()))
{
strSql += " AND Punch_Type = @Punch_Type";
listStr.Add(new SqlParameter("@Punch_Type", ddlPunchType.SelectedValue.Trim()));
}
2024-07-29 17:25:07 +08:00
if (!string.IsNullOrEmpty(ddlCat.SelectedValue.Trim()))
{
strSql += " AND Cat = @Cat";
listStr.Add(new SqlParameter("@Cat", ddlCat.SelectedValue.Trim()));
}
2025-02-05 15:08:06 +08:00
if (!string.IsNullOrEmpty(txtAction_By.Text.Trim()))
{
strSql += " AND Action_By = @Action_By";
listStr.Add(new SqlParameter("@Action_By", txtAction_By.Text.Trim()));
}
2024-07-29 17:25:07 +08:00
if (!string.IsNullOrEmpty(txtPIC.Text.Trim()))
{
strSql += " AND PIC = @PIC";
listStr.Add(new SqlParameter("@PIC", txtPIC.Text.Trim()));
}
if (!string.IsNullOrEmpty(txtPIC_WUH.Text.Trim()))
{
strSql += " AND PIC_WUH = @PIC_WUH";
listStr.Add(new SqlParameter("@PIC_WUH", txtPIC_WUH.Text.Trim()));
}
if (!string.IsNullOrEmpty(ddlStatus.SelectedValue.Trim()))
{
strSql += " AND Status = @Status";
listStr.Add(new SqlParameter("@Status", ddlStatus.SelectedValue.Trim()));
}
2024-07-24 14:53:46 +08:00
strSql += " order by Num_No ";
2024-01-26 16:50:18 +08:00
SqlParameter[] parameter = listStr.ToArray();
2024-07-29 17:25:07 +08:00
return SQLHelper.GetDataTableRunText(strSql, parameter);
}
/// <summary>
/// 数据绑定
/// </summary>
public void BindGrid()
{
DataTable tb = DataSql();
2024-01-26 16:50:18 +08:00
Grid1.RecordCount = tb.Rows.Count;
var table = this.GetPagedDataTable(Grid1, tb);
Grid1.DataSource = table;
Grid1.DataBind();
}
#endregion
#region
/// <summary>
/// 分页下拉
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
{
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
BindGrid();
}
/// <summary>
/// 分页索引事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
{
BindGrid();
}
/// <summary>
/// 排序
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
{
Grid1.SortDirection = e.SortDirection;
Grid1.SortField = e.SortField;
BindGrid();
}
#endregion
#region
/// <summary>
/// 查询
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnSearch_Click(object sender, EventArgs e)
{
BindGrid();
}
#endregion
#region
/// <summary>
/// 关闭弹出窗口
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Window1_Close(object sender, WindowCloseEventArgs e)
{
BindGrid();
}
2024-07-30 11:40:11 +08:00
protected void WindowAtt_Close(object sender, WindowCloseEventArgs e)
{
BindGrid();
}
2024-01-26 16:50:18 +08:00
#endregion
#region
/// <summary>
/// 右键删除
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnMenuDel_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length > 0)
{
foreach (int rowIndex in Grid1.SelectedRowIndexArray)
{
string rowID = Grid1.DataKeys[rowIndex][0].ToString();
Model.Transfer_PunchlistFrom model = Funs.DB.Transfer_PunchlistFrom.FirstOrDefault(x => x.Id == rowID);
if (model != null)
{
Funs.DB.Transfer_PunchlistFrom.DeleteOnSubmit(model);
Funs.DB.SubmitChanges();
}
}
BindGrid();
ShowNotify("删除数据成功!", MessageBoxIcon.Success);
}
}
#endregion
2024-07-24 14:53:46 +08:00
#region Photoes附件
/// <summary>
/// 右键附件上传功能
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnMenuAttachA_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length > 0)
{
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../AttachFile/webuploader.aspx?type=0&toKeyId={0}_A&path=FileUpload/Transfer/PunchlistFrom&menuId={1}", Grid1.SelectedRowID, BLL.Const.PunchlistFromMenuId)));
}
}
#endregion
#region Corrected_Photos附件
/// <summary>
/// 右键附件上传功能
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnMenuAttachB_Click(object sender, EventArgs e)
{
if (Grid1.SelectedRowIndexArray.Length > 0)
{
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../AttachFile/webuploader.aspx?type=0&toKeyId={0}_B&path=FileUpload/Transfer/PunchlistFrom&menuId={1}", Grid1.SelectedRowID, BLL.Const.PunchlistFromMenuId)));
}
}
#endregion
/// <summary>
/// 获取附件(放于Img中)
/// </summary>
/// <param name="Id_type"></param>
/// <returns></returns>
protected string ConvertImageUrlByImage(object Id_type)
{
string url = string.Empty;
if (Id_type != null)
{
var registration = BLL.AttachFileService.GetAttachFile(Id_type.ToString(), BLL.Const.PunchlistFromMenuId);
if (registration != null)
{
url = BLL.UploadAttachmentService.ShowImage("../../", registration.AttachUrl);
}
}
return url;
}
2024-01-26 16:50:18 +08:00
#region
/// <summary>
/// 导入按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnImport_Click(object sender, EventArgs e)
{
PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("PunchlistFromDataIn.aspx", "导入 - ")));
}
#endregion
2024-11-18 15:14:57 +08:00
#region
///// <summary>
///// 导出
///// </summary>
///// <param name="sender"></param>
///// <param name="e"></param>
//protected void btnOut_Click(object sender, EventArgs e)
//{
// Response.ClearContent();
// string filename = Funs.GetNewFileName();
// Response.AddHeader("content-disposition", "attachment; filename=" + System.Web.HttpUtility.UrlEncode("尾项" + filename, System.Text.Encoding.UTF8) + ".xls");
// Response.ContentType = "application/excel";
// Response.ContentEncoding = System.Text.Encoding.UTF8;
// this.Grid1.PageSize = 100000;
// this.BindGrid();
// Response.Write(GetGridMultiHeaderTableHtml(Grid1));
// //Response.Write(GetGridTableHtml(Grid1));
// Response.End();
//}
#endregion
#region
/// <summary>
/// 清空数据
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnClear_Click(object sender, EventArgs e)
{
var ProjectId = this.CurrUser.LoginProjectId;
if (!string.IsNullOrWhiteSpace(ProjectId))
{
string strSql = $"delete from Transfer_PunchlistFrom where ProjectId = '{ProjectId}';";
BLL.SQLHelper.ExecutSql(strSql);
BindGrid();
}
}
#endregion
2024-01-26 16:50:18 +08:00
#region
/// <summary>
/// 获取按钮权限
/// </summary>
/// <param name="button"></param>
/// <returns></returns>
private void GetButtonPower()
{
if (Request.Params["value"] == "0")
{
return;
}
var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.PunchlistFromMenuId);
if (buttonList.Count() > 0)
{
if (buttonList.Contains(BLL.Const.BtnAdd))
{
2024-07-29 17:25:07 +08:00
this.btnNew.Hidden = false;
2024-07-25 14:19:34 +08:00
btnMenuAttachA.Hidden = false;
2024-07-24 14:53:46 +08:00
btnMenuAttachB.Hidden = false;
2024-01-26 16:50:18 +08:00
}
if (buttonList.Contains(BLL.Const.BtnModify))
{
2024-07-29 17:25:07 +08:00
this.btnMenuModify.Hidden = false;
2024-01-26 16:50:18 +08:00
this.Grid1.EnableRowDoubleClickEvent = true;
2024-07-24 14:53:46 +08:00
btnMenuAttachA.Hidden = false;
btnMenuAttachB.Hidden = false;
2024-01-26 16:50:18 +08:00
}
else
{
this.Grid1.EnableRowDoubleClickEvent = false;
}
if (buttonList.Contains(BLL.Const.BtnDelete))
{
this.btnMenuDel.Hidden = false;
2024-11-18 15:14:57 +08:00
this.btnClear.Hidden = false;
2024-01-26 16:50:18 +08:00
}
if (buttonList.Contains(BLL.Const.BtnSave))
{
this.btnImport.Hidden = false;
}
}
}
#endregion
2024-02-04 14:26:05 +08:00
2024-07-29 17:25:07 +08:00
#region
2024-02-04 14:26:05 +08:00
/// <summary>
2024-07-29 17:25:07 +08:00
/// 右键编辑事件
2024-02-04 14:26:05 +08:00
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2024-07-29 17:25:07 +08:00
protected void btnMenuModify_Click(object sender, EventArgs e)
2024-02-04 14:26:05 +08:00
{
2024-07-29 17:25:07 +08:00
if (Grid1.SelectedRowIndexArray.Length == 0)
2024-02-04 14:26:05 +08:00
{
2024-07-29 17:25:07 +08:00
Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
return;
2024-02-04 14:26:05 +08:00
}
2024-07-29 17:25:07 +08:00
string id = Grid1.SelectedRowID;
var accidentPersonRecord = Funs.DB.Transfer_PunchlistFrom.FirstOrDefault(p => p.Id == id);
if (accidentPersonRecord == null)
2024-02-04 14:26:05 +08:00
{
2024-07-29 17:25:07 +08:00
Alert.ShowInTop("修改的数据已经不存在,请检查!", MessageBoxIcon.Warning);
return;
2024-02-04 14:26:05 +08:00
}
2024-07-29 17:25:07 +08:00
PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("PunchlistFromEdit.aspx?Id={0}", id, "编辑 - ")));
2024-02-04 14:26:05 +08:00
}
#endregion
2024-07-29 17:25:07 +08:00
/// 导出按钮
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnOut_Click(object sender, EventArgs e)
{
string rootPath = Server.MapPath("~/");
string initTemplatePath = string.Empty;
string uploadfilepath = string.Empty;
string newUrl = string.Empty;
string filePath = string.Empty;
initTemplatePath = "File\\Excel\\DataOut\\PunchlistFrom导出模板.xlsx";
uploadfilepath = rootPath + initTemplatePath;
DataTable tb = DataSql();
if (tb.Rows.Count <= 0)
{
ShowNotify("没有要导出的数据!!!", MessageBoxIcon.Warning);
return;
}
2024-07-29 18:05:22 +08:00
newUrl = uploadfilepath.Replace("导出模板", "导出数据").Replace(".xlsx", DateTime.Now.ToString("yyyyMMddHHmmss") + ".xlsx");
2024-07-29 17:25:07 +08:00
File.Copy(uploadfilepath, newUrl);
NPOI.SS.UserModel.IWorkbook workbook;
using (FileStream stream = new FileStream(newUrl, FileMode.Open, FileAccess.Read))
{
workbook = new NPOI.XSSF.UserModel.XSSFWorkbook(stream);
}
2024-07-29 18:05:22 +08:00
NPOI.SS.UserModel.ICellStyle cellStyleC = workbook.CreateCellStyle();
cellStyleC.BorderTop = NPOI.SS.UserModel.BorderStyle.Thin;
cellStyleC.BorderRight = NPOI.SS.UserModel.BorderStyle.Thin;
cellStyleC.BorderBottom = NPOI.SS.UserModel.BorderStyle.Thin;
cellStyleC.BorderLeft = NPOI.SS.UserModel.BorderStyle.Thin;
cellStyleC.Alignment = NPOI.SS.UserModel.HorizontalAlignment.Center;
cellStyleC.VerticalAlignment = NPOI.SS.UserModel.VerticalAlignment.Center;
cellStyleC.WrapText = true;
2024-07-29 17:25:07 +08:00
NPOI.SS.UserModel.ISheet sheet = workbook.GetSheetAt(0);
//var pcList = Funs.DB.AttachFile.Where(p => p.MenuId == BLL.Const.PunchlistFromMenuId && p.AttachUrl != null && p.AttachUrl != "").ToList();
var pcList = new List<Model.AttachFile>();
if (rbOutType.SelectedValue == "1")
{//导出带图片
pcList = Funs.DB.AttachFile.Where(p => p.MenuId == BLL.Const.PunchlistFromMenuId && p.AttachUrl != null && p.AttachUrl != "").ToList();
}
2024-07-29 17:25:07 +08:00
int i = 2;
foreach (DataRow tbRow in tb.Rows)
{
2024-07-29 18:05:22 +08:00
string Id = tbRow["Id"].ToString();
2024-07-29 17:25:07 +08:00
NPOI.SS.UserModel.IRow row = sheet.CreateRow(i);
NPOI.SS.UserModel.ICell cell;
cell = row.CreateCell(0);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
cell.SetCellValue(tbRow["Num_NO"] == null ? "" : tbRow["Num_NO"].ToString());
2024-07-29 17:25:07 +08:00
cell = row.CreateCell(1);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["System_No"] == null ? "" : tbRow["System_No"].ToString());
cell = row.CreateCell(2);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Sub_Sys_No"] == null ? "" : tbRow["Sub_Sys_No"].ToString());
cell = row.CreateCell(3);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["DESCRIPTION"] == null ? "" : tbRow["DESCRIPTION"].ToString());
2024-07-29 18:05:22 +08:00
//Photoes附件
var photoesUrl = pcList.FirstOrDefault(p => p.ToKeyId == $"{Id}_A");
if (photoesUrl != null && !string.IsNullOrWhiteSpace(photoesUrl.AttachUrl))
{
string[] arrUrl = photoesUrl.AttachUrl.Split(',');
sheet.SetColumnWidth(4, 30 * 256);
row.Height = (short)(90 * 20 * arrUrl.Length);
foreach (string url in arrUrl)
{
var oneUrl = Server.MapPath("~/") + url;
byte[] bytes = System.IO.File.ReadAllBytes(oneUrl);
int pictureIdx = workbook.AddPicture(bytes, PictureType.JPEG);
// 第三步:创建画部
IDrawing patriarch = sheet.CreateDrawingPatriarch();
// 第四步:设置锚点
int rowline = 1; // y方向
// 参数说明在起始单元格的X坐标0-1023Y的坐标0-255在终止单元格的X坐标0-1023Y的坐标0-255起始单元格列数行数终止单元格列数行数
IClientAnchor anchor = patriarch.CreateAnchor(0, 0, 0, 0, 4, i, 5, i + 1);
// 第五步:把图片插到相应的位置+1
IPicture pict = patriarch.CreatePicture(anchor, pictureIdx);
//就取第一张,如果后期想取全部 那把下面这个跳出语句去掉
break;
}
}
2024-07-29 17:25:07 +08:00
cell = row.CreateCell(5);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Cat"] == null ? "" : tbRow["Cat"].ToString());
cell = row.CreateCell(6);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Raised_By"] == null ? "" : tbRow["Raised_By"].ToString());
cell = row.CreateCell(7);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
cell.SetCellValue(tbRow["Date_Raised"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Date_Raised"]).ToString("yyyy-MM-dd"));
2024-07-29 17:25:07 +08:00
cell = row.CreateCell(8);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Disc"] == null ? "" : tbRow["Disc"].ToString());
cell = row.CreateCell(9);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["IsEngStr"] == null ? "" : tbRow["IsEngStr"].ToString());
cell = row.CreateCell(10);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["IsMatIStr"] == null ? "" : tbRow["IsMatIStr"].ToString());
cell = row.CreateCell(11);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Punch_Type"] == null ? "" : tbRow["Punch_Type"].ToString());
cell = row.CreateCell(12);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Required_Date"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Required_Date"]).ToString("yyyy-MM-dd"));
cell = row.CreateCell(13);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Action_By"] == null ? "" : tbRow["Action_By"].ToString());
cell = row.CreateCell(14);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["PIC"] == null ? "" : tbRow["PIC"].ToString());
cell = row.CreateCell(15);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["PIC_WUH"] == null ? "" : tbRow["PIC_WUH"].ToString());
cell = row.CreateCell(16);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Correction_Action"] == null ? "" : tbRow["Correction_Action"].ToString());
2024-07-29 18:05:22 +08:00
//CorrectedPhotos附件
var correctedPhotosUrl = pcList.FirstOrDefault(p => p.ToKeyId == $"{Id}_B");
if (correctedPhotosUrl != null && !string.IsNullOrWhiteSpace(correctedPhotosUrl.AttachUrl))
{
string[] arrUrl = correctedPhotosUrl.AttachUrl.Split(',');
sheet.SetColumnWidth(17, 30 * 256);
row.Height = (short)(90 * 20);
foreach (string url in arrUrl)
{
var oneUrl = Server.MapPath("~/") + url;
byte[] bytes = System.IO.File.ReadAllBytes(oneUrl);
int pictureIdx = workbook.AddPicture(bytes, PictureType.JPEG);
// 第三步:创建画部
IDrawing patriarch = sheet.CreateDrawingPatriarch();
// 第四步:设置锚点
int rowline = 1; // y方向
2024-11-18 15:14:57 +08:00
// 参数说明在起始单元格的X坐标0-1023Y的坐标0-255在终止单元格的X坐标0-1023Y的坐标0-255起始单元格列数行数终止单元格列数行数
2024-07-29 18:05:22 +08:00
IClientAnchor anchor = patriarch.CreateAnchor(0, 0, 0, 0, 17, i, 18, i + 1);
// 第五步:把图片插到相应的位置+1
IPicture pict = patriarch.CreatePicture(anchor, pictureIdx);
//就取第一张,如果后期想取全部 那把下面这个跳出语句去掉
break;
}
}
2024-07-29 17:25:07 +08:00
cell = row.CreateCell(18);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Actual_Date"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Actual_Date"]).ToString("yyyy-MM-dd"));
cell = row.CreateCell(19);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Cleared_By"] == null ? "" : tbRow["Cleared_By"].ToString());
cell = row.CreateCell(20);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Cleared_Date"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Cleared_Date"]).ToString("yyyy-MM-dd"));
cell = row.CreateCell(21);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Confirmed_By"] == null ? "" : tbRow["Confirmed_By"].ToString());
cell = row.CreateCell(22);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Confirmed_Date"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Confirmed_Date"]).ToString("yyyy-MM-dd"));
cell = row.CreateCell(23);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Verified_By"] == null ? "" : tbRow["Verified_By"].ToString());
cell = row.CreateCell(24);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Verified_Date"] == DBNull.Value ? "" : Convert.ToDateTime(tbRow["Verified_Date"]).ToString("yyyy-MM-dd"));
cell = row.CreateCell(25);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Status"] == null ? "" : tbRow["Status"].ToString());
cell = row.CreateCell(26);
2024-07-29 18:05:22 +08:00
cell.CellStyle = cellStyleC;
2024-07-29 17:25:07 +08:00
cell.SetCellValue(tbRow["Remark"] == null ? "" : tbRow["Remark"].ToString());
i++;
}
// 第三步:写入文件流
using (FileStream stream = new FileStream(newUrl, FileMode.Create, FileAccess.Write))
{
workbook.Write(stream);
workbook.Close();
}
string fileName = Path.GetFileName(newUrl);
FileInfo info = new FileInfo(newUrl);
long fileSize = info.Length;
Response.Clear();
Response.ContentType = "application/x-zip-compressed";
Response.AddHeader("Content-Disposition", "attachment;filename=" + System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
Response.AddHeader("Content-Length", fileSize.ToString());
Response.TransmitFile(newUrl, 0, fileSize);
Response.Flush();
Response.Close();
File.Delete(newUrl);
}
2024-01-26 16:50:18 +08:00
}
}