]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/articulos.c
Muchas Muchas modificaciones que fueron surgiendo. Ya andan los indices multiples
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
index 50219f8d622f4bfce66b78b6d2f1a135df941bdf..3b0cefc3aec0549c9d214a68fd429ec907163878 100644 (file)
@@ -3,6 +3,8 @@
 #include "idx.h"
 #include "gui.h"
 #include "common.h"
+#include "lista.h"
+#include "menu.h"
 
 static t_LstArticulos *lst_articulos;
 
@@ -75,6 +77,7 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
        char *prop;
        EMUFS_REG_SIZE size;
        t_LstArticulos *tmp;
+       t_Articulo *un_articulo;
        lst_articulos = NULL;
        EMUFS_REG_ID id;
 
@@ -111,6 +114,7 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
                tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                /* Agrego los indices */
                PERR("Voy a agregar un indice");
+               emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512);
                emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
                if (!tmp->fp) {
                        PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
@@ -214,29 +218,23 @@ t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
        if (lst == NULL) lst = lst_articulos;
        if (lst == NULL) return NULL;
 
-       fprintf(stderr, "Me piden que busque en el indice el codigo=%d\n", numero);
        (*id) = -1; /* XXX Ver que se hacia con esto */
        art = (t_Articulo *)malloc(sizeof(t_Articulo));
        /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
        error = 0;
-       PERR("Genero clave");
        k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
-       PERR("Buscando en archivo");
        tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
-       PERR("Lo encontre?");
        if (error) {
                free(art);
                return NULL;
        }
 
-       printf("SI LO ENCONTRE!!!!");
        if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
                free(art);
                free(tmp);
                return NULL;
        }
 
-       printf("RETORNANDO el articulo procesado");
        free(tmp);
        return art;
 }
@@ -341,8 +339,8 @@ void art_eliminar(char *s)
 {
        WINDOW *win;
        t_Articulo *articulo;
-       t_Reg_Articulo *nodo;
        EMUFS_REG_ID id;
+       CLAVE k;
 
        win = newwin(8, COLS-2, 13, 1);
        box(win, 0, 0);
@@ -357,15 +355,8 @@ void art_eliminar(char *s)
                wrefresh(win);
                getch();
        } else {
-               nodo = lst_articulos->primero;
-               while (nodo) {
-                       if (nodo->numero == articulo->numero) {
-                               lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
-                               eliminar_nodo_articulo(lst_articulos, nodo);
-                               break;
-                       }
-                       nodo = nodo->sig;
-               }
+               k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&(articulo->numero));
+               lst_articulos->fp->borrar_registro(lst_articulos->fp, k);
                free(articulo);
        }
 
@@ -379,11 +370,12 @@ void art_agregar(char *s)
        WINDOW *win;
        t_Form *form;
        t_Articulo art;
-       t_Reg_Articulo *nuevo;
        void *save;
        int error = 0, existe;
        EMUFS_REG_SIZE size;
        EMUFS_REG_ID id;
+       INDICE_DATO dato;
+       CLAVE k;
 
        win = newwin(9, COLS-2, 13, 1);
        box(win, 0, 0);
@@ -401,15 +393,11 @@ void art_agregar(char *s)
        
        art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
        existe = 0;
-       nuevo = lst_articulos->primero;
-       while (nuevo) {
-               if (art.numero == nuevo->numero) {
-                       existe = 1;
-                       break;
-               }
-               nuevo = nuevo->sig;
-       }
-       
+       /* Me dijo que no existe el codigo */
+       k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
+       dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
+       if (dato.id != -1) existe = 1;
+
        if (!existe) {
                strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
                strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
@@ -429,8 +417,6 @@ void art_agregar(char *s)
                                wattroff(win, COLOR_PAIR(COLOR_YELLOW));
                                wrefresh(win);
                                getch();
-                       } else {
-                               agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
                        }
                        free(save);
                }
@@ -649,3 +635,205 @@ int art_exportar_xml(const char *filename)
        return 1;
 }
 
