当前位置: 首页>>代码示例>>C#>>正文


C# ClsBAL.UpdateCashCouponStatus方法代码示例

本文整理汇总了C#中BAL.ClsBAL.UpdateCashCouponStatus方法的典型用法代码示例。如果您正苦于以下问题:C# ClsBAL.UpdateCashCouponStatus方法的具体用法?C# ClsBAL.UpdateCashCouponStatus怎么用?C# ClsBAL.UpdateCashCouponStatus使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BAL.ClsBAL的用法示例。


在下文中一共展示了ClsBAL.UpdateCashCouponStatus方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: gvcashcoupons_RowCommand

    protected void gvcashcoupons_RowCommand(object sender, GridViewCommandEventArgs e)
    {
        try
        {
            if (e.CommandName == "status")
            {
                LinkButton lbtn = (LinkButton)e.CommandSource;
                Control ctrl = e.CommandSource as Control;
                GridViewRow row = ctrl.Parent.NamingContainer as GridViewRow;
                LinkButton lbtnstatus = (LinkButton)row.FindControl("lbtnstatus");
                Label lblstatus = (Label)row.FindControl("lblStatus");
                if (lbtnstatus.Text == "Activate")
                {
                    objBAL = new ClsBAL();
                    objBAL.ID = Convert.ToInt32(e.CommandArgument);
                    objBAL.status = "1";
                    objBAL.modifiedBy = Convert.ToInt32(Session["UserID"].ToString());
                    if (objBAL.UpdateCashCouponStatus())
                    {
                        tdmsg.Visible = true;
                        tdmsg.Style.Add("background-color:#6CC417;", "");
                        lblMainMsg.Text = "Updated Successfully....";
                        lblMainMsg.ForeColor = System.Drawing.Color.Green;
                        BindCashCoupons();
                    }
                    else
                    {
                        tdmsg.Visible = true;
                        tdmsg.Style.Add("background-color:#E77471;", "");
                        lblMainMsg.Text = "OOPS Some Problem in updation.Try Later...";
                        lblMainMsg.ForeColor = System.Drawing.Color.Maroon;
                    }
                }
                else if (lbtnstatus.Text == "Deactivate")
                {
                    objBAL = new ClsBAL();
                    objBAL.ID = Convert.ToInt32(e.CommandArgument);
                    objBAL.status = "0";
                    objBAL.modifiedBy = Convert.ToInt32(Session["UserID"].ToString());
                    if (objBAL.UpdateCashCouponStatus())
                    {
                        tdmsg.Visible = true;
                        tdmsg.Style.Add("background-color:#6CC417;", "");
                        lblMainMsg.Text = "Updated Successfully....";
                        lblMainMsg.ForeColor = System.Drawing.Color.Green;
                        BindCashCoupons();
                    }
                    else
                    {
                        tdmsg.Visible = true;
                        tdmsg.Style.Add("background-color:#E77471;", "");
                        lblMainMsg.Text = "OOPS Some Problem in updation.Try Later...";
                        lblMainMsg.ForeColor = System.Drawing.Color.Maroon;
                    }
                }
            }

        }
        catch (Exception ex)
        {

            throw ex;
        }
    }
开发者ID:srisai339,项目名称:LoveJourney_Working,代码行数:64,代码来源:CashCoupon.aspx.cs

示例2: btncashcoupon_Click

    protected void btncashcoupon_Click(object sender, EventArgs e)
    {
        try
        {
            if (txtcashcoupon.Text != "" && chkCashCoupon.Checked == true)
            {
                ClsBAL objBal = new ClsBAL();
                objBal.couponNo = txtcashcoupon.Text;
                DataSet ds = objBal.CheckCashCoupon();
                if (ds != null)
                {
                    if (ds.Tables[0].Rows.Count > 0)
                    {
                        if (ds.Tables[0].Rows[0]["EmailId"].ToString() == txtEmailId.Text.ToString())
                        {
                            if (Convert.ToDouble(lblTotalAmountPayable.Text) >= Convert.ToDouble(ds.Tables[0].Rows[0]["Amount"]))
                            {
                                lblTotalAmountPayable.Text = (Convert.ToDouble(lblTotalAmountPayable.Text) - Convert.ToDouble(ds.Tables[0].Rows[0]["Amount"])).ToString();
                                ClsBAL objBAL = new ClsBAL();
                                objBAL.ID = Convert.ToInt32(ds.Tables[0].Rows[0]["CouponId"]);
                                objBAL.status = "0";
                                objBAL.modifiedBy = 0;
                                bool b = objBAL.UpdateCashCouponStatus();
                                if (b == true)
                                {
                                    lblMsg.Text = "Yours cash coupon amount has update.";
                                    lblMsg.ForeColor = System.Drawing.Color.Green;
                                }
                            }
                            else
                            {
                                double fare = Convert.ToDouble(ds.Tables[0].Rows[0]["Amount"]) - Convert.ToDouble(lblTotalAmountPayable.Text);
                                lblTotalAmountPayable.Text = "0";
                                ClsBAL objBAL = new ClsBAL();
                                objBAL.ID = Convert.ToInt32(ds.Tables[0].Rows[0]["CouponId"]);
                                objBAL.Amount = fare.ToString();
                                objBAL.createdBy = Convert.ToInt32(Session["UserID"]);
                                bool b = objBAL.UpdateCashCoupon();
                                if (b == true)
                                {
                                    lblMsg.Text = "Yours cash coupon amount greater than ticket amount,for the remaining balance use same cash coupon no.";
                                    lblMsg.ForeColor = System.Drawing.Color.Green;
                                }
                            }
                            txtcashcoupon.Text = "";
                            txtcashcoupon.Visible = false;
                            btncashcoupon.Visible = false;
                            chkCashCoupon.Checked = false;
                        }
                        else
                        {
                            lblMsg.Text = "Please enter valid cash coupon person email id.";
                            lblMsg.ForeColor = System.Drawing.Color.Red;
                            txtEmailId.Text = "";
                            txtcashcoupon.Text = "";
                        }
                    }
                    else
                    {
                        lblMsg.Text = "Please enter valid cash coupon no.";
                        lblMsg.ForeColor = System.Drawing.Color.Red;
                    }
                }

            }
            else
            {
                lblMsg.Text = "Please enter cash coupon no.";
                lblMsg.ForeColor = System.Drawing.Color.Red;
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }
开发者ID:srisai339,项目名称:LoveJourney_Working,代码行数:76,代码来源:CustInfo.aspx.cs


注:本文中的BAL.ClsBAL.UpdateCashCouponStatus方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。