(facturas-e-iv)

add de botones para acceder a las facturas electronicas
factuas-e/omterface-compras
Gerardo 2023-08-08 12:08:07 +02:00
parent f7045e9273
commit 9eace6128b
3 changed files with 41 additions and 10 deletions

View File

@ -1432,6 +1432,7 @@ namespace Exferia_Aplicacion.General
public static string G_STR_OPCION_COM_FACTURACABECERA_AUX_BOLSA = "COM_FACTURACABECERA_AUX_BOLSA"; public static string G_STR_OPCION_COM_FACTURACABECERA_AUX_BOLSA = "COM_FACTURACABECERA_AUX_BOLSA";
public static string G_STR_OPCION_COM_FACTURACABECERA_AUX_2 = "COM_FACTURACABECERA_AUX_2"; public static string G_STR_OPCION_COM_FACTURACABECERA_AUX_2 = "COM_FACTURACABECERA_AUX_2";
public static string G_STR_OPCION_COM_PAGO = "COM_PAGO"; public static string G_STR_OPCION_COM_PAGO = "COM_PAGO";
public static string G_STR_OPCION_COM_IMPORTA = "COM_ IMPORTA";
public static string G_STR_OPCION_COM_PAGO_BOLSA = "COM_PAGO_BOLSA"; public static string G_STR_OPCION_COM_PAGO_BOLSA = "COM_PAGO_BOLSA";
public static string G_STR_OPCION_COM_PEDIDOCOMPRACABECERA = "COM_PEDIDOCOMPRACABECERA"; public static string G_STR_OPCION_COM_PEDIDOCOMPRACABECERA = "COM_PEDIDOCOMPRACABECERA";
public static string G_STR_OPCION_COM_PEDIDOCOMPRACABECERA_BOLSA = "COM_PEDIDOCOMPRACABECERA_BOLSA"; public static string G_STR_OPCION_COM_PEDIDOCOMPRACABECERA_BOLSA = "COM_PEDIDOCOMPRACABECERA_BOLSA";
@ -1455,6 +1456,7 @@ namespace Exferia_Aplicacion.General
public static string G_STR_OPCION_COM_LISTADOPROCESOS = "COM_LISTADOPROCESOS"; public static string G_STR_OPCION_COM_LISTADOPROCESOS = "COM_LISTADOPROCESOS";
public static string G_STR_OPCION_COM_LISTADOPROCESOS_DESDEBOLSA = "COM_LISTADOPROCESOS_DESDEBOLSA"; public static string G_STR_OPCION_COM_LISTADOPROCESOS_DESDEBOLSA = "COM_LISTADOPROCESOS_DESDEBOLSA";
public static string G_STR_OPCION_COM_FACTURA_ELECTRONICA = "COM_FACTURA_ELECTRONICA";
#endregion #endregion
#region CTA #region CTA

View File

@ -291,6 +291,7 @@ namespace Exferia_Compras._3_Vistas.Listados
//Añadir al listado //Añadir al listado
lst_INTERNO_Listado_BotonesAuxiliares_Modelo_MenuIzquierda.Add(mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_DELALL); lst_INTERNO_Listado_BotonesAuxiliares_Modelo_MenuIzquierda.Add(mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_DELALL);
//Boton de procesos //Boton de procesos
INTERNO_Listado_BotonesAuxiliares_Modelo mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL = new INTERNO_Listado_BotonesAuxiliares_Modelo(); INTERNO_Listado_BotonesAuxiliares_Modelo mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL = new INTERNO_Listado_BotonesAuxiliares_Modelo();
mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL.Boton_Visible = true; mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL.Boton_Visible = true;
@ -303,12 +304,28 @@ namespace Exferia_Compras._3_Vistas.Listados
mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL.Listado_Botones_Izquierdos = lst_INTERNO_Listado_BotonesAuxiliares_Modelo_MenuIzquierda; mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL.Listado_Botones_Izquierdos = lst_INTERNO_Listado_BotonesAuxiliares_Modelo_MenuIzquierda;
return mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL; return mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL;
} }
public override INTERNO_Listado_BotonesAuxiliares_Modelo BOTONAUXILIAR_3() public override INTERNO_Listado_BotonesAuxiliares_Modelo BOTONAUXILIAR_3()
{ {
return null; //inportar facturas electronicas
INTERNO_Listado_BotonesAuxiliares_Modelo mdl_INTERNO_Listado_Facturas_electronicas = new INTERNO_Listado_BotonesAuxiliares_Modelo();
mdl_INTERNO_Listado_Facturas_electronicas.Boton_Visible = true;
mdl_INTERNO_Listado_Facturas_electronicas.Boton_Nombre = "Importar Facturas Electrónicas";
mdl_INTERNO_Listado_Facturas_electronicas.Boton_Imagen = Imagenes.G_ENUM_IMAGENES.G_IMG_FACTURA_E;
mdl_INTERNO_Listado_Facturas_electronicas.Tipo_Seleccion_Registros = G_ENUM_TIPOSELECCION_LISTADO.Todos_id;
mdl_INTERNO_Listado_Facturas_electronicas.Nombre_Libreria = Variables.G_STR_LIBRERIA_COMPRAS;
mdl_INTERNO_Listado_Facturas_electronicas.Nombre_Clase = Variables.G_STR_LIBRERIA_OPCIONES;
mdl_INTERNO_Listado_Facturas_electronicas.Nombre_Procedimiento = Variables.G_STR_OPCION_COM_FACTURA_ELECTRONICA;
mdl_INTERNO_Listado_Facturas_electronicas.Opcion_Principal = Variables.G_STR_OPCION_COM_IMPORTA;
mdl_INTERNO_Listado_Facturas_electronicas.MenuBotonesIzquierdo = false;
//mdl_INTERNO_Listado_BotonesAuxiliares_Modelo_FINAL.Listado_Botones_Izquierdos = lst_INTERNO_Listado_BotonesAuxiliares_Modelo_MenuIzquierda;
return mdl_INTERNO_Listado_Facturas_electronicas;
} }
public override INTERNO_Listado_BotonesAuxiliares_Modelo BOTONAUXILIAR_4() public override INTERNO_Listado_BotonesAuxiliares_Modelo BOTONAUXILIAR_4()

View File

@ -3184,5 +3184,17 @@ namespace Exferia_Compras
#endregion #endregion
private void COM_FACTURA_ELECTRONICA(string _str_Opcion,
P_Base _frm_P_Base_Origen,
INTERNO_ValoresGenerales_Modelo _mdl_INTERNO_ValoresGenerales_Modelo,
DateTime _dtt_FechaPorDefecto,
List<dynamic> _lst_FilaSelecionadas)
{
//TODOO FACTURA ELECTRONICA PCION AQUI DE FACTURA ELECTRONICA
int I = 0;
I++;
}
} }
} }