예제 #1
0
        protected void dgvLocations_OnRowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            if (dgvLocations.Rows[e.RowIndex].Cells[7].Text != "False")
            {
                Utilities.editId = int.Parse(dgvLocations.DataKeys[e.RowIndex].Value.ToString());

                string _txtName    = dgvLocations.Rows[e.RowIndex].Cells[1].Text;
                string _txtLong    = dgvLocations.Rows[e.RowIndex].Cells[2].Text;
                string _txtLat     = dgvLocations.Rows[e.RowIndex].Cells[3].Text;
                string _txtCountry = dgvLocations.Rows[e.RowIndex].Cells[4].Text;
                string _txtCity    = dgvLocations.Rows[e.RowIndex].Cells[5].Text;
                string _txtTown    = dgvLocations.Rows[e.RowIndex].Cells[6].Text;

                var curr = new LocationDataSet();
                curr.Location.AddLocationRow(Utilities.editId, _txtName, false, double.Parse(_txtLong), double.Parse(_txtLat),
                                             _txtCountry,
                                             _txtCity, _txtTown);

                dataProvider.UpdateLocation(userToken, curr, orgId);
                SetToast("success", "Location deactivated succesfully");
            }
            else
            {
                SetToast("info", "Location already deactivated");
            }
            DisplayLocationsInGrid();
        }
        public override global::System.Data.DataSet Clone()
        {
            LocationDataSet cln = ((LocationDataSet)(base.Clone()));

            cln.InitVars();
            cln.SchemaSerializationMode = this.SchemaSerializationMode;
            return(cln);
        }
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs)
        {
            LocationDataSet ds = new LocationDataSet();

            global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
            global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
            global::System.Xml.Schema.XmlSchemaAny         any      = new global::System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
            if (xs.Contains(dsSchema.TargetNamespace))
            {
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                try {
                    global::System.Xml.Schema.XmlSchema schema = null;
                    dsSchema.Write(s1);
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                    {
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                        s2.SetLength(0);
                        schema.Write(s2);
                        if ((s1.Length == s2.Length))
                        {
                            s1.Position = 0;
                            s2.Position = 0;
                            for (; ((s1.Position != s1.Length) &&
                                    (s1.ReadByte() == s2.ReadByte()));)
                            {
                                ;
                            }
                            if ((s1.Position == s1.Length))
                            {
                                return(type);
                            }
                        }
                    }
                }
                finally {
                    if ((s1 != null))
                    {
                        s1.Close();
                    }
                    if ((s2 != null))
                    {
                        s2.Close();
                    }
                }
            }
            xs.Add(dsSchema);
            return(type);
        }
예제 #4
0
        protected void btnSaveLocation_OnClick(object sender, EventArgs e)
        {
            var LocationDS = new LocationDataSet();

            LocationDS.Location.AddLocationRow(Utilities.editId, txtName.Text, chkActive.Checked, double.Parse(txtlongitude.Text),
                                               double.Parse(txtLatitude.Text),
                                               txtCountry.Text, txtCity.Text, txtTown.Text);

            if (Utilities.editId != -1)
            {
                int result = dataProvider.UpdateLocation(Utilities.userToken, LocationDS, orgId);

                if (result != -1)
                {
                    SetToast("success", "Location has been succesfully updated");
                    Utilities.editId = -1;
                    btnCloseModal_OnClick(sender, e);
                }
                else
                {
                    SetToast("error", "Location already exists");
                }
            }
            else
            {
                if (!Utilities.CheckGridForText(dgvLocations, txtName.Text))
                {
                    int result = dataProvider.AddLocation(Utilities.userToken, LocationDS, orgId);

                    if (result != -1)
                    {
                        Utilities.editId = -1;
                        SetToast("success", "Location was created successfully.");
                    }
                    else
                    {
                        SetToast("error", "An error has occured, try again.");
                    }
                }
                else
                {
                    SetToast("info", "Location already exists");
                }

                DisplayLocationsInGrid();
            }

            DisplayLocationsInGrid();
        }
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs)
            {
                global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                LocationDataSet ds = new LocationDataSet();

                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace       = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs       = new decimal(0);
                any1.MaxOccurs       = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace       = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs       = new decimal(1);
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name       = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name       = "tableTypeName";
                attribute2.FixedValue = "LocationDataTableDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
                if (xs.Contains(dsSchema.TargetNamespace))
                {
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                    try {
                        global::System.Xml.Schema.XmlSchema schema = null;
                        dsSchema.Write(s1);
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                        {
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                            s2.SetLength(0);
                            schema.Write(s2);
                            if ((s1.Length == s2.Length))
                            {
                                s1.Position = 0;
                                s2.Position = 0;
                                for (; ((s1.Position != s1.Length) &&
                                        (s1.ReadByte() == s2.ReadByte()));)
                                {
                                    ;
                                }
                                if ((s1.Position == s1.Length))
                                {
                                    return(type);
                                }
                            }
                        }
                    }
                    finally {
                        if ((s1 != null))
                        {
                            s1.Close();
                        }
                        if ((s2 != null))
                        {
                            s2.Close();
                        }
                    }
                }
                xs.Add(dsSchema);
                return(type);
            }
