102 lines
4.0 KiB
C#
102 lines
4.0 KiB
C#
using BLL;
|
|
using System;
|
|
|
|
namespace FineUIPro.Web.HSSE.CostGoods
|
|
{
|
|
public partial class GoodsManageView : PageBase
|
|
{
|
|
#region 定义项
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
private string GoodsManageId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["GoodsManageId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["GoodsManageId"] = value;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
this.btnClose.OnClientClick = ActiveWindow.GetHideReference();
|
|
this.GoodsManageId = Request.Params["GoodsManageId"];
|
|
if (!string.IsNullOrEmpty(this.GoodsManageId))
|
|
{
|
|
Model.CostGoods_GoodsManage goodsManage = BLL.GoodsManageService.GetGoodsManageById(this.GoodsManageId);
|
|
if (goodsManage != null)
|
|
{
|
|
this.txtGoodsCode.Text = CodeRecordsService.ReturnCodeByDataId(this.GoodsManageId);
|
|
this.txtGoodsName.Text = goodsManage.GoodsName;
|
|
if (!string.IsNullOrEmpty(goodsManage.UnitId))
|
|
{
|
|
var unit = BLL.UnitService.GetUnitByUnitId(goodsManage.UnitId);
|
|
if (unit != null)
|
|
{
|
|
this.txtUnitName.Text = unit.UnitName;
|
|
}
|
|
}
|
|
var goodsCategory = BLL.GoodsCategoryService.GetGoodsCategoryById(goodsManage.GoodsCategoryId);
|
|
if (goodsCategory != null)
|
|
{
|
|
this.txtGoodsCategory.Text = goodsCategory.GoodsCategoryName;
|
|
}
|
|
|
|
this.txtSizeModel.Text = goodsManage.SizeModel;
|
|
this.txtFactoryCode.Text = goodsManage.FactoryCode;
|
|
if (goodsManage.CheckDate.HasValue)
|
|
{
|
|
this.txtCheckDate.Text = string.Format("{0:yyyy-MM-dd}", goodsManage.CheckDate);
|
|
}
|
|
this.txtEnableYear.Text = Convert.ToString(goodsManage.EnableYear);
|
|
if (!string.IsNullOrEmpty(goodsManage.CheckPerson))
|
|
{
|
|
var user = BLL.UserService.GetUserByUserId(goodsManage.CheckPerson);
|
|
if (user != null)
|
|
{
|
|
this.txtCheckPersonName.Text = user.UserName;
|
|
}
|
|
}
|
|
if (goodsManage.InTime != null)
|
|
{
|
|
this.txtInTime.Text = string.Format("{0:yyyy-MM-dd}", goodsManage.InTime);
|
|
}
|
|
this.txtRemark.Text = goodsManage.Remark;
|
|
}
|
|
}
|
|
///初始化审核菜单
|
|
this.ctlAuditFlow.MenuId = BLL.Const.GoodsManageMenuId;
|
|
this.ctlAuditFlow.DataId = this.GoodsManageId;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 附件上传
|
|
/// <summary>
|
|
/// 上传附件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnAttachUrl_Click(object sender, EventArgs e)
|
|
{
|
|
if (!string.IsNullOrEmpty(this.GoodsManageId))
|
|
{
|
|
PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("~/AttachFile/webuploader.aspx?toKeyId={0}&path=FileUpload/GoodsManageAttachUrl&menuId={1}", GoodsManageId, BLL.Const.GoodsManageMenuId)));
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
} |