Esempio n. 1
0
        public void insertFloraTest()
        {
            //ARRANGE
            ws.Servicios.wsFlora obwsFlora = new ws.Servicios.wsFlora();

            //ACT
            logica.Models.clsFlora clsFlora = new logica.Models.clsFlora
            {
                lgCodigo           = 2,
                stNombre           = "Rosas",
                stNombreCientifico = "No se Cual es",
                stDescripcion      = "Es una flor",
                stAbundancia       = "En cada esquina",
                stLatitud          = "ICKKCK",
                stLongitud         = "ICKKCK",
                stPeriodoFloracion = "No se",
                obclsDepartamentos = new logica.Models.clsDepartamentos
                {
                    inCodigo = 1
                }
            };


            string json = JsonConvert.SerializeObject(clsFlora);

            //ASSERT
            obwsFlora.InsertFlora(json);
        }
Esempio n. 2
0
 public string deleteFlora(logica.Models.clsFlora obclsFloraModels)
 {
     try
     {
         logica.BL.clsFlora obclsFlora = new logica.BL.clsFlora();
         return(obclsFlora.deleteFlora(obclsFloraModels));
     }catch (Exception ew)
     {
         throw ew;
     }
 }
Esempio n. 3
0
        protected void gvwDatos_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            try
            {
                int inIndice = Convert.ToInt16(e.CommandArgument);
                if (e.CommandName.Equals("Editar"))
                {
                    lblOpcion.Text          = "2";
                    txtCodigo.Text          = ((Label)gvwDatos.Rows[inIndice].FindControl("lblCodigo")).Text;
                    txtNomCientifico.Text   = String.IsNullOrEmpty(gvwDatos.Rows[inIndice].Cells[1].Text) ? String.Empty : gvwDatos.Rows[inIndice].Cells[1].Text;
                    txtNomComun.Text        = String.IsNullOrEmpty(gvwDatos.Rows[inIndice].Cells[2].Text) ? String.Empty : gvwDatos.Rows[inIndice].Cells[2].Text;
                    txtDescripcion.Text     = String.IsNullOrEmpty(gvwDatos.Rows[inIndice].Cells[3].Text) ? String.Empty : gvwDatos.Rows[inIndice].Cells[3].Text;
                    txtAbundancia.Text      = String.IsNullOrEmpty(gvwDatos.Rows[inIndice].Cells[4].Text) ? String.Empty : gvwDatos.Rows[inIndice].Cells[4].Text;
                    txtPeridoFloracion.Text = String.IsNullOrEmpty(gvwDatos.Rows[inIndice].Cells[5].Text) ? String.Empty : gvwDatos.Rows[inIndice].Cells[5].Text;
                }
                else if (e.CommandName.Equals("Eliminar"))
                {
                    logica.Models.clsFlora obclsFlora = new logica.Models.clsFlora
                    {
                        lgCodigo           = Convert.ToInt64(((Label)gvwDatos.Rows[inIndice].FindControl("lblCodigo")).Text),
                        stNombreCientifico = String.Empty,
                        stNombre           = String.Empty,
                        stAbundancia       = String.Empty,
                        stPeriodoFloracion = String.Empty,
                        stDescripcion      = String.Empty,
                        obclsTipoFlora     = new logica.Models.clsTipoFlora
                        {
                            lgCodigo = 0
                        },
                        stImagen = String.Empty
                    };

                    Controllers.FloraControllers obFloraControllers = new Controllers.FloraControllers();

                    ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('MENSAJE!', '" + obFloraControllers.deleteFlora(obclsFlora) + "!','Success')</Script>");

                    lblOpcion.Text = txtCodigo.Text = txtDescripcion.Text = txtNomCientifico.Text = txtNomComun.Text = txtPeridoFloracion.Text
                                                                                                                           = txtAbundancia.Text = String.Empty;
                    getFlora();
                }
            }
            catch (Exception ex)
            {
                ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('ERROR!', '" + ex.Message + "!', 'ERROR')</Script>");
            }
        }
Esempio n. 4
0
        protected void btnGuardar_Click(object sender, EventArgs e)
        {
            try
            {
                String stMensaje = String.Empty;
                if (String.IsNullOrEmpty(txtCodigo.Text))
                {
                    stMensaje += "Ingrese Codigo, ";
                }
                if (String.IsNullOrEmpty(txtNomCientifico.Text))
                {
                    stMensaje += "Ingrese Nombre Cientifico, ";
                }
                if (String.IsNullOrEmpty(txtNomComun.Text))
                {
                    stMensaje += "Ingrese Nombre, ";
                }
                if (String.IsNullOrEmpty(txtPeridoFloracion.Text))
                {
                    stMensaje += "Ingrese Perido de Floración, ";
                }
                if (String.IsNullOrEmpty(txtAbundancia.Text))
                {
                    stMensaje += "Ingrese abundancia, ";
                }
                if (String.IsNullOrEmpty(txtDescripcion.Text))
                {
                    stMensaje += "Ingrese Descripción, ";
                }
                if (fuImagen.HasFile == false)
                {
                    stMensaje += "Agrega una imagen, ";
                }
                if (!string.IsNullOrEmpty(stMensaje))
                {
                    throw new Exception(stMensaje.TrimEnd(','));
                }



                if (!Path.GetExtension(fuImagen.FileName).Equals(".jpg"))
                {
                    throw new Exception("Solo se admiten formatos .JPG");
                }

                String stRuta = Server.MapPath(@"~\tmp\") + fuImagen.FileName;
                fuImagen.PostedFile.SaveAs(stRuta);
                String stRutaDestino = Server.MapPath(@"~\Images\Flora\") + txtCodigo.Text + "Flora" + Path.GetExtension(fuImagen.FileName);
                if (File.Exists(stRutaDestino))
                {
                    File.SetAttributes(stRutaDestino, FileAttributes.Normal);
                    File.Delete(stRutaDestino);
                }

                File.Copy(stRuta, stRutaDestino);
                File.SetAttributes(stRuta, FileAttributes.Normal);
                File.Delete(stRuta);


                logica.Models.clsFlora clsFlora = new logica.Models.clsFlora
                {
                    lgCodigo           = Convert.ToInt64(txtCodigo.Text),
                    stNombreCientifico = txtNomCientifico.Text,
                    stNombre           = txtNomComun.Text,
                    stDescripcion      = txtDescripcion.Text,
                    stPeriodoFloracion = txtPeridoFloracion.Text,
                    stAbundancia       = txtAbundancia.Text,
                    obclsTipoFlora     = new logica.Models.clsTipoFlora
                    {
                        lgCodigo = Convert.ToInt64(ddlTipoFlora.SelectedValue)
                    },
                    stImagen = stRutaDestino
                };

                Controllers.FloraControllers obFloraControllers = new Controllers.FloraControllers();
                if (String.IsNullOrEmpty(lblOpcion.Text))
                {
                    lblOpcion.Text = "1";
                }

                if (lblOpcion.Text.Equals("1"))
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('Mensaje!,'" + obFloraControllers.insertFlora(clsFlora) + "!','success')</Script>");
                    lblOpcion.Text = txtCodigo.Text = txtDescripcion.Text = txtNomCientifico.Text = txtNomComun.Text = txtPeridoFloracion.Text
                                                                                                                           = txtAbundancia.Text = String.Empty;
                    getFlora();
                }
                else if (lblOpcion.Text.Equals("2"))
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('Mensaje!,'" + obFloraControllers.updateFlora(clsFlora) + "!','success')</Script>");
                    lblOpcion.Text = txtCodigo.Text = txtDescripcion.Text = txtNomCientifico.Text = txtNomComun.Text = txtPeridoFloracion.Text
                                                                                                                           = txtAbundancia.Text = String.Empty;
                    getFlora();
                }
            }
            catch (Exception ex) { ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> Swal('MENSAJE!', '" + ex.Message + "!','success')</Script>"); }
        }