tijian_tieying/web/Web/DocFile/JuanKu.aspx.cs
2025-02-20 12:14:39 +08:00

174 lines
6.5 KiB
C#

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class DocFile_JuanKu : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
ZWL.Common.PublicMethod.CheckSession();
DataBindToGridview();
//设定按钮权限
ImageButton1.Visible = ZWL.Common.PublicMethod.StrIFIn("|122A|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));
ImageButton5.Visible = ZWL.Common.PublicMethod.StrIFIn("|122M|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));
ImageButton3.Visible = ZWL.Common.PublicMethod.StrIFIn("|122D|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));
ImageButton2.Visible = ZWL.Common.PublicMethod.StrIFIn("|122E|", ZWL.Common.PublicMethod.GetSessionValue("QuanXian"));
}
}
#region
protected void ButtonGo_Click(object sender, ImageClickEventArgs e)
{
try
{
if (GoPage.Text.Trim().ToString() == "")
{
Response.Write("<script language='javascript'>alert('页码不可以为空!');</script>");
}
else if (GoPage.Text.Trim().ToString() == "0" || Convert.ToInt32(GoPage.Text.Trim().ToString()) > GVData.PageCount)
{
Response.Write("<script language='javascript'>alert('页码不是一个有效值!');</script>");
}
else if (GoPage.Text.Trim() != "")
{
int PageI = Int32.Parse(GoPage.Text.Trim()) - 1;
if (PageI >= 0 && PageI < (GVData.PageCount))
{
GVData.PageIndex = PageI;
}
}
if (TxtPageSize.Text.Trim().ToString() == "")
{
Response.Write("<script language='javascript'>alert('每页显示行数不可以为空!');</script>");
}
else if (TxtPageSize.Text.Trim().ToString() == "0")
{
Response.Write("<script language='javascript'>alert('每页显示行数不是一个有效值!');</script>");
}
else if (TxtPageSize.Text.Trim() != "")
{
try
{
int MyPageSize = int.Parse(TxtPageSize.Text.ToString().Trim());
this.GVData.PageSize = MyPageSize;
}
catch
{
Response.Write("<script language='javascript'>alert('每页显示行数不是一个有效值!');</script>");
}
}
DataBindToGridview();
}
catch
{
DataBindToGridview();
Response.Write("<script language='javascript'>alert('请输入有效数字!');</script>");
}
}
protected void PagerButtonClick(object sender, ImageClickEventArgs e)
{
//获得Button的参数值
string arg = ((ImageButton)sender).CommandName.ToString();
switch (arg)
{
case ("Next"):
if (this.GVData.PageIndex < (GVData.PageCount - 1))
GVData.PageIndex++;
break;
case ("Pre"):
if (GVData.PageIndex > 0)
GVData.PageIndex--;
break;
case ("Last"):
try
{
GVData.PageIndex = (GVData.PageCount - 1);
}
catch
{
GVData.PageIndex = 0;
}
break;
default:
//本页值
GVData.PageIndex = 0;
break;
}
DataBindToGridview();
}
#endregion
protected void GVData_RowDataBound(object sender, GridViewRowEventArgs e)
{
ZWL.Common.PublicMethod.GridViewRowDataBound(e);
}
protected void ImageButton4_Click(object sender, ImageClickEventArgs e)
{
DataBindToGridview();
}
public void DataBindToGridview()
{
ZWL.BLL.ERPJuanKu MyModel = new ZWL.BLL.ERPJuanKu();
GVData.DataSource = MyModel.GetList("JuanKuName Like '%" + this.TextBox1.Text + "%' and ( ','+CanViewUserList+',' like '%,"+ZWL.Common.PublicMethod.GetSessionValue("UserName")+",%' or UserName='"+ZWL.Common.PublicMethod.GetSessionValue("UserName")+"' ) order by ID desc");
GVData.DataBind();
LabPageSum.Text = Convert.ToString(GVData.PageCount);
LabCurrentPage.Text = Convert.ToString(((int)GVData.PageIndex + 1));
this.GoPage.Text = LabCurrentPage.Text.ToString();
}
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
{
Response.Redirect("JuanKuAdd.aspx");
}
protected void ImageButton3_Click(object sender, ImageClickEventArgs e)
{
string IDlist = ZWL.Common.PublicMethod.CheckCbx(this.GVData, "CheckSelect", "LabVisible");
if (ZWL.DBUtility.DbHelperSQL.ExecuteSQL("delete from ERPJuanKu where ID in (" + IDlist + ")") == -1)
{
Response.Write("<script>alert('删除选中记录时发生错误!请重新登陆后重试!');</script>");
}
else
{
DataBindToGridview();
//写系统日志
ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
MyRiZhi.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName");
MyRiZhi.DoSomething = "用户删除卷库信息";
MyRiZhi.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
MyRiZhi.Add();
}
}
protected void ImageButton2_Click(object sender, ImageClickEventArgs e)
{
string IDList = "0";
for (int i = 0; i < GVData.Rows.Count; i++)
{
Label LabVis = (Label)GVData.Rows[i].FindControl("LabVisible");
IDList = IDList + "," + LabVis.Text.ToString();
}
Hashtable MyTable = new Hashtable();
MyTable.Add("JuanKuName", "卷库名称");
MyTable.Add("JuanKuSerils", "卷库编号");
MyTable.Add("SuoShuBuMen", "所属部门");
MyTable.Add("UserName", "创建人");
MyTable.Add("TimeStr", "创建时间");
ZWL.Common.DataToExcel.GridViewToExcel(ZWL.DBUtility.DbHelperSQL.GetDataSet("select JuanKuName,JuanKuSerils,SuoShuBuMen,UserName,TimeStr from ERPJuanKu where ID in (" + IDList + ") order by ID desc"), MyTable, "Excel报表");
}
protected void ImageButton5_Click(object sender, ImageClickEventArgs e)
{
string CheckStr = ZWL.Common.PublicMethod.CheckCbx(this.GVData, "CheckSelect", "LabVisible");
string[] CheckStrArray = CheckStr.Split(',');
Response.Redirect("JuanKuModify.aspx?ID=" + CheckStrArray[0].ToString());
}
}