49 lines
1.9 KiB
C#
49 lines
1.9 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 SystemManage_BuMenInfoAdd : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
ZWL.Common.PublicMethod.CheckSession();
|
|
}
|
|
}
|
|
protected void ImageButton1_Click(object sender, ImageClickEventArgs e)
|
|
{
|
|
if (ZWL.Common.PublicMethod.IFExists("BuMenName", "ERPBuMen", 0, this.TextBox1.Text) == true)
|
|
{
|
|
ZWL.BLL.ERPBuMen MyBuMen = new ZWL.BLL.ERPBuMen();
|
|
MyBuMen.BuMenName = this.TextBox1.Text;
|
|
MyBuMen.ChargeMan = this.TextBox2.Text;
|
|
MyBuMen.TelStr = this.TextBox3.Text;
|
|
MyBuMen.ChuanZhen = this.TextBox4.Text;
|
|
MyBuMen.BackInfo = this.TextBox5.Text;
|
|
MyBuMen.DirID = int.Parse(Request.QueryString["DirID"].ToString());
|
|
MyBuMen.Add();
|
|
|
|
//写系统日志
|
|
ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
|
|
MyRiZhi.UserName = ZWL.Common.PublicMethod.GetSessionValue("UserName");
|
|
MyRiZhi.DoSomething = "用户添加部门信息(" + this.TextBox1.Text + ")";
|
|
MyRiZhi.IpStr = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
|
|
MyRiZhi.Add();
|
|
|
|
ZWL.Common.MessageBox.ShowAndRedirect(this, "部门信息添加成功!", "BuMenInfo.aspx?View=" + Request.QueryString["View"].ToString() + "&Type=" + Request.QueryString["Type"].ToString() + "&DirID=" + Request.QueryString["DirID"].ToString());
|
|
}
|
|
else
|
|
{
|
|
ZWL.Common.MessageBox.Show(this, "该部门已经存在,请更换名称!");
|
|
}
|
|
}
|
|
}
|