]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/articulos.c
Paso el fin de línea a formato Unix (perdon tenia que verlo para estudiar :P).
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
index 5c6c27e70504797440b2f836ede71f68a0b4286b..a555775f1ef680f1464d14f87611ac8563079e56 100644 (file)
@@ -14,6 +14,8 @@ static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
 
 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
 
+static void dump_articulos(char *tmpfile);
+
 #ifdef TP_PRIMER_ENTREGA
 /* Manejo de la lista doble */
 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
 #ifdef TP_PRIMER_ENTREGA
 /* Manejo de la lista doble */
 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
@@ -115,7 +117,12 @@ t_LstArticulos *art_cargar(t_Parametros *param)
                PERR("Voy a agregar un indice");
                emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, param->ind_art[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[2].tam_bloque, 1);
                emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, param->ind_art[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[1].tam_bloque, 0);
                PERR("Voy a agregar un indice");
                emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, param->ind_art[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[2].tam_bloque, 1);
                emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, param->ind_art[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[1].tam_bloque, 0);
-               emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, param->ind_art[0].tipo_arbol, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
+
+               /* Para secuencial indexado el indice primario siempre es el B+ */
+               if ((param->tipo_arch_art != T4) && (param->tipo_arch_art != T5))
+                       emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, param->ind_art[0].tipo_arbol, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
+               else
+                       emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B_PLUS, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
                if (!tmp->fp) {
                        PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
                        free(tmp);
                if (!tmp->fp) {
                        PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
                        free(tmp);
@@ -133,17 +140,18 @@ t_LstArticulos *art_cargar(t_Parametros *param)
                                        prop = xml_get_prop(node, "NroArtículo");
                                        art.numero = atoi(prop);
                                        xmlFree(prop);
                                        prop = xml_get_prop(node, "NroArtículo");
                                        art.numero = atoi(prop);
                                        xmlFree(prop);
-                                       strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
-                                       art.desc[50] = '\0'; /* Me aseguro de que este */
-                                       strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
-                                       art.presentacion[30] = '\0'; /* Me aseguro de que este */
-                                       strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
-                                       art.existencia[8] = '\0'; /* Me aseguro de que este */
-                                       strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
-                                       strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
-                                       art.pvu[8] = '\0'; /* Me aseguro de que este */
-                                       strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
-                                       art.emin[8] = '\0'; /* Me aseguro de que este */
+                                       strcpy(art.desc, prop = xml_get_prop(node, "Descripción")); xmlFree(prop);
+                                       art.desc[50] = '\0';
+                                       strcpy(art.presentacion, prop = xml_get_prop(node, "Presentación")); xmlFree(prop);
+                                       art.presentacion[30] = '\0';
+                                       strcpy(art.existencia, prop = xml_get_prop(node, "Existencia")); xmlFree(prop);
+                                       art.existencia[8] = '\0';
+                                       strcpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación")); xmlFree(prop);
+                                       art.ubicacion[30] = '\0';
+                                       strcpy(art.pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
+                                       art.pvu[8] = '\0';
+                                       strcpy(art.emin, prop = xml_get_prop(node, "Emín")); xmlFree(prop);
+                                       art.emin[8] = '\0';
                                        /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
                                        save = procesar_guardar_articulo(&art, &size, lst_articulos);
                                        if (save != NULL) {
                                        /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
                                        save = procesar_guardar_articulo(&art, &size, lst_articulos);
                                        if (save != NULL) {
@@ -159,7 +167,6 @@ t_LstArticulos *art_cargar(t_Parametros *param)
        } else {
                PERR("Voy a recuperar desde un archivo");
                tmp->fp = emufs_abrir("articulos");
        } else {
                PERR("Voy a recuperar desde un archivo");
                tmp->fp = emufs_abrir("articulos");
-               fprintf(stderr, "PTR=%p %p\n", tmp, tmp->fp);
                if (tmp->fp == NULL) {
                        PERR("No se pudo cargar archivo de articulos.");
                        free(tmp);
                if (tmp->fp == NULL) {
                        PERR("No se pudo cargar archivo de articulos.");
                        free(tmp);
@@ -206,7 +213,7 @@ t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
        error = 0;
        k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
        tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
        error = 0;
        k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
        tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
-       if (error) {
+       if (tmp == NULL) {
                free(art);
                return NULL;
        }
                free(art);
                return NULL;
        }
@@ -528,80 +535,53 @@ void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArti
        return tmp;
 }
 
        return tmp;
 }
 
-void art_reformatear(int tipo, int tam_bloque, int tam_reg)
+void art_reformatear(t_Parametros *param)
 {
 {
-#ifdef NO_SE_PUEDE_USAR
-       EMUFS *nuevo, *old;
-       EMUFS_REG_ID *indices, id;
-       EMUFS_REG_SIZE indices_total, i, size;
-       t_Articulo art;
-       t_LstArticulos *lst_nueva;
-       int error;
+       char *tmpfile = "tmp_file.xxx";
+       FILE *fp;
        char *save;
        char *save;
+       int error;
+       EMUFS_REG_SIZE size;
+       EMUFS *emu;
+       t_Articulo articulo, *un_articulo;
 
 
-       PERR("==== EMPIEZO ====\n");
-       old = lst_articulos->fp;
-
-       /* Creo el nuevo file */
-       PERR("Creo el archivo\n");
-       nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
-       if (nuevo == NULL) {
-               PERR("ARCHIVO NUEVO NO CREADO");
-               return;
-       }
+       /* Creo el archivo temporal con los datos actuales */
+       PERR("Creo dumpfile");
+       dump_articulos(tmpfile);
+       PERR("Listo");
 
 
-       /* Creo la nueva lista */
-       lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
-       lst_nueva->primero = NULL;
-       lst_nueva->fp = nuevo;
-
-       /* Leo los indices del archivo viejo */
-       PERR("Obtengo Indices\n");
-       indices = emufs_idx_get(old, &indices_total);
-       if (indices == NULL) {
-               art_liberar(lst_nueva);
-               return;
-       }
+       /* Destruyo el EMUFS y todos sus indices */
+       art_liberar(NULL);
 
 
-       PERR("Proceso datos\n");
-       for(i=0; i<indices_total; i++) {
-               error = 0;
-               save = old->leer_registro(old, indices[i], &size, &error);
-               if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
+       /* vuelvo a crear el EMUFS y sus indices (esto deberia pisar lo actual) */
+       PERR("Creando todo de nuevo")
+       
+       lst_articulos = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
+       lst_articulos->primero = NULL;
+       
+       emu = lst_articulos->fp = emufs_crear("articulos", param->tipo_arch_art, param->tam_bloque_art, sizeof(t_Articulo));
+       emufs_agregar_indice(emu, "presentacion", IND_EXAHUSTIVO, param->ind_art[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[2].tam_bloque, 1);
+       emufs_agregar_indice(emu, "desc", IND_EXAHUSTIVO, param->ind_art[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[1].tam_bloque, 0);
+       if ((param->tipo_arch_art != T4) && (param->tipo_arch_art != T5))
+               emufs_agregar_indice(emu, "codigo", IND_PRIMARIO, param->ind_art[0].tipo_arbol, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
+       else
+               emufs_agregar_indice(emu, "codigo", IND_PRIMARIO, IND_B_PLUS, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
+       PERR("Listo");
+       /* Ahora solo resta volver a meter todos los datos en el archivo */
+       fp = fopen(tmpfile, "rb");
+       PERR("Agregando datos de nuevo")
+       while (!feof(fp)) {
+               if (fread(&articulo, sizeof(t_Articulo), 1, fp) != 1) continue;
+               save = procesar_guardar_articulo(&articulo, &size, lst_articulos);
+               if (save) {
+                       error = 0;
+                       emu->grabar_registro(emu, save, size, &error);
                        free(save);
                        free(save);
-                       /* Lei un registro Ok. Lo salvo en el archivo nuevo */
-                       save = procesar_guardar_articulo(&art, &size, lst_nueva);
-                       if (save) {
-                               error = 0;
-                               id = nuevo->grabar_registro(nuevo, save, size, &error);
-                               agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
-                               free(save);
-                       }
                }
        }
                }
        }
-
-       free(indices);
-
-       PERR("Libero lo viejo\n");
-       art_liberar(lst_articulos);
-
-       PERR("Ahora tengo lo nuevo\n");
-       lst_articulos = lst_nueva;
-
-       /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
-       free(lst_articulos->fp->nombre);
-       lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
-       strcpy(lst_articulos->fp->nombre, "articulos");
-       
-       /* Muevo los archivos! */
-       /* TODO : Poner en otro lugar mas generico! */
-       PERR("Renombre!!\n");
-       rename("emufs_tmp.dat", "articulos.dat");
-       rename("emufs_tmp.idx", "articulos.idx");
-       rename("emufs_tmp.fsc", "articulos.fsc");
-       rename("emufs_tmp.did", "articulos.did");
-       PERR("==== TERMINE ====\n");
-#endif
+       fclose(fp);
+       PERR("Todo listo");
+       unlink(tmpfile);
 }
 
 int art_exportar_xml(const char *filename)
 }
 
 int art_exportar_xml(const char *filename)
@@ -689,6 +669,7 @@ void art_consultas_codigos(char *s, t_Lista *lista)
        t_Articulo *articulo;
        t_Form *form;
        INDICE *idx;
        t_Articulo *articulo;
        t_Form *form;
        INDICE *idx;
+       int editar;
 
        idx = lst_articulos->fp->indices;
 
 
        idx = lst_articulos->fp->indices;
 
@@ -716,30 +697,35 @@ void art_consultas_codigos(char *s, t_Lista *lista)
                k = menor;
        if (k.i_clave > mayor.i_clave)
                hasta_codigo = mayor.i_clave;
                k = menor;
        if (k.i_clave > mayor.i_clave)
                hasta_codigo = mayor.i_clave;
-       fprintf(stderr, "k.i_clave = %d  -- hasta_codigo = %d\n", k.i_clave, hasta_codigo);
+
        while ((k.i_clave != -1) && (k.i_clave <= hasta_codigo)) {
                PERR("BUSCO ARTICULO");
        while ((k.i_clave != -1) && (k.i_clave <= hasta_codigo)) {
                PERR("BUSCO ARTICULO");
+               fprintf(stderr, "CLAVE = %d\n", k.i_clave);
                articulo = art_obtener(lst_articulos, k.i_clave, &dummy);
                PERR("LO TENGO");
                if (articulo != NULL) {
                        PERR("AGREGO A LA LISTA");
                articulo = art_obtener(lst_articulos, k.i_clave, &dummy);
                PERR("LO TENGO");
                if (articulo != NULL) {
                        PERR("AGREGO A LA LISTA");
-                       fprintf(stderr, "%d - %s\n", articulo->numero, articulo->desc);
                        lista_agregar_fila(lista,
                        lista_agregar_fila(lista,
-                                                               articulo->numero,
-                                                               articulo->desc,
-                                                               articulo->existencia,
-                                                               articulo->emin
-                                               );
+                               articulo->numero,
+                               articulo->desc,
+                               articulo->existencia,
+                               articulo->emin
+                       );
                        free(articulo);
                }
                PERR("OBTENGO SIGUIENTE CLAVE");
                k = idx->obtener_sig_clave(idx, k); 
                        free(articulo);
                }
                PERR("OBTENGO SIGUIENTE CLAVE");
                k = idx->obtener_sig_clave(idx, k); 
-               fprintf(stderr, "k.i_clave = %d  -- hasta_codigo = %d\n", k.i_clave, hasta_codigo);
        }
 
        curs_set(0);
        }
 
        curs_set(0);
-       lista_ejecutar(lista);
+       editar = lista_ejecutar(lista);
        curs_set(1);
        curs_set(1);
+
+       if (editar != -1) {
+               char cc[20];
+               sprintf(cc, "%d", editar);
+               art_modificar(cc);
+       }
 }
 
 void art_consultas_stock(char *s, t_Lista *lista)
 }
 
 void art_consultas_stock(char *s, t_Lista *lista)
@@ -749,6 +735,7 @@ void art_consultas_stock(char *s, t_Lista *lista)
        t_Form *form;
        INDICE *idx;
        float por;
        t_Form *form;
        INDICE *idx;
        float por;
+       int editar;
 
        idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, "desc");
        if (idx == NULL) PERR("NO SE ENCUENTRA INDICE DESC!!!");
 
        idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, "desc");
        if (idx == NULL) PERR("NO SE ENCUENTRA INDICE DESC!!!");
@@ -799,8 +786,13 @@ void art_consultas_stock(char *s, t_Lista *lista)
        }
 
        curs_set(0);
        }
 
        curs_set(0);
-       lista_ejecutar(lista);
+       editar = lista_ejecutar(lista);
        curs_set(1);
        curs_set(1);
+       if (editar != -1) {
+               char cc[20];
+               sprintf(cc, "%d", editar);
+               art_modificar(cc);
+       }
 }
 
 void art_consultas_cambiar_precio(char *s, t_Lista *lista)
 }
 
 void art_consultas_cambiar_precio(char *s, t_Lista *lista)
