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


C# WSGestion.WSGestion类代码示例

本文整理汇总了C#中WSGestion.WSGestion的典型用法代码示例。如果您正苦于以下问题:C# WSGestion.WSGestion类的具体用法?C# WSGestion.WSGestion怎么用?C# WSGestion.WSGestion使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: btn_asignar_ServerClick

        protected void btn_asignar_ServerClick(object sender, EventArgs e)
        {
            if ((codigo_seleccionado_centro != 0) && (codigo_seleccionado_medico !=0))
            {
                try
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Centro_Medico_Veterinario obj = new WSGestion.MOD_Centro_Medico_Veterinario();

                    obj.CME_id_centro_atencion = codigo_seleccionado_centro;
                    obj.CME_id_medico_veterinario = codigo_seleccionado_medico;
                    obj.CME_activo = "";

                    wsgest.CRE_Centro_Medico_Veterinario(obj);
                    Carga_Grid_Asignado();
                }
                catch (Exception exc)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                    mensaje_alerta = exc.ToString();
                    titulo_mensaje_alerta = "Error: ";
                    Alert_Mensaje.Visible = true;
                }
            }
            else
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = "Debe de seleccionar un Centro de Atención y Médico Veterinario";
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:33,代码来源:frm_Asignacion_Medico_Centro.aspx.cs

示例2: lbkUsuarios_Click

 protected void lbkUsuarios_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Response.Redirect("frm_Home.aspx");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Viene"] = null;
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:7,代码来源:rpt_Salida_Inventario.aspx.cs

