#include "facturas.h"
+#include "idx.h"
static t_LstFacturas *lst_facturas;
{
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;
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);
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");
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;
}