@@ -849,7 +841,6 @@ void art_consultas_cambiar_precio(char *s, t_Lista *lista)
                        datos = idx->buscar_entradas(idx, k, &cant);
                else
                        datos = emufs_buscar_registros(lst_articulos->fp, "desc", desc, &cant);
                        datos = idx->buscar_entradas(idx, k, &cant);
                else
                        datos = emufs_buscar_registros(lst_articulos->fp, "desc", desc, &cant);
-               fprintf(stderr, "obtuve %d claves para %s\n", cant, desc);
                for(i=0; i<cant; i++) {
                        error = 1;
                        k1.i_clave = datos[i].id;
                for(i=0; i<cant; i++) {
                        error = 1;
                        k1.i_clave = datos[i].id;
@@ -871,7 +862,6 @@ void art_consultas_cambiar_precio(char *s, t_Lista *lista)
                                 * claves con repeticion
                                 */
                                PERR("=== MODIFICANDO ===");
                                 * claves con repeticion
                                 */
                                PERR("=== MODIFICANDO ===");
-                               fprintf(stderr, "Desc=%s , PVU=%s, Codigo=%d\n", articulo.desc, articulo.pvu, articulo.numero);
                                lst_articulos->fp->modificar_registro(lst_articulos->fp, k1, tmp, size, &error, datos[i]);
                                PERR("===     FIN     ===");
                        }
                                lst_articulos->fp->modificar_registro(lst_articulos->fp, k1, tmp, size, &error, datos[i]);
                                PERR("===     FIN     ===");
                        }
