Example #1
0
        protected void btnUpdate_Click(object sender, EventArgs e)
        {
            mbw = new MBoreWater();
            bbw = new BBoreWater();
            int Result = 0;

            mbw.BoreWaterId      = string.IsNullOrEmpty(hId.Value) ? 0 : Convert.ToInt32(hId.Value);
            mbw.BoreWaterDate    = Convert.ToDateTime(txtDate.Text.ToString());
            mbw.BoreWaterShiftId = Convert.ToInt32(dpShiftDetails.SelectedItem.Value);
            mbw.OperatedBy       = string.IsNullOrEmpty(txtOperatedBy.Text) ? string.Empty : txtOperatedBy.Text;
            mbw.StartingTime     = string.IsNullOrEmpty(txtStartingTime.Text) ? string.Empty : txtStartingTime.Text;
            mbw.EndTime          = string.IsNullOrEmpty(txtEndTime.Text) ? string.Empty : txtEndTime.Text;
            mbw.TotalHours       = string.IsNullOrEmpty(txtTotalHours.Text) ? string.Empty : txtTotalHours.Text;
            mbw.flag             = "Update";
            Result = bbw.borewaterdata(mbw);
            if (Result > 0)
            {
                divDanger.Visible  = false;
                divwarning.Visible = false;

                divSusccess.Visible = true;
                lblSuccess.Text     = "Bore Water Data Updated  Successfully";
                pnlError.Update();
            }
            else
            {
                divDanger.Visible   = false;
                divwarning.Visible  = true;
                divSusccess.Visible = false;
                lblSuccess.Text     = "Something went wrong plz contact site admin";
                pnlError.Update();
            }
        }
Example #2
0
        protected void btnAdd_Click(object sender, EventArgs e)
        {
            mbw = new MBoreWater();
            bbw = new BBoreWater();
            int Result = 0;

            mbw.BoreWaterId      = 0;
            mbw.BoreWaterDate    = Convert.ToDateTime(txtDate.Text.ToString());
            mbw.BoreWaterShiftId = Convert.ToInt32(dpShiftDetails.SelectedItem.Value);
            mbw.OperatedBy       = string.IsNullOrEmpty(txtOperatedBy.Text)?string.Empty :txtOperatedBy.Text;
            mbw.StartingTime     = string.IsNullOrEmpty(txtStartingTime.Text) ? string.Empty : txtStartingTime.Text;
            mbw.EndTime          = string.IsNullOrEmpty(txtEndTime.Text) ? string.Empty : txtEndTime.Text;
            mbw.TotalHours       = string.IsNullOrEmpty(txtTotalHours.Text) ? string.Empty : txtTotalHours.Text;
            mbw.flag             = "insert";
            Result = bbw.borewaterdata(mbw);
            if (Result > 0)
            {
                divDanger.Visible  = false;
                divwarning.Visible = false;

                divSusccess.Visible = true;
                lblSuccess.Text     = "Bore Water Data Added  Successfully";
                ScriptManager.RegisterStartupScript(this, this.GetType(), "sel3", "$('#bx2').removeClass('collapsed-box');", true);
                pnlError.Update();
            }
            else
            {
                divDanger.Visible   = false;
                divwarning.Visible  = true;
                divSusccess.Visible = false;
                lblSuccess.Text     = "Something went wrong plz contact site admin";
                pnlError.Update();
            }
        }
Example #3
0
        public void GetBoreWaterDetails()
        {
            bbw = new BBoreWater();
            DataSet DS = new DataSet();

            DS = bbw.GetBoreWaterDetails();
            if (!Comman.Comman.IsDataSetEmpty(DS))
            {
                rpborewater.DataSource = DS;
                rpborewater.DataBind();
            }
        }
Example #4
0
        public void GetBoreWaterDetails(int BoreWaterId)
        {
            DataSet DS = new DataSet();

            bbw = new BBoreWater();
            DS  = bbw.GetBoreWaterDetailsById(BoreWaterId);
            if (!Comman.Comman.IsDataSetEmpty(DS))
            {
                string   DATE  = string.IsNullOrEmpty(DS.Tables[0].Rows[0]["BoreWaterDate"].ToString()) ? string.Empty : DS.Tables[0].Rows[0]["BoreWaterDate"].ToString();
                DateTime date1 = Convert.ToDateTime(DATE, System.Globalization.CultureInfo.GetCultureInfo("ur-PK").DateTimeFormat);
                txtDate.Text = (Convert.ToDateTime(date1).ToString("yyyy-MM-dd"));
                dpShiftDetails.ClearSelection();
                if (dpShiftDetails.Items.FindByValue(Convert.ToInt32(DS.Tables[0].Rows[0]["BoreWaterShiftId"]).ToString()) != null)
                {
                    dpShiftDetails.Items.FindByValue(Convert.ToInt32(DS.Tables[0].Rows[0]["BoreWaterShiftId"]).ToString()).Selected = true;
                }
                txtOperatedBy.Text   = string.IsNullOrEmpty(DS.Tables[0].Rows[0]["OperatedBy"].ToString()) ? string.Empty : DS.Tables[0].Rows[0]["OperatedBy"].ToString();
                txtStartingTime.Text = string.IsNullOrEmpty(DS.Tables[0].Rows[0]["StartingTime"].ToString()) ? string.Empty : DS.Tables[0].Rows[0]["StartingTime"].ToString();
                txtEndTime.Text      = string.IsNullOrEmpty(DS.Tables[0].Rows[0]["EndTime"].ToString()) ? string.Empty : DS.Tables[0].Rows[0]["EndTime"].ToString();
                txtTotalHours.Text   = string.IsNullOrEmpty(DS.Tables[0].Rows[0]["TotalHours"].ToString()) ? string.Empty : DS.Tables[0].Rows[0]["TotalHours"].ToString();
            }
        }