]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
* Agrego recorrido por los indices de factura
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index f859cd6bc11760ab18641498632a823d2680169f..edce8e4d29ef1ee30f3af4b36c748a93a0387e39 100644 (file)
@@ -59,8 +59,8 @@ void print_help(char *s)
 
 int leer_tipo_arbol(char *s) {
        if (strcmp(s, "B") == 0) return 0;
-       if (strcmp(s, "B*") == 0) return 1;
-       if (strcmp(s, "B+") == 0) return 2;
+       if (strcmp(s, "BA") == 0) return 1;
+       if (strcmp(s, "BP") == 0) return 2;
 
        /* Por defecto es un B */
        return 0;
@@ -132,6 +132,27 @@ void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
                                        tmp = xml_get_prop(node, "bloque");
                                        param->ind_fac[1].tam_bloque = atoi(tmp);
                                        free(tmp);
+                               } else if (strcmp(nombre, "vto")==0) {
+                                       tmp = xml_get_prop(node, "tipo");
+                                       param->ind_fac[2].tipo_arbol = leer_tipo_arbol(tmp);
+                                       free(tmp);
+                                       tmp = xml_get_prop(node, "bloque");
+                                       param->ind_fac[2].tam_bloque = atoi(tmp);
+                                       free(tmp);
+                               } else if (strcmp(nombre, "cheque")==0) {
+                                       tmp = xml_get_prop(node, "tipo");
+                                       param->ind_fac[3].tipo_arbol = leer_tipo_arbol(tmp);
+                                       free(tmp);
+                                       tmp = xml_get_prop(node, "bloque");
+                                       param->ind_fac[3].tam_bloque = atoi(tmp);
+                                       free(tmp);
+                               } else if (strcmp(nombre, "ctacte")==0) {
+                                       tmp = xml_get_prop(node, "tipo");
+                                       param->ind_fac[4].tipo_arbol = leer_tipo_arbol(tmp);
+                                       free(tmp);
+                                       tmp = xml_get_prop(node, "bloque");
+                                       param->ind_fac[4].tam_bloque = atoi(tmp);
+                                       free(tmp);
                                }
                                PERR("  LISTO");
                                free(nombre);
@@ -335,11 +356,12 @@ void menu_facturas()
                MENU_OPCION("Baja", "Elimina una factura existente."),
                MENU_OPCION("Modificacion", "Modifica una factura existente."),
                MENU_OPCION("Consultas", "Consulta varias de articulo."),
+               MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
+       while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
                switch (opt) {
                        case 0:
                                fact_agregar(NULL);
@@ -349,8 +371,11 @@ void menu_facturas()
                        break;
                        case 2:
                                fact_modificar(NULL);
+                       break;
                        case 3:
                                fact_consultas(NULL);
+                       case 4:
+                               fact_recorrer();
                }
        }
 }
@@ -362,11 +387,12 @@ void menu_articulos()
                MENU_OPCION("Baja", "Elimina un articulo existente."),
                MENU_OPCION("Modificacion", "Modifica un articulo existente."),
                MENU_OPCION("Consultas", "Consulta varias de articulo."),
+               MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
+       while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) {
                switch (opt) {
                        case 0:
                                art_agregar(NULL);
@@ -379,6 +405,9 @@ void menu_articulos()
                        break;
                        case 3:
                                art_consultas(NULL);
+                       break;
+                       case 4:
+                               art_recorrer();
                }
        }
 
@@ -508,7 +537,7 @@ int main_menu()
                                h = LINES-2;
                                w = COLS-2;
                                win = newwin(h, w, 1, 1);
-                               emufs_indice_b_ver(art_get_lst()->fp->indices, win, w, h, 0);
+                               emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0);
                                delwin(win);
                }
        }