예제 #6
0
        protected void btnSaveLocation_OnClick(object sender, EventArgs e)
        {
            var LocationDS = new LocationDataSet();

            LocationDS.Location.AddLocationRow(Utilities.editId,txtName.Text, chkActive.Checked, double.Parse(txtlongitude.Text),
                double.Parse(txtLatitude.Text),
                txtCountry.Text, txtCity.Text, txtTown.Text);

            if (Utilities.editId != -1)
            {
                int result = dataProvider.UpdateLocation(Utilities.userToken, LocationDS, orgId);

                if (result != -1)
                {
                    SetToast("success", "Location has been succesfully updated");
                    Utilities.editId = -1;
                    btnCloseModal_OnClick(sender, e);
                }
                else
                {
                    SetToast("error", "Location already exists");
                }
            }
            else
            {
                if (!Utilities.CheckGridForText(dgvLocations, txtName.Text))
                {
                    int result = dataProvider.AddLocation(Utilities.userToken, LocationDS, orgId);

                    if (result != -1)
                    {
                        Utilities.editId = -1;
                        SetToast("success", "Location was created successfully.");
                    }
                    else
                    {
                        SetToast("error", "An error has occured, try again.");
                    }
                }
                else
                {
                    SetToast("info", "Location already exists");
                }

                DisplayLocationsInGrid();
            }

            DisplayLocationsInGrid();
        }
예제 #7
0
        protected void dgvLocations_OnRowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            if (dgvLocations.Rows[e.RowIndex].Cells[7].Text != "False")
            {
                Utilities.editId = int.Parse(dgvLocations.DataKeys[e.RowIndex].Value.ToString());

                string _txtName = dgvLocations.Rows[e.RowIndex].Cells[1].Text;
                string _txtLong = dgvLocations.Rows[e.RowIndex].Cells[2].Text;
                string _txtLat = dgvLocations.Rows[e.RowIndex].Cells[3].Text;
                string _txtCountry = dgvLocations.Rows[e.RowIndex].Cells[4].Text;
                string _txtCity = dgvLocations.Rows[e.RowIndex].Cells[5].Text;
                string _txtTown = dgvLocations.Rows[e.RowIndex].Cells[6].Text;
                
                var curr = new LocationDataSet();
                curr.Location.AddLocationRow(Utilities.editId,_txtName, false, double.Parse(_txtLong), double.Parse(_txtLat),
                    _txtCountry,
                    _txtCity, _txtTown);

                dataProvider.UpdateLocation(userToken, curr, orgId);
                SetToast("success", "Location deactivated succesfully");
            }
            else
            {
                SetToast("info", "Location already deactivated");
            }
            DisplayLocationsInGrid();
        }
예제 #8
0
        public int UpdateLocation(string userToken, LocationDataSet sysParameter, int orgId)
        {
            int newId = -1;
            if (IsUserTokenValid(userToken))
            {
                try
                {
                    if (conn.State != System.Data.ConnectionState.Open) { conn.Open(); }
                    SqlCommand cmd = conn.CreateCommand();
                    cmd.CommandType = System.Data.CommandType.StoredProcedure;
                    cmd.CommandText = "spUpdateLocation";

                    var p2 = new SqlParameter[10];
                    for (int i = 0; i < 10; i++)
                        p2[i] = new SqlParameter();

                    p2[0] = new SqlParameter("name", sysParameter.Location[0].Name);
                    p2[1] = new SqlParameter("long", sysParameter.Location[0].Longitude);
                    p2[2] = new SqlParameter("lat", sysParameter.Location[0].Latitude);
                    p2[3] = new SqlParameter("country", sysParameter.Location[0].Country);
                    p2[4] = new SqlParameter("city", sysParameter.Location[0].City);
                    p2[5] = new SqlParameter("town", sysParameter.Location[0].Town);
                    p2[6] = new SqlParameter("active", sysParameter.Location[0].Active);
                    p2[7] = new SqlParameter("updateUser", _userId);
                    p2[8] = new SqlParameter("id", sysParameter.Location[0].Id);
                    p2[9] = new SqlParameter("orgId", orgId);

                    cmd.Parameters.AddRange(p2);

                    newId = int.Parse(cmd.ExecuteScalar().ToString());
                    if (conn.State != System.Data.ConnectionState.Closed)
                    {
                        conn.Close();
                    }
                    
                }
                catch (Exception ex)
                {
                    throw new OperationFailedException(ex.Message, ex);
                }
                finally
                {
                    if (conn.State != System.Data.ConnectionState.Closed)
                    {
                        conn.Close();
                    }
                }
            }
            return newId;
        }
예제 #9
0
        public LocationDataSet GetActiveLocationsByOrgId(string userToken, int orgId)
        {
            var retValues = new LocationDataSet();

            if (IsUserTokenValid(userToken))
            {
                try
                {
                    conn.Open();
                    SqlCommand cmd = conn.CreateCommand();
                    cmd.CommandType = System.Data.CommandType.StoredProcedure;
                    cmd.CommandText = "spGetActiveLocationsByOrgId";

                    var p2 = new SqlParameter[1];
                    for (int i = 0; i < 1; i++)
                        p2[i] = new SqlParameter();

                    p2[0] = new SqlParameter("org_id", orgId);
                    cmd.Parameters.AddRange(p2);
                    SqlDataReader reader = cmd.ExecuteReader();
                    if (reader != null)
                    {
                        while (reader.Read())
                        {
                            var cat = retValues.Location.NewLocationRow();
                            cat.Id = int.Parse(reader["Id"].ToString());
                            cat.Name = reader["Name"].ToString();
                            cat.Latitude = double.Parse(reader["Latitude"].ToString());
                            cat.Longitude = double.Parse(reader["Longitude"].ToString());
                            cat.Country = reader["Country"].ToString();
                            cat.Town = reader["Town"].ToString();
                            cat.City = reader["City"].ToString();

                            retValues.Location.AddLocationRow(cat);
                        }
                        reader.Close();
                    }

                }
                catch (Exception ex)
                {
                    throw new OperationFailedException(ex.Message, ex);
                }
                finally
                {
                    if (conn.State != System.Data.ConnectionState.Closed)
                    {
                        conn.Close();
                    }
                }
            }
            return retValues;
        }