本文整理汇总了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;
}
}
示例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;
}
示例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();
}
}
示例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;
}
}
示例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;
}
}
示例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);
}
}
示例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;
}
}
示例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;
}
}
示例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;
}
}
示例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;
}
示例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;
}
}
示例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;
}
}
示例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");
}
示例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");
}
示例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");
}