}
}
+void imprimir1(WINDOW *win, int y, int x, char *s, char *b)
+{
+ wmove(win, y, x);
+ waddstr(win, s);
+ waddstr(win, b);
+}
+
+void mostrar_fact(WINDOW *win, CLAVE k, char *s, INDICE *idx)
+{
+ t_Factura *fact;
+ EMUFS_REG_ID dummy;
+ int y = 3;
+ char numero[10];
+ /* XXX SOLO PARA CODIGO XXX */
+
+ wattron(win, COLOR_PAIR(COLOR_RED));
+ mvwaddstr(win, 1, 5, "Recorriendo Facturas por indice ");
+ waddstr(win, s);
+ wattroff(win, COLOR_PAIR(COLOR_RED));
+
+ wattron(win, A_BOLD);
+ mvwaddstr(win, 18, 5, "Teclas:");
+ wattroff(win, A_BOLD);
+ mvwaddstr(win, 19, 5, " L = Siguiente");
+ mvwaddstr(win, 20, 5, " K = Anterior");
+
+ if (strcmp(s, "numero") == 0) {
+ fact = fact_buscar(lst_facturas, k.i_clave, &dummy, &dummy);
+ } else {
+ INDICE_DATO *datos;
+ EMUFS_REG_SIZE size;
+ int cant, error;
+ char *tmp;
+
+ fact = (t_Factura *)malloc(sizeof(t_Factura));
+ /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
+ PERR("Busco todos los datos que tengan esta clave");
+ datos = idx->buscar_entradas(idx, k, &cant);
+ if (datos == NULL) {
+ free(fact);
+ fact = NULL;
+ } else {
+ fprintf(stderr, "Tengo %d datos\n", cant);
+ k.i_clave = datos[0].id;
+ PERR("Leo el primer dato");
+ fprintf(stderr, "ID = %ld en bloque %ld\n", datos[0].id, datos[0].bloque);
+ error = 1;
+ tmp = lst_facturas->fp->leer_registro(lst_facturas->fp, k, &size, &error);
+ if (tmp == NULL) {
+ free(fact);
+ fact = NULL;
+ } else {
+ if (procesar_leer_factura(fact, tmp, size, lst_facturas) != 0) {
+ free(fact);
+ free(tmp);
+ fact = NULL;
+ }
+ }
+ free(datos);
+ }
+ }
+
+ if (fact != NULL) {
+ sprintf(numero, "%08d", fact->numero);
+
+ imprimir1(win, y++, 5, "Numero : ", numero);
+ imprimir1(win, y++, 5, "Fecha Emision : ", fact->emision);
+ imprimir1(win, y++, 5, "Fecha Vto : ", fact->vencimiento);
+ imprimir1(win, y++, 5, "Estado : ", fact->estado);
+ imprimir1(win, y++, 5, "Forma de Pago : ", fact->fp);
+ imprimir1(win, y++, 5, "Cuenta Cte : ", fact->ctacte);
+ imprimir1(win, y++, 5, "Cheque Nro : ", fact->cheque);
+ sprintf(numero, "%08d", fact->numero_remito);
+ imprimir1(win, y++, 5, "Remito : ", numero);
+ sprintf(numero, "%.2f", fact->procdoi);
+ imprimir1(win, y++, 5, "% Descuento : ", numero);
+ sprintf(numero, "%d", fact->cant_items);
+ imprimir1(win, y++, 5, "Cant de Items : ", numero);
+
+ if (fact->items) free(fact->items);
+ free(fact);
+ } else {
+ PERR("NO EXISTE LA FACTURA");
+ }
+}
+
+void fact_recorrer_con_indice(char *s)
+{
+ WINDOW *win, *win1;
+ INDICE *idx;
+ CLAVE stack[1000]; /* shhhh */
+ CLAVE k;
+ int stack_pos=0, c;
+
+ PERR("Busco indice");
+ idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, s);
+
+ win = newwin(LINES-4, COLS-2, 2, 1);
+ win1 = derwin(win, LINES-6, COLS-4, 1, 1);
+ werase(win);
+ box(win, 0, 0);
+ wrefresh(win);
+
+ PERR("Obtengo clave menor");
+ k = idx->obtener_menor_clave(idx);
+
+ PERR("Muestro el primer elemento");
+ mostrar_fact(win1, k, s, idx);
+ wrefresh(win1);
+ PERR("Sigue el usuario");
+ curs_set(0);
+ stack[0] = k;
+ while ((c=wgetch(win)) != 13) {
+ switch (c) {
+ case 'L':
+ case 'l':
+ stack[stack_pos++] = k; /* Guardo la clave para poder volver */
+ k = idx->obtener_sig_clave(idx, k);
+ /* TODO Verificar que no me pase del fin */
+ break;
+ case 'K':
+ case 'k':
+ /* recupero la anterior */
+ stack_pos--;
+ if (stack_pos < 0) stack_pos = 0;
+ k = stack[stack_pos];
+ break;
+ default:
+ continue;
+ }
+ werase(win1);
+ mostrar_fact(win1, k, s, idx);
+ wrefresh(win1);
+ }
+ curs_set(1);
+
+ werase(win1);
+ werase(win);
+ wrefresh(win);
+ delwin(win);
+}
+
+void fact_recorrer()
+{
+ char *ind[5] = {"numero", "emision", "vto", "cheque", "ctacte"};
+ MENU(mi_menu) {
+ MENU_OPCION("Numero", "Recorrer por Indice Numero Factura"),
+ MENU_OPCION("Emision", "Recorrer por Indice Fecha Emision"),
+ MENU_OPCION("Vencimiento", "Recorrer por Indice Fecha Vencimiento"),
+ MENU_OPCION("Cheque", "Recorrer por Indice Cheque"),
+ MENU_OPCION("Cuenta Cte", "Recorrer por Indice Cuenta Cte"),
+ MENU_OPCION("Volver", "Volver al menu anterior.")
+ };
+ int opt;
+ while ((opt = menu_ejecutar(mi_menu, 6, "Recorrer Facturas")) != 5) {
+ fact_recorrer_con_indice(ind[opt]);
+ }
+}
+