EmpWelInf.aspx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:8k
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using qminoa.BLL;
- using qminoa.Common;
- using qminoa.Common.Data;
- namespace qminoa.Webs.MR
- {
- public class EmpMr32 : qminoa.Webs.PageBase
- {
- protected System.Web.UI.WebControls.Label lblNext;
- protected System.Web.UI.WebControls.Label lblEmpID;
- protected System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
- protected System.Web.UI.WebControls.Label lblErr;
- protected System.Web.UI.WebControls.ImageButton cmdExit;
- protected System.Web.UI.WebControls.ImageButton cmdSaveExi;
- protected System.Web.UI.WebControls.ImageButton cmdSaveCon;
- protected System.Web.UI.WebControls.RangeValidator RangeValidator1;
- protected System.Web.UI.WebControls.CheckBox chkHosp;
- protected System.Web.UI.WebControls.CheckBox chkHous;
- protected System.Web.UI.WebControls.CheckBox chkUnem;
- protected System.Web.UI.WebControls.CheckBox chkGrav;
- protected System.Web.UI.WebControls.CheckBox chkEndo;
- protected System.Web.UI.WebControls.Label Label5;
- protected System.Web.UI.WebControls.TextBox txtSalaLevl;
- protected System.Web.UI.WebControls.Label Label4;
- protected System.Web.UI.WebControls.TextBox txtPosiLevl;
- protected System.Web.UI.WebControls.Label Label3;
- protected System.Web.UI.WebControls.TextBox txtEnterMode;
- protected System.Web.UI.WebControls.Label Label2;
- protected System.Web.UI.WebControls.TextBox txtEnterDate;
- protected System.Web.UI.WebControls.Label Label1;
- protected System.Web.UI.WebControls.TextBox txtWelNote;
- protected System.Web.UI.WebControls.Label Label13;
- protected System.Web.UI.WebControls.ImageButton cmdMr36;
- protected System.Web.UI.WebControls.ImageButton cmdMr35;
- protected System.Web.UI.WebControls.ImageButton cmdMr34;
- protected System.Web.UI.WebControls.ImageButton cmdMr33;
- protected System.Web.UI.WebControls.ImageButton cmdMr32;
- protected System.Web.UI.WebControls.ImageButton cmdMR31;
- protected System.Web.UI.WebControls.ImageButton cmdMr3;
-
- private void Page_Load(object sender, System.EventArgs e)
- {
- this.PageBegin("人员管理",true);
- if(Page.IsPostBack)
- {
- return ;
- }
- DataBind();
- FillPage();
- }
- private void FillPage()
- {
- int empID;
- if(lblEmpID.Text==string.Empty)
- {
- empID = Convert.ToInt16(Request.QueryString["PARAM_EMPID"]);
- lblEmpID.Text = empID.ToString();
- }
- else
- {
- empID = Convert.ToInt16(lblEmpID.Text,10);
- }
- DataTable empTB = (new EmpSystem()).GetEmpTB_By_EmpID(empID);
- DataRow row = empTB.Rows[0];
- if(row[EmpBaseData.ENTERDATE_FIELD]!=DBNull.Value)
- {
- txtEnterDate.Text = ((DateTime)row[EmpBaseData.ENTERDATE_FIELD]).ToString("d");
- }
- txtEnterMode.Text = row[EmpBaseData.ENTERMODE_FIELD].ToString();
- txtPosiLevl.Text = row[EmpBaseData.POSILEVL_FIELD].ToString();
- txtSalaLevl.Text = row[EmpBaseData.SALALEVL_FIELD].ToString();
- txtWelNote.Text = row[EmpBaseData.WELNOTE_FIELD].ToString();
- chkEndo.Checked = (bool)row[EmpBaseData.ENDOFLAG_FIELD];
- chkHous.Checked = (bool)row[EmpBaseData.HOUSFLAG_FIELD];
- chkHosp.Checked = (bool)row[EmpBaseData.HOSPFLAG_FIELD];
- chkGrav.Checked = (bool)row[EmpBaseData.GRAVFLAG_FIELD];
- chkUnem.Checked = (bool)row[EmpBaseData.UNEMFLAG_FIELD];
- }
- private bool SaveEmpInf()
- {
- if(this.EmpRightCode >= 3)
- {
- EmpBaseData empData = new EmpBaseData();
- DataTable empTB = empData.Tables[EmpBaseData.EMP_TABLE_NAME];
- DataRow row = empTB.NewRow();
- empTB.Rows.Add(row);
- empTB.AcceptChanges();
- row[EmpBaseData.EMPID_FIELD] =Convert.ToInt16(lblEmpID.Text,10);
- if( txtEnterDate.Text!=string.Empty)
- {
- row[EmpBaseData.ENTERDATE_FIELD] = txtEnterDate.Text;
- }
- row[EmpBaseData.ENTERMODE_FIELD] = txtEnterMode.Text;
- row[EmpBaseData.POSILEVL_FIELD] = txtPosiLevl.Text;
- row[EmpBaseData.SALALEVL_FIELD] = txtSalaLevl.Text ;
- row[EmpBaseData.WELNOTE_FIELD] = txtWelNote.Text;
- row[EmpBaseData.ENDOFLAG_FIELD] = chkEndo.Checked;
- row[EmpBaseData.HOUSFLAG_FIELD] = chkHous.Checked ;
- row[EmpBaseData.HOSPFLAG_FIELD] = chkHosp.Checked ;
- row[EmpBaseData.GRAVFLAG_FIELD] = chkGrav.Checked;
- row[EmpBaseData.UNEMFLAG_FIELD] = chkUnem.Checked ;
- return (new EmpSystem()).UpdateEmpWelInf(empData);
- }
- else
- {
- JScript.Alert("您没有权限进行此操作!");
- return false;
- }
- }
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
-
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.cmdMr3.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr3_Click);
- this.cmdMR31.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMR31_Click);
- this.cmdMr32.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr32_Click);
- this.cmdMr33.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr33_Click);
- this.cmdMr34.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr34_Click);
- this.cmdMr35.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr35_Click);
- this.cmdMr36.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr36_Click);
- this.cmdSaveCon.Click += new System.Web.UI.ImageClickEventHandler(this.cmdSaveCon_Click);
- this.cmdSaveExi.Click += new System.Web.UI.ImageClickEventHandler(this.cmdSaveExi_Click);
- this.cmdExit.Click += new System.Web.UI.ImageClickEventHandler(this.cmdExit_Click);
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- private void cmdSaveCon_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- if(!SaveEmpInf())
- JScript.Alert("操作失败!");
- else
- JScript.Alert("操作成功!");
- }
- private void cmdMR31_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpPers.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr3_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpBase.aspx?EmpID="+lblEmpID.Text,false);
- }
- private void cmdExit_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpInf.aspx",false);
- }
- private void cmdSaveExi_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- if(!SaveEmpInf())
- JScript.Alert("操作失败!");
- else
- Response.Redirect("EmpInf.aspx",false);
- }
- private void cmdMr33_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpEdu.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr34_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpVisaInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr35_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpArcInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr36_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpContInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr32_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
-
- }
- }
- }