@@ -886,7 +876,7 @@ void art_consultas_cambiar_precio(char *s, t_Lista *lista)
 
 void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
 {
 
 void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
 {
-       int i, cant, error;
+       int i, cant, error, editar;
        char desc[51], *tmp;
        t_Articulo articulo;
        t_Form *form;
        char desc[51], *tmp;
        t_Articulo articulo;
        t_Form *form;
@@ -932,8 +922,13 @@ void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
        }
        if (datos) free(datos);
        curs_set(0);
        }
        if (datos) free(datos);
        curs_set(0);
-       lista_ejecutar(lista);
+       editar = lista_ejecutar(lista);
        curs_set(1);
        curs_set(1);
+       if (editar != -1) {
+               char cc[20];
+               sprintf(cc, "%d", editar);
+               art_modificar(cc);
+       }
        
 }
 
        
 }
 
@@ -953,8 +948,10 @@ void art_consultas(char *s)
        
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
        
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
+       werase(win1);
        werase(win);
        box(win, 0, 0);
        werase(win);
        box(win, 0, 0);
+       wrefresh(win1);
        wrefresh(win);
        
        /* Creo la lista donde mostrar la consulta*/
        wrefresh(win);
        
        /* Creo la lista donde mostrar la consulta*/
@@ -987,8 +984,8 @@ void art_consultas(char *s)
                lista_clear(lista);
                werase(win1);
                werase(win);
                lista_clear(lista);
                werase(win1);
                werase(win);
