]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/facturas.c
* cosas que no subi ayer en el trabajo
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
index 08eee4af1f7c9853e2f6f724d71cbd7ed702613a..2b0a305965a9ed07f8e01babbca9b391e08596d3 100644 (file)
@@ -1,5 +1,6 @@
 
 #include "facturas.h"
+#include "idx.h"
 
 static t_LstFacturas *lst_facturas;
 
@@ -137,11 +138,11 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
 {
        xmlDocPtr document;
        xmlNode *node, *inicio;
-       int error = 0, cant_items;
+       int error = 0, cant_items, i;
        char *prop;
        EMUFS_REG_SIZE size;
        t_LstFacturas *tmp;
-       EMUFS_REG_ID id; /*, *indices, indices_cant;*/
+       EMUFS_REG_ID id, *indices, indices_cant;
        
        lst_facturas = NULL;
 
@@ -151,6 +152,7 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
        tmp->primero = NULL;
 
        if (filename != NULL) {
+               PERR("Voy a cargar de un XML");
                document = xmlReadFile(filename, "ISO-8859-1",0);
                if (document == NULL) {
                        free(tmp);
@@ -187,7 +189,7 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
                                if (strcmp(node->name, "FACTURA") == 0) {
                                        t_Factura fact;
                                        void *save;
-                                       memset(&fact, '*', sizeof(t_Factura));
+                                       memset(&fact, 0, sizeof(t_Factura));
                                        prop = xml_get_prop(node, "NroFac");
                                        fact.numero = atoi(prop); xmlFree(prop);
                                        prop = xml_get_prop(node, "PorcDoI");
@@ -222,20 +224,36 @@ t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
                xmlFreeDoc(document);
                xmlCleanupParser();
        } else {
-/*             tmp->fp = emufs_abrir("articulos");*/
+               PERR("Voy a recuperar desde un archivo");
+               tmp->fp = emufs_abrir("facturas");
+               if (tmp->fp == NULL) {
+                       PERR("No se pudo cargar archivo de facturas!");
+                       free(tmp);
+                       lst_facturas = NULL;
+                       return NULL;
+               }
+               tmp->fp_texto = emufs_abrir("notas");
+               if (tmp->fp_texto == NULL) {
+                       PERR("No se pudo cargar archivo de notas!");
+                       emufs_destruir(tmp->fp);
+                       free(tmp);
+                       lst_facturas = NULL;
+                       return NULL;
+               }
+
                /* Ahora trato de recuperar la info */
-/*             indices = emufs_idx_get(tmp->fp, &indices_cant);
+               indices = emufs_idx_get(tmp->fp, &indices_cant);
                for(i=0; i<indices_cant; i++) {
-                       t_Articulo art;
-                       void *save;*/
+                       t_Factura art;
+                       void *save;
                        /* Leo el registro */
-/*                     save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
-                       if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
-                               agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
+                       save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
+                       if (procesar_leer_factura(&art, save, size, tmp) == 1) {
+                               agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
                                free(save);
                        }
                }
-               free(indices);*/
+               free(indices);
        }
        return lst_facturas;
 }