Example #1
0
 /// <summary>
 /// 删除(该操作员有生成单据停用否则删除)
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void LinkButton2_Click(object sender, EventArgs e)
 {
     try
     {
         //获取button 控件
         LinkButton lb = (LinkButton)sender;
         //获取传过来的commwntid
         int     id  = Convert.ToInt32(lb.CommandArgument);
         DataSet dwq = ot.GetList(" StaffmemberID like '" + id + "' or UserTabID like '" + id + "'");
         if (dwq.Tables[0].Rows.Count > 0)
         {
             Model.Operator czy = op.GetModel(id);
             czy.BranchID = 0;
             bool a = op.Update(czy);
             if (a == true)
             {
                 ClientScript.RegisterClientScriptBlock(this.GetType(), "this", "<script language=javascript>alert('停用成功!');</script>");
                 bind(sql);
             }
             else
             {
                 ClientScript.RegisterClientScriptBlock(this.GetType(), "this", "<script language=javascript>alert('停用失败!');</script>");
                 bind(sql);
             }
         }
         else
         {
             bool a = op.Delete(id);
             if (a == true)
             {
                 ClientScript.RegisterClientScriptBlock(this.GetType(), "this", "<script language=javascript>alert('删除成功!');</script>");
                 bind(sql);
             }
             else
             {
                 ClientScript.RegisterClientScriptBlock(this.GetType(), "this", "<script language=javascript>alert('删除失败!');</script>");
                 bind(sql);
             }
         }
     }
     catch (Exception ee)
     {
         //Response.Write("<script>alert('确定异常 " + ee.Message + "')</script>");
         ClientScript.RegisterClientScriptBlock(this.GetType(), "this", "<script language=javascript>alert('删除异常 " + ee.Message + "');</script>");
     }
 }
Example #2
0
        public void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (this.txtname.Text.Trim().Length == 0)
            {
                strErr += "name不能为空!\\n";
            }
            if (this.txtpwd.Text.Trim().Length == 0)
            {
                strErr += "pwd不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtBranchID.Text))
            {
                strErr += "BranchID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtdepartmentID.Text))
            {
                strErr += "departmentID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtStaffmemberID.Text))
            {
                strErr += "StaffmemberID格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtJurisdictionID.Text))
            {
                strErr += "JurisdictionID格式错误!\\n";
            }
            if (this.txtBeizhu.Text.Trim().Length == 0)
            {
                strErr += "Beizhu不能为空!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY1.Text))
            {
                strErr += "BY1格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY2.Text))
            {
                strErr += "BY2格式错误!\\n";
            }
            if (!PageValidate.IsDecimal(txtBY3.Text))
            {
                strErr += "BY3格式错误!\\n";
            }
            if (this.txtBY4.Text.Trim().Length == 0)
            {
                strErr += "BY4不能为空!\\n";
            }
            if (this.txtBY5.Text.Trim().Length == 0)
            {
                strErr += "BY5不能为空!\\n";
            }
            if (this.txtBY6.Text.Trim().Length == 0)
            {
                strErr += "BY6不能为空!\\n";
            }
            if (this.txtBY7.Text.Trim().Length == 0)
            {
                strErr += "BY7不能为空!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int     id             = int.Parse(this.lblid.Text);
            string  name           = this.txtname.Text;
            string  pwd            = this.txtpwd.Text;
            int     BranchID       = int.Parse(this.txtBranchID.Text);
            int     departmentID   = int.Parse(this.txtdepartmentID.Text);
            int     StaffmemberID  = int.Parse(this.txtStaffmemberID.Text);
            int     JurisdictionID = int.Parse(this.txtJurisdictionID.Text);
            string  Beizhu         = this.txtBeizhu.Text;
            decimal BY1            = decimal.Parse(this.txtBY1.Text);
            decimal BY2            = decimal.Parse(this.txtBY2.Text);
            decimal BY3            = decimal.Parse(this.txtBY3.Text);
            string  BY4            = this.txtBY4.Text;
            string  BY5            = this.txtBY5.Text;
            string  BY6            = this.txtBY6.Text;
            string  BY7            = this.txtBY7.Text;


            Maticsoft.Model.Operator model = new Maticsoft.Model.Operator();
            model.id             = id;
            model.name           = name;
            model.pwd            = pwd;
            model.BranchID       = BranchID;
            model.departmentID   = departmentID;
            model.StaffmemberID  = StaffmemberID;
            model.JurisdictionID = JurisdictionID;
            model.Beizhu         = Beizhu;
            model.BY1            = BY1;
            model.BY2            = BY2;
            model.BY3            = BY3;
            model.BY4            = BY4;
            model.BY5            = BY5;
            model.BY6            = BY6;
            model.BY7            = BY7;

            Maticsoft.BLL.Operator bll = new Maticsoft.BLL.Operator();
            bll.Update(model);
            Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "list.aspx");
        }