-               wrefresh(win1);
                box(win, 0, 0);
                box(win, 0, 0);
+               wrefresh(win1);
                wrefresh(win);
        }
        werase(win1);
                wrefresh(win);
        }
        werase(win1);
@@ -1040,7 +1037,6 @@ void mostrar_art(WINDOW *win, CLAVE k, char *s, INDICE *idx)
                        free(art);
                        art = NULL;
                } else {
                        free(art);
                        art = NULL;
                } else {
-                       fprintf(stderr, "Tengo %d datos\n", cant);
                        error = 1;
                        k.i_clave = datos[0].id;
                        PERR("Leo el primer dato");
                        error = 1;
                        k.i_clave = datos[0].id;
                        PERR("Leo el primer dato");
@@ -1092,7 +1088,9 @@ void art_recorrer_con_indice(char *s)
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
        werase(win);
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
        werase(win);
+       werase(win1);
        box(win, 0, 0);
        box(win, 0, 0);
+       wrefresh(win1);
        wrefresh(win);
 
        PERR("Obtengo clave menor");
        wrefresh(win);
 
        PERR("Obtengo clave menor");
@@ -1103,6 +1101,7 @@ void art_recorrer_con_indice(char *s)
 
        mostrar_art(win1, k, s, idx);
        wrefresh(win1);
 
        mostrar_art(win1, k, s, idx);
        wrefresh(win1);
+       wrefresh(win);
        PERR("Sigue el usuario");
        curs_set(0);
        stack[0] = k;
        PERR("Sigue el usuario");
        curs_set(0);
        stack[0] = k;
@@ -1125,8 +1124,10 @@ void art_recorrer_con_indice(char *s)
                                continue;
                }
                werase(win1);
                                continue;
                }
                werase(win1);
