138 lines
5.2 KiB
C#
138 lines
5.2 KiB
C#
using BLL;
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace FineUIPro.Web.PublicInfo.BaseInfo
|
|
{
|
|
public partial class MaterialEdit : PageBase
|
|
{
|
|
#region 定义项
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string MaterialId
|
|
{
|
|
get
|
|
{
|
|
return (string)ViewState["MaterialId"];
|
|
}
|
|
set
|
|
{
|
|
ViewState["MaterialId"] = value;
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 加载
|
|
/// <summary>
|
|
/// 加载页面
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
this.txtMaterialCode.Focus();
|
|
btnClose.OnClientClick = ActiveWindow.GetHideReference();
|
|
|
|
this.drpSteelType.DataTextField = "Text";
|
|
this.drpSteelType.DataValueField = "Value";
|
|
this.drpSteelType.DataSource = BLL.DropListService.HJGL_GetSteTypeList();
|
|
this.drpSteelType.DataBind();
|
|
Funs.FineUIPleaseSelect(this.drpSteelType);
|
|
|
|
this.drpMaterialType.DataTextField = "Text";
|
|
this.drpMaterialType.DataValueField = "Value";
|
|
this.drpMaterialType.DataSource = BLL.DropListService.MaterialTypeList();
|
|
this.drpMaterialType.DataBind();
|
|
Funs.FineUIPleaseSelect(this.drpMaterialType);
|
|
|
|
this.MaterialId = Request.Params["MaterialId"];
|
|
if (!string.IsNullOrEmpty(this.MaterialId))
|
|
{
|
|
Model.Base_Material Material = BLL.Base_MaterialService.GetMaterialByMaterialId(this.MaterialId);
|
|
if (Material != null)
|
|
{
|
|
this.txtMaterialCode.Text = Material.MaterialCode;
|
|
//this.txtMaterialType.Text = Material.MaterialType;
|
|
if (!string.IsNullOrEmpty(Material.MaterialType))
|
|
{
|
|
drpMaterialType.SelectedValue = Material.MaterialType;
|
|
}
|
|
this.drpSteelType.SelectedValue = Material.SteelType;
|
|
this.txtMaterialClass.Text = Material.MaterialClass;
|
|
this.txtMaterialGroup.Text = Material.MaterialGroup;
|
|
this.txtRemark.Text = Material.Remark;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#region 类别变化事件
|
|
/// <summary>
|
|
/// 类别变化事件
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void drpMaterialClass_TextChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
#endregion
|
|
|
|
#region 保存
|
|
/// <summary>
|
|
/// 保存按钮
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void btnSave_Click(object sender, EventArgs e)
|
|
{
|
|
var q = Funs.DB.Base_Material.FirstOrDefault(x => x.MaterialCode == this.txtMaterialCode.Text.Trim() && (x.MaterialId != this.MaterialId || (this.MaterialId == null && x.MaterialId != null)));
|
|
if (q != null)
|
|
{
|
|
Alert.ShowInTop(Resources.Lan.MaterialSpecificationCodeExists, MessageBoxIcon.Warning);
|
|
return;
|
|
}
|
|
|
|
Model.Base_Material newMaterial = new Model.Base_Material
|
|
{
|
|
MaterialCode = this.txtMaterialCode.Text.Trim(),
|
|
//MaterialType = this.txtMaterialType.Text.Trim(),
|
|
MaterialClass = this.txtMaterialClass.Text.Trim(),
|
|
MaterialGroup = this.txtMaterialGroup.Text.Trim(),
|
|
Remark = this.txtRemark.Text.Trim()
|
|
};
|
|
|
|
if (this.drpMaterialType.SelectedValue != BLL.Const._Null)
|
|
{
|
|
newMaterial.MaterialType = this.drpMaterialType.SelectedValue;
|
|
}
|
|
|
|
if (this.drpSteelType.SelectedValue != BLL.Const._Null)
|
|
{
|
|
newMaterial.SteelType = this.drpSteelType.SelectedValue;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(this.MaterialId))
|
|
{
|
|
newMaterial.MaterialId = this.MaterialId;
|
|
BLL.Base_MaterialService.UpdateMaterial(newMaterial);
|
|
BLL.Sys_LogService.AddLog(Const.System_2, this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.MaterialMenuId, Const.BtnModify, this.MaterialId);
|
|
}
|
|
else
|
|
{
|
|
this.MaterialId = SQLHelper.GetNewID(typeof(Model.Base_Material));
|
|
newMaterial.MaterialId = this.MaterialId;
|
|
BLL.Base_MaterialService.AddMaterial(newMaterial);
|
|
BLL.Sys_LogService.AddLog(Const.System_2, this.CurrUser.LoginProjectId, this.CurrUser.UserId, Const.MaterialMenuId, Const.BtnAdd, this.MaterialId);
|
|
}
|
|
|
|
ShowNotify(Resources.Lan.SaveSuccessfully, MessageBoxIcon.Success);
|
|
PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
|
|
}
|
|
#endregion
|
|
}
|
|
} |