CNCEC_SUBQHSE_WUHUAN/SGGL/FineUIPro.Web/JDGL/Check/QuantityListView.aspx.cs

56 lines
1.8 KiB
C#
Raw Normal View History

2021-04-30 10:28:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUIPro.Web.JDGL.Check
{
public partial class QuantityListView : PageBase
{
/// <summary>
/// 项目id
/// </summary>
public string ProjectId
{
get
{
return (string)ViewState["ProjectId"];
}
set
{
ViewState["ProjectId"] = value;
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
2021-05-20 17:16:01 +08:00
//BLL.CNProfessionalService.InitCNProfessionalDownList(this.drpCNProfessionalId, true);
2021-04-30 10:28:37 +08:00
string QuantityListId = Request.Params["QuantityListId"];
if (!string.IsNullOrEmpty(QuantityListId))
{
Model.JDGL_QuantityList QuantityList = BLL.QuantityListService.GetQuantityListById(QuantityListId);
if (QuantityList != null)
{
this.ProjectId = QuantityList.ProjectId;
this.txtName.Text = QuantityList.Name;
2021-05-20 17:16:01 +08:00
//if (!string.IsNullOrEmpty(QuantityList.CNProfessionalId))
//{
// this.drpCNProfessionalId.SelectedValue = QuantityList.CNProfessionalId;
//}
2021-04-30 10:28:37 +08:00
this.txtUnit.Text = QuantityList.Unit;
if (QuantityList.DesignNum != null)
{
this.txtDesignNum.Text = QuantityList.DesignNum.ToString();
}
}
}
}
}
}
}