+               werase(win);
                mostrar_art(win1, k, s, idx);
                wrefresh(win1);
                mostrar_art(win1, k, s, idx);
                wrefresh(win1);
+               wrefresh(win);
        }
        curs_set(1);
 
        }
        curs_set(1);
 
@@ -1164,7 +1165,9 @@ void art_ver_ventas()
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
        werase(win);
        win = newwin(LINES-4, COLS-2, 2, 1);
        win1 = derwin(win, LINES-6, COLS-4, 1, 1);
        werase(win);
+       werase(win1);
        box(win, 0, 0);
        box(win, 0, 0);
+       wrefresh(win1);
        wrefresh(win);
        
        /* El usuario ingresa rango a listar */
        wrefresh(win);
        
        /* El usuario ingresa rango a listar */
@@ -1179,6 +1182,8 @@ void art_ver_ventas()
        form_destruir(form);
        werase(win1);
        wrefresh(win1);
        form_destruir(form);
        werase(win1);
        wrefresh(win1);
+       werase(win);
+       wrefresh(win);
 
        /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
        /*idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, "emision");*/
 
        /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
        /*idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, "emision");*/
@@ -1275,10 +1280,8 @@ void art_actualizar_stock(int numero, int cv)
                         */
                        PERR("Guardando modificacion de Stock");
                        error = 0;
                         */
                        PERR("Guardando modificacion de Stock");
                        error = 0;
-                       fprintf(stderr, "PTR=%p %p\n", lst_articulos, lst_articulos->fp);
                        fp = lst_articulos->fp;
                        PERR("Pase1");
                        fp = lst_articulos->fp;
                        PERR("Pase1");
-                       fprintf(stderr, "METODO : %p\n", fp->modificar_registro);
                        fp->modificar_registro(fp, k, tmp, size, &error, dummy1);
                        PERR("Pase2");
                        PERR("Listo");
                        fp->modificar_registro(fp, k, tmp, size, &error, dummy1);
                        PERR("Pase2");
                        PERR("Listo");
@@ -1287,3 +1290,30 @@ void art_actualizar_stock(int numero, int cv)
        }
 }
 
        }
 }
 
+static void dump_articulos(char *tmpfile)
+{
+       t_Articulo *art;
+       EMUFS_REG_ID id;
+       FILE *fp;
+       CLAVE k;
+       INDICE *idx;
+
+       idx = lst_articulos->fp->indices;
+
+       k = idx->obtener_menor_clave(idx);
+
+       if (!(fp = fopen(tmpfile, "wb"))) return;
+       
+       while (k.i_clave != -1) {
+               art = art_obtener(lst_articulos, k.i_clave, &id);
+               if (art != NULL) {
+                       fwrite(art, 1, sizeof(t_Articulo), fp);
+                       free(art);
+               }
+               k = idx->obtener_sig_clave(idx, k);
+       }
+
+       fclose(fp);
+       return;
+}
+