+/* Dejo el test para que no se pierda */
+void art_consultas_old(char *s)
+{
+       /* TEST DE LISTA! */
+       char txt[80];
+       int i;
+       t_Lista *lista;
+       WINDOW *win, *win1;
+
+       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);
+       
+       /* Creo la lista */
+       lista = lista_crear(3, win1, COLS-4, LINES-6);
+
+       /* Creo las columnas */
+       lista_agregar_columna(lista, DATO_INT, 0, 8);
+       lista_agregar_columna(lista, DATO_STR, 10, 45);
+       lista_agregar_columna(lista, DATO_FLOAT, 60, 10);
+
+       /* Agrego unos datos a ver que pasa */
+       /* Pongo 100 y rezo */
+       for(i=0; i<100; i++) {
+               sprintf(txt, "Texto del item %d", i);
+               lista_agregar_fila(lista, i, txt, (rand()%100)/100.0f);
+       }
+       curs_set(0);
+       lista_ejecutar(lista);
+       curs_set(1);
+       wrefresh(win1);
+       wrefresh(win);
+       werase(win1);
+       werase(win);
+       wrefresh(win);
+       delwin(win);
+}
+
+void art_consultas_codigos(char *s)
+{
+       EMUFS_REG_ID dummy;
+       int desde_codigo, hasta_codigo;
+       int i;
+       t_Articulo *articulo;
+       t_Lista *lista;
+       t_Form *form;
+       WINDOW *win, *win1;
+
+       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);
+       
+       /* El usuario ingresa rango a listar */
+       form = form_crear(win1);
+       form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
+       form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
+
+       form_ejecutar(form, 2, 2);
+
+       desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
+       hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
+
+       form_destruir(form);
+       werase(win1);
+       wrefresh(win1);
+
+       /* Creo la lista donde mostrar la consulta*/
+       /* Muestro solo info relevante */
+       lista = lista_crear(4, win1, COLS-4, LINES-6);
+
+       /* Creo las columnas */
+       lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
+       lista_agregar_columna(lista, DATO_STR, 10, 51);  /* desc       */
+       lista_agregar_columna(lista, DATO_STR, 55, 9);   /* existencia */
+       lista_agregar_columna(lista, DATO_STR, 65, 9);   /* enim       */
+
+       /* Leo los datos desde el archivo */
+       for(i=desde_codigo; i<=hasta_codigo; i++) {
+               articulo = art_obtener(lst_articulos, i, &dummy);
+               if (articulo != NULL) {
+                       lista_agregar_fila(lista,
+                                                               articulo->numero,
+                                                               articulo->desc,
+                                                               articulo->existencia,
+                                                               articulo->emin
+                                               );
+               }
+       }
+
+       curs_set(0);
+       lista_ejecutar(lista);
+       curs_set(1);
+       
+       wrefresh(win1);
+       wrefresh(win);
+       werase(win1);
+       werase(win);
+       wrefresh(win);
+       delwin(win);
+}
+
+void art_consultas_desc(char *s)
+{
+       int i, cant, error;
+       char *desc, *tmp;
+       t_Articulo articulo;
+       t_Lista *lista;
+       t_Form *form;
+       INDICE_DATO *datos;
+       WINDOW *win, *win1;
+       CLAVE k;
+       EMUFS *fs;
+       EMUFS_REG_SIZE size;
+
+       fs = lst_articulos->fp;
+
+       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);
+       
+       /* El usuario ingresa rango a listar */
+       form = form_crear(win1);
+       form_agregar_widget(form, INPUT, "Descripcion", 50, "");
+
+       form_ejecutar(form, 2, 2);
+
+       tmp = form_obtener_valor_char(form, "Descripcion");
+       desc = malloc(sizeof(char)*(strlen(tmp)+1));
+       strcpy(desc, tmp);
+
+       form_destruir(form);
+       werase(win1);
+       wrefresh(win1);
+
+       /* Creo la lista donde mostrar la consulta*/
+       /* Muestro solo info relevante */
+       lista = lista_crear(4, win1, COLS-4, LINES-6);
+
+       /* Creo las columnas */
+       lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
+       lista_agregar_columna(lista, DATO_STR, 10, 51);  /* desc       */
+       lista_agregar_columna(lista, DATO_STR, 55, 9);   /* existencia */
+       lista_agregar_columna(lista, DATO_STR, 65, 9);   /* enim       */
+
+       /* Leo los datos desde el archivo */
+       datos = emufs_buscar_registros(fs, "desc", desc, &cant);
+       for(i=0; i<cant; i++) {
+               k.i_clave = datos[i].id;
+               error = 1;
+               tmp = (char *)fs->leer_registro(fs, k, &size, &error);
+               if (tmp != NULL) {
+                       procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
+                       lista_agregar_fila(lista,
+                                                       articulo.numero,
+                                                       articulo.desc,
+                                                       articulo.existencia,
+                                                       articulo.emin
+                                       );
+                       free(tmp);
+               } else {
+                       PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
+               }
+       }
+
+       curs_set(0);
+       lista_ejecutar(lista);
+       curs_set(1);
+       
+       wrefresh(win1);
+       wrefresh(win);
+       werase(win1);
+       werase(win);
+       wrefresh(win);
+       delwin(win);
+}
+
+void art_consultas(char *s)
+{
+       MENU(mi_menu) {
+               MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
+               MENU_OPCION("por Descripcion", "Consulta por descripcion"),
+               MENU_OPCION("Volver", "Volver al menu anterior.")
+       };
+       int opt;
+       
+       while ((opt = menu_ejecutar(mi_menu, 3, "Consulta de Articulos")) != 2) {
+               switch (opt) {
+                       case 0:
+                               art_consultas_codigos(s);
+                       break;
+                       case 1:
+                               art_consultas_desc(s);
+               }
+       }
+}
+