示例#1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         DNSABC.BLL.DNSABC_Invoice bll = new DNSABC.BLL.DNSABC_Invoice();
         if (Request.Params["id"] != null && Request.Params["id"].Trim() != "")
         {
             int Id = (Convert.ToInt32(Request.Params["id"]));
             bll.Delete(Id);
             Response.Redirect("list.aspx");
         }
     }
 }
示例#2
0
 private void ShowInfo(int Id)
 {
     DNSABC.BLL.DNSABC_Invoice   bll   = new DNSABC.BLL.DNSABC_Invoice();
     DNSABC.Model.DNSABC_Invoice model = bll.GetModel(Id);
     this.lblId.Text          = model.Id.ToString();
     this.lblUserID.Text      = model.UserID.ToString();
     this.lblInvoiceName.Text = model.InvoiceName;
     this.lblPrice.Text       = model.Price.ToString();
     this.lblPostType.Text    = model.PostType.ToString();
     this.lblRealName.Text    = model.RealName;
     this.lblTel.Text         = model.Tel;
     this.lblMobil.Text       = model.Mobil;
     this.lblAddress.Text     = model.Address;
     this.lblPostCode.Text    = model.PostCode;
     this.lblRemark.Text      = model.Remark;
     this.lblState.Text       = model.State.ToString();
     this.lblAdminRemark.Text = model.AdminRemark;
     this.lblCreateTime.Text  = model.CreateTime.ToString();
 }
示例#3
0
        protected void btnSave_Click(object sender, EventArgs e)
        {
            string strErr = "";

            if (!PageValidate.IsNumber(txtUserID.Text))
            {
                strErr += "申领人格式错误!\\n";
            }
            if (this.txtInvoiceName.Text.Trim().Length == 0)
            {
                strErr += "发票抬头不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtPrice.Text))
            {
                strErr += "申领金额格式错误!\\n";
            }
            if (!PageValidate.IsNumber(txtPostType.Text))
            {
                strErr += "邮寄方式格式错误!\\n";
            }
            if (this.txtRealName.Text.Trim().Length == 0)
            {
                strErr += "联系人不能为空!\\n";
            }
            if (this.txtTel.Text.Trim().Length == 0)
            {
                strErr += "电话不能为空!\\n";
            }
            if (this.txtMobil.Text.Trim().Length == 0)
            {
                strErr += "手机不能为空!\\n";
            }
            if (this.txtAddress.Text.Trim().Length == 0)
            {
                strErr += "邮寄地址不能为空!\\n";
            }
            if (this.txtPostCode.Text.Trim().Length == 0)
            {
                strErr += "邮编不能为空!\\n";
            }
            if (this.txtRemark.Text.Trim().Length == 0)
            {
                strErr += "备注 用户申请发票时的备注信息不能为空!\\n";
            }
            if (!PageValidate.IsNumber(txtState.Text))
            {
                strErr += "管理员处理状态 0为未处理格式错误!\\n";
            }
            if (this.txtAdminRemark.Text.Trim().Length == 0)
            {
                strErr += "管理员备注 备注发票邮寄方式信不能为空!\\n";
            }
            if (!PageValidate.IsDateTime(txtCreateTime.Text))
            {
                strErr += "创建时间格式错误!\\n";
            }

            if (strErr != "")
            {
                MessageBox.Show(this, strErr);
                return;
            }
            int      UserID      = int.Parse(this.txtUserID.Text);
            string   InvoiceName = this.txtInvoiceName.Text;
            int      Price       = int.Parse(this.txtPrice.Text);
            int      PostType    = int.Parse(this.txtPostType.Text);
            string   RealName    = this.txtRealName.Text;
            string   Tel         = this.txtTel.Text;
            string   Mobil       = this.txtMobil.Text;
            string   Address     = this.txtAddress.Text;
            string   PostCode    = this.txtPostCode.Text;
            string   Remark      = this.txtRemark.Text;
            int      State       = int.Parse(this.txtState.Text);
            string   AdminRemark = this.txtAdminRemark.Text;
            DateTime CreateTime  = DateTime.Parse(this.txtCreateTime.Text);

            DNSABC.Model.DNSABC_Invoice model = new DNSABC.Model.DNSABC_Invoice();
            model.UserID      = UserID;
            model.InvoiceName = InvoiceName;
            model.Price       = Price;
            model.PostType    = PostType;
            model.RealName    = RealName;
            model.Tel         = Tel;
            model.Mobil       = Mobil;
            model.Address     = Address;
            model.PostCode    = PostCode;
            model.Remark      = Remark;
            model.State       = State;
            model.AdminRemark = AdminRemark;
            model.CreateTime  = CreateTime;

            DNSABC.BLL.DNSABC_Invoice bll = new DNSABC.BLL.DNSABC_Invoice();
            bll.Add(model);
            ROYcms.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "add.aspx");
        }