]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - gui/articulos.c
* Restauro el XML al original mandado por la catedra
[z.facultad/75.06/emufs.git] / gui / articulos.c
index 81bb20725e0f468cee3304aedc97206db4617c67..28c0cc13ca5945077af4193175209ca7fe819550 100644 (file)
@@ -13,7 +13,7 @@ t_LstArticulos *art_cargar(const char *filename)
        t_LstArticulos *tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
        if (tmp == NULL) return NULL;
 
-       document = xmlParseFile(filename);
+       document = xmlReadFile(filename, "ISO-8859-1",0);
        if (document == NULL) {
                free(tmp);
                return NULL;
@@ -65,13 +65,13 @@ t_LstArticulos *art_cargar(const char *filename)
        for ( ; node ; node = node->next) {
                if (node->type == XML_ELEMENT_NODE) {
                        if (strcmp(node->name, "ARTICULO") == 0) {
-                               strncpy(tmp->array[cant].numero, xmlGetProp(node, "NroArticulo"), 8);
-                               strncpy(tmp->array[cant].desc, xmlGetProp(node, "Descripcion"), 50);
-                               strncpy(tmp->array[cant].presentacion, xmlGetProp(node, "Presentacion"), 30);
+                               strncpy(tmp->array[cant].numero, xmlGetProp(node, "NroArtículo"), 8);
+                               strncpy(tmp->array[cant].desc, xmlGetProp(node, "Descripción"), 50);
+                               strncpy(tmp->array[cant].presentacion, xmlGetProp(node, "Presentación"), 30);
                                strncpy(tmp->array[cant].existencia, xmlGetProp(node, "Existencia"), 8);
-//                             strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);
+//                     /       strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);
                                strncpy(tmp->array[cant].pvu, xmlGetProp(node, "PVU"), 8);
-                               strncpy(tmp->array[cant].emin, xmlGetProp(node, "Emin"), 8);
+                               strncpy(tmp->array[cant].emin, xmlGetProp(node, "Emín"), 8);
                                ++cant;
                        }
                }