171 lines
4.9 KiB
C#
171 lines
4.9 KiB
C#
using BLL;
|
|
using FineUIPro.Web.PHTGL.BiddingManagement;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.SqlClient;
|
|
using System.Linq;
|
|
|
|
namespace FineUIPro.Web.PHTGL.Filing
|
|
{
|
|
public partial class Files : PageBase
|
|
{
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
|
|
GetButtonPower();
|
|
BindGrid();
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region 数据绑定
|
|
/// <summary>
|
|
/// 数据绑定
|
|
/// </summary>
|
|
private void BindGrid()
|
|
{
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 分页 排序
|
|
/// <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 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_Sort(object sender, FineUIPro.GridSortEventArgs e)
|
|
{
|
|
BindGrid();
|
|
}
|
|
|
|
protected void Grid1_RowCommand(object sender, GridCommandEventArgs e)
|
|
{
|
|
//object[] keys = Grid1.DataKeys[e.RowIndex];
|
|
//string fileId = string.Empty;
|
|
//if (keys == null)
|
|
//{
|
|
// return;
|
|
//}
|
|
//else
|
|
//{
|
|
// fileId = keys[0].ToString();
|
|
//}
|
|
//if (e.CommandName == "export")
|
|
//{
|
|
// ActionPlanFormation actionPlanFormation = new ActionPlanFormation();
|
|
// var Act = BLL.PHTGL_ActionPlanReviewService.GetPHTGL_ActionPlanReviewById(fileId);
|
|
// actionPlanFormation.Print(Act.ActionPlanID);
|
|
// return;
|
|
//}
|
|
//if (e.CommandName == "download")
|
|
//{
|
|
// PageContext.RegisterStartupScript(Windowtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/ActionPlanAttachUrl&menuId={1}", fileId, BLL.Const.ActionPlanReview)));
|
|
// return;
|
|
//}
|
|
}
|
|
#endregion
|
|
|
|
|
|
|
|
#region 查询 重置
|
|
/// <summary>
|
|
/// 查询按钮
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSearch_Click(object sender, EventArgs e)
|
|
{
|
|
BindGrid();
|
|
}
|
|
|
|
protected void btnRset_Click(object sender, EventArgs e)
|
|
{
|
|
txtActionPlanCode.Text = "";
|
|
BindGrid();
|
|
}
|
|
|
|
#endregion
|
|
|
|
|
|
#region 获取按钮权限
|
|
/// <summary>
|
|
/// 获取按钮权限
|
|
/// </summary>
|
|
/// <param name="button"></param>
|
|
/// <returns></returns>
|
|
private void GetButtonPower()
|
|
{
|
|
if (Request.Params["value"] == "0")
|
|
{
|
|
return;
|
|
}
|
|
var buttonList = CommonService.GetAllButtonList(CurrUser.LoginProjectId, CurrUser.PersonId, Const.ActionPlanReview);
|
|
if (buttonList.Count() > 0)
|
|
{
|
|
if (buttonList.Contains(Const.BtnAdd))
|
|
{
|
|
}
|
|
|
|
if (buttonList.Contains(Const.BtnDelete))
|
|
{
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 打印
|
|
protected void btnPrinter_Click(object sender, EventArgs e)
|
|
{
|
|
//if (Grid1.SelectedRowIndexArray.Length == 0)
|
|
//{
|
|
// Alert.ShowInTop("请至少选择一条记录!", MessageBoxIcon.Warning);
|
|
// return;
|
|
//}
|
|
//string Id = Grid1.SelectedRowID;
|
|
//var Act = PHTGL_ActionPlanReviewService.GetPHTGL_ActionPlanReviewById(Id);
|
|
//if (Act == null)
|
|
//{
|
|
// Alert.ShowInTop("还未创建审批流无法导出!", MessageBoxIcon.Warning);
|
|
// return;
|
|
//}
|
|
//string ActionPlanID = Act.ActionPlanID;
|
|
//ActionPlanFormation actionPlanFormation = new ActionPlanFormation();
|
|
//actionPlanFormation.Print(ActionPlanID);
|
|
}
|
|
#endregion
|
|
|
|
|
|
}
|
|
} |