示例3: Page_Load

 protected void Page_Load(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString()) + "Codigo"] == null)
     {
         Response.Redirect("frm_Index.aspx");
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] != null)
     {
         FormAccion = Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"].ToString();
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] != null)
     {
         centro = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"]);
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] != null)
     {
         codigo_seleccionado = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"]);
     }
     if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"] != null)
     {
         codigo_seleccionado_dueno = Convert.ToInt32(Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"]);
     }
     if (!IsPostBack)
     {
         Cargar();
         Carga_Detallle();
     }
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:30,代码来源:frm_Reporte_Expediente_Imprimir.aspx.cs

示例4: btn_agregar_Click

 protected void btn_agregar_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     if ((txt_articulo.Value != "") && (txt_articulo.Value != "NONE")&&(txt_cantidad.Value != "0") && (txt_cantidad.Value != ""))
     {
         buscar = txt_articulo.Value;
         Carga_Lineas();
         if (Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"] != null)
         {
             Alert_Mensaje.Attributes["class"] = "alert alert-danger";
             mensaje_alerta = Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"].ToString();
             titulo_mensaje_alerta = "Error: ";
             Alert_Mensaje.Visible = true;
             Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Error"] = null;
         }
         txt_cantidad.Value = "1";
         txt_articulo.Value = "";
     }
     else
     {
         Alert_Mensaje.Attributes["class"] = "alert alert-warning";
         mensaje_alerta = "No se ha digitado ningún código de artículo o cantidad inválida";
         titulo_mensaje_alerta = "Advertencia: ";
         Alert_Mensaje.Visible = true;
     }
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:27,代码来源:frm_Ejecutar_Cita.aspx.cs

示例5: btn_certificado_ServerClick

        protected void btn_certificado_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");

                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Dueno"] = wsgest.SEL_Mascota_Dueno(codigo_seleccionado);
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select_Mascota"] = codigo_seleccionado.ToString();
                    codigo_seleccionado = 0;
                    Response.Redirect("frm_Grid_Certificado_Vacuna.aspx");
                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:30,代码来源:frm_Grid_Mascota.aspx.cs

示例6: Page_Load

        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["Centro_Seleccionado"] != null)
            {
                centro_seleccionado = Convert.ToInt32(Session["Centro_Seleccionado"]);
            }
            if (Session["Codigo_Select"] != null)
            {
                codigo_seleccionado = Convert.ToInt32(Session["Codigo_Select"]);
            }
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            if (!IsPostBack)
            {
                DataTable dt = wsgest.REP_Detalle_Entrada_Inventario(centro_seleccionado, centro_seleccionado);
                ReportViewer1.ProcessingMode = ProcessingMode.Local;

                LocalReport localReport = ReportViewer1.LocalReport;
                localReport.ReportPath = "ReportesWebs/RPT_Entrada_Inventario.rdlc";

                ReportDataSource ds = new ReportDataSource();
                ds.Name = "DS_Reporte_Entrada_Inventario"; // nombre del asistente para informes
                ds.Value = dt;
                ReportViewer1.LocalReport.DataSources.Clear();

                localReport.DataSources.Add(ds);
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:28,代码来源:frm_rpt_Entrada_Inventario.aspx.cs

示例7: btn_detalle_ServerClick

        protected void btn_detalle_ServerClick(object sender, EventArgs e)
        {
            try
            {
                WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Expediente"] = codigo_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Expediente"] = centro_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro"] = centro;
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Perfil"] = perfil;
                    codigo_seleccionado = 0;
                    Response.Redirect("frm_Grid_Detalle_Expediente.aspx");
                }

            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:32,代码来源:frm_Grid_Expediente.aspx.cs

示例8: btn_editar_ServerClick

        protected void btn_editar_ServerClick(object sender, EventArgs e)
        {
            WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
            wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Select"] = codigo_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Seleccionado"] = centro_seleccionado.ToString();
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Sucursal_Seleccionado"] = sucursal_seleccionado.ToString();
                    codigo_seleccionado = 0;
                    Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Editar";
                    Response.Redirect("frm_Bodega.aspx");
                }

            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:32,代码来源:frm_Grid_Bodega.aspx.cs

示例9: btn_eliminar_ServerClick

        protected void btn_eliminar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if ((codigo_seleccionado_asignado_centro == 0) && (codigo_seleccionado_asignado_medico == 0))
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {

                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    wsgest.DEL_Centro_Medico_Veterinario(codigo_seleccionado_asignado_medico,codigo_seleccionado_asignado_centro);
                    Carga_Grid_Asignado();

                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:29,代码来源:frm_Asignacion_Medico_Centro.aspx.cs

示例10: btn_regresar_ServerClick

 protected void btn_regresar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Response.Redirect(Accion_Viene);
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Viene"] = null;
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:7,代码来源:rpt_Salida_Inventario.aspx.cs

示例11: btn_guardar_ServerClick

        protected void btn_guardar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (FormAccion == "Agregar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Articulo obj = new WSGestion.MOD_Articulo();

                    obj.ART_descripcion = txt_descripcion.Value;
                    obj.ART_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value);
                    obj.ART_id_articulo = Convert.ToInt32(txt_codigo.Value);
                    obj.ART_codigo_barras = txt_codigo_barras.Value;
                    obj.ART_id_categoria_articulo = Convert.ToInt32(dl_categoria_articulo.SelectedValue);
                    obj.ART_id_unidad_medida = Convert.ToInt32(dl_unidad_medida.SelectedValue);
                    obj.ART_tipo = dl_tipo_articulo.SelectedValue;
                    obj.PRE_art_precio = Convert.ToDecimal(txt_precio.Value, CultureInfo.CreateSpecificCulture("en-US"));
                    obj.PRE_art_fecha = txt_fecha.Text;

                    if (wsgest.CRE_Articulo(obj))
                        Response.Redirect("frm_Grid_Articulo.aspx");
                    else
                    {
                        Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                        mensaje_alerta = "En la creación del artículo a nivel de la base de datos ";
                        titulo_mensaje_alerta = "Error: ";
                        Alert_Mensaje.Visible = true;
                    }
                }

                if (FormAccion == "Editar")
                {
                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    WSGestion.MOD_Articulo obj = new WSGestion.MOD_Articulo();

                    obj.ART_descripcion = txt_descripcion.Value;
                    obj.ART_id_centro_atencion = Convert.ToInt32(txt_cea_codigo.Value);
                    obj.ART_id_articulo = Convert.ToInt32(txt_codigo.Value);
                    obj.ART_codigo_barras = txt_codigo_barras.Value;
                    obj.ART_id_categoria_articulo = Convert.ToInt32(dl_categoria_articulo.SelectedValue);
                    obj.ART_id_unidad_medida = Convert.ToInt32(dl_unidad_medida.SelectedValue);
                    obj.ART_tipo = dl_tipo_articulo.SelectedValue;
                    obj.PRE_art_precio = Convert.ToDecimal(txt_precio.Value, CultureInfo.CreateSpecificCulture("en-US"));
                    obj.PRE_art_fecha = txt_fecha.Text;
                    wsgest.UPD_Articulo(obj);
                    Response.Redirect("frm_Grid_Articulo.aspx");
                }
            }

            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:59,代码来源:frm_Articulo.aspx.cs

示例12: btn_aplicar_ServerClick

        protected void btn_aplicar_ServerClick(object sender, EventArgs e)
        {
            try
            {
                if (codigo_seleccionado == 0)
                {
                    Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                    mensaje_alerta = "No se ha seleccionado ningún registro";
                    titulo_mensaje_alerta = "Advertencia: ";
                    Alert_Mensaje.Visible = true;
                }
                else
                {
                    int valor;

                    WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
                    wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
                    valor = wsgest.APL_Entrada_inventario(codigo_seleccionado, centro_seleccionado, bodega_seleccionado, sucursal_seleccionado);

                    switch (valor)
                    {
                        case 0:
                            Carga_Grid();
                            break;
                        case 1:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "El documento no contiene líneas para ser procesadas";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        case 2:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "La entrada seleccionada ya se encuentra aplicada";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        case 3:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "La entrada seleccionada ya se encuentra anulada";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                        default:
                            Alert_Mensaje.Attributes["class"] = "alert alert-warning";
                            mensaje_alerta = "Error en la ejecución del proceso en la base de datos";
                            titulo_mensaje_alerta = "Advertencia: ";
                            Alert_Mensaje.Visible = true;
                            break;
                    }
                }
            }
            catch (Exception exc)
            {
                Alert_Mensaje.Attributes["class"] = "alert alert-danger";
                mensaje_alerta = exc.ToString();
                titulo_mensaje_alerta = "Error: ";
                Alert_Mensaje.Visible = true;
            }
        }
开发者ID:juahidma,项目名称:petnet-web,代码行数:59,代码来源:frm_Grid_Entrada_Inventario.aspx.cs

示例13: btn_Salir_Click

 protected void btn_Salir_Click(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString()) + "usu_id_usuario"] = null;
     wsgest.UPD_Usuario_Session(codigo_usuario, "N", Session.SessionID.ToString());
     Response.Redirect("frm_Index.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:8,代码来源:Main.Master.cs

示例14: btn_agregar_ServerClick

 protected void btn_agregar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Agregar";
     codigo_seleccionado = 0;
     Response.Redirect("frm_Bodega.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:8,代码来源:frm_Grid_Bodega.aspx.cs

示例15: btn_agregar_ServerClick

 protected void btn_agregar_ServerClick(object sender, EventArgs e)
 {
     WSGestion.WSGestion wsgest = new WSGestion.WSGestion();
     wsgest.Url = ConfigurationManager.AppSettings.Get("dirWs");
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"FormAccion"] = "Agregar";
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Codigo_Expediente"] = codigo_expediente;
     Session[wsgest.Get_usu_id_session(Session.SessionID.ToString())+"Centro_Expediente"] = centro_expediente;
     Response.Redirect("frm_Detalle_Expediente.aspx");
 }
开发者ID:juahidma,项目名称:petnet-web,代码行数:9,代码来源:frm_Grid_Detalle_Expediente.aspx.cs


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