]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
b7d8ee09f453946dc766ab7fa5dd3f67242a210d
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
1
2 #include "articulos.h"
3 #include "idx.h"
4 #include "gui.h"
5 #include "common.h"
6
7 static t_LstArticulos *lst_articulos;
8
9 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
10
11 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
12 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
13
14 /* Manejo de la lista doble */
15 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
16 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
17 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
18
19 t_LstArticulos *art_get_lst()
20 {
21         return lst_articulos;
22 }
23
24 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
25 {
26         if (nodo == NULL) return 0;
27         if (nodo->ant == NULL) {
28                 /* Me piden borrar el primer nodo */
29                 if (nodo->sig) {
30                         nodo->sig->ant = NULL;
31                 }
32                 lst->primero = nodo->sig;
33         } else {
34                 if (nodo->sig) {
35                         nodo->sig->ant = nodo->ant;
36                 }
37                 nodo->ant->sig = nodo->sig;
38         }
39         free(nodo);
40         return 1;
41 }
42
43 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
44 {
45         t_Reg_Articulo *tmp;
46         if (reg == EMUFS_NOT_FOUND) return NULL;
47         tmp = malloc(sizeof(t_Reg_Articulo));
48         if (tmp == NULL) return NULL;
49         tmp->sig = tmp->ant = NULL;
50         tmp->num_reg = reg;
51         tmp->numero = num;
52
53         return tmp;
54 }
55
56 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
57 {
58         if (nodo == NULL) return 0;
59
60         if (lst->primero) {
61                 lst->primero->ant = nodo;
62                 nodo->sig = lst->primero;
63                 lst->primero = nodo;
64         } else {
65                 lst->primero = nodo;
66         }
67         return 1;
68 }
69
70 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
71 {
72         xmlDocPtr document;
73         xmlNode *node, *inicio;
74         int error = 0, i;
75         char *prop;
76         EMUFS_REG_SIZE size;
77         t_LstArticulos *tmp;
78         lst_articulos = NULL;
79         EMUFS_REG_ID id, *indices, indices_cant;
80
81         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
82         if (tmp == NULL) return NULL;
83         lst_articulos = tmp;
84         tmp->primero = NULL;
85
86         if (filename != NULL) {
87                 PERR("Voy a crear desde un XML");
88                 document = xmlReadFile(filename, "ISO-8859-1",0);
89                 if (document == NULL) {
90                         free(tmp);
91                         lst_articulos = NULL;
92                         return NULL;
93                 }
94
95                 inicio = NULL;
96                 node = xmlDocGetRootElement(document);
97                 /* Busco el TAG principal "ARTICULOS" */
98                 while (node) {
99                         if (node->type == XML_ELEMENT_NODE) {
100                                 if (strcmp(node->name, "ARTICULOS") == 0) {
101                                         inicio = node->children;
102                                         break;
103                                 }
104                         }
105                         node = node->next;
106                 }
107 #ifdef DEBUG
108                 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
109 #endif
110                 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
111                 for (node=inicio ; node ; node = node->next) {
112                         if (node->type == XML_ELEMENT_NODE) {
113                                 if (strcmp(node->name, "ARTICULO") == 0) {
114                                         t_Articulo art;
115                                         void *save;
116                                         memset(&art, '*', sizeof(t_Articulo));
117                                         prop = xml_get_prop(node, "NroArtículo");
118                                         art.numero = atoi(prop);
119                                         xmlFree(prop);
120                                         strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
121                                         art.desc[50] = '\0'; /* Me aseguro de que este */
122                                         strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
123                                         art.presentacion[30] = '\0'; /* Me aseguro de que este */
124                                         strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
125                                         art.existencia[8] = '\0'; /* Me aseguro de que este */
126                                         strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
127                                         strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
128                                         art.pvu[8] = '\0'; /* Me aseguro de que este */
129                                         strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
130                                         art.emin[8] = '\0'; /* Me aseguro de que este */
131                                         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
132                                         save = procesar_guardar_articulo(&art, &size, lst_articulos);
133                                         if (save != NULL) {
134                                                 error = 0;
135                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
136                                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
137                                                 free(save);
138                                         }
139                                 }
140                         }
141                 }
142                 xmlFreeDoc(document);
143                 xmlCleanupParser();
144         } else {
145                 PERR("Voy a recuperar desde un archivo");
146                 tmp->fp = emufs_abrir("articulos");
147                 if (tmp->fp == NULL) {
148                         PERR("No se pudo cargar archivo de articulos.");
149                         free(tmp);
150                         lst_articulos = NULL;
151                         return NULL;
152                 }
153                 /* Ahora trato de recuperar la info */
154                 indices = emufs_idx_get(tmp->fp, &indices_cant);
155                 for(i=0; i<indices_cant; i++) {
156                         t_Articulo art;
157                         void *save;
158                         /* Leo el registro */
159                         error = 0;
160                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
161                         if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
162                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
163                                 free(save);
164                         }
165                 }
166                 free(indices);
167         }
168
169         return tmp;
170 }
171
172 int art_liberar(t_LstArticulos *l)
173 {
174         t_Reg_Articulo *del;
175         if (l == NULL) l = lst_articulos;
176         if (l == NULL) return 1;
177
178         emufs_destruir(l->fp);
179         while (l->primero) {
180                 del = l->primero;
181                 l->primero = l->primero->sig;
182                 free(del);
183         }
184         free(l);
185
186         lst_articulos = NULL;
187         return 0;
188 }
189
190 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
191 {
192         t_Articulo *art;
193         t_Reg_Articulo *nodo;
194         void *tmp;
195         int error = 0;
196         EMUFS_REG_SIZE size;
197         int n = numero;
198
199         if (lst == NULL) lst = lst_articulos;
200         if (lst == NULL) return NULL;
201         nodo = lst->primero;
202         while (nodo) {
203                 if (n == nodo->numero) {
204                         (*id) = nodo->num_reg;
205                         art = (t_Articulo *)malloc(sizeof(t_Articulo));
206                         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
207                         error = 0;
208                         tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
209                         
210                         if (error) {
211                                 free(art);
212                                 return NULL;
213                         }
214
215                         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
216                                 free(art);
217                                 free(tmp);
218                                 return NULL;
219                         }
220                         free(tmp);
221                         return art;
222                 }
223                 nodo = nodo->sig;
224         }
225
226         return NULL;
227 }
228
229 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
230 {
231         t_Form *form;
232         t_Articulo *articulo;
233
234         form = form_crear(win);
235         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
236         form_ejecutar(form, 1,1);
237         articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
238         form_destruir(form);
239
240         return articulo;
241 }
242
243 void art_modificar(char *s)
244 {
245         WINDOW *win;
246         t_Form *form;
247         t_Articulo *articulo;
248         char num[11];
249         void *tmp;
250         int error;
251         EMUFS_REG_SIZE size;
252         EMUFS_REG_ID id;
253
254         win = newwin(9, COLS-2, 13, 1);
255         box(win, 0, 0);
256         wrefresh(win);
257
258         if (s == NULL) {
259                 articulo = art_form_buscar(win, &id);
260         } else {
261                 id = atoi(s);
262                 /* Leo el registro directamente */
263                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
264                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
265                 error = 0;
266                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
267                 if (error) {
268                         free(articulo);
269                         articulo = NULL;
270                 } else {
271                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
272                                 free(articulo);
273                                 articulo = NULL;
274                         }
275                         free(tmp);
276                 }
277         }
278
279         if (articulo != NULL) {
280                 form = form_crear(win);
281                 sprintf(num, "%08d", articulo->numero);
282                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
283                 form_es_modificable(form, "Numero de Artículo" , 0);
284                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
285                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
286                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
287                 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
288                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
289                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
290                 form_ejecutar(form, 1,1);
291
292                 /* Actualizar registro */
293                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
294                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
295                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
296                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
297                 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
298                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
299                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
300                 /* Ya actualice los datos, ahora veo de grabarlos */
301                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
302                 if (tmp) {
303                         error = 0;
304                         lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
305                         free(tmp);
306                 }
307                 
308                 form_destruir(form);
309                 free(articulo);
310         } else {        
311                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
312                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
313                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
314                 wrefresh(win);
315                 getch();
316         }
317         werase(win);
318         wrefresh(win);
319         delwin(win);
320 }
321
322 void art_eliminar(char *s)
323 {
324         WINDOW *win;
325         t_Articulo *articulo;
326         t_Reg_Articulo *nodo;
327         EMUFS_REG_ID id;
328
329         win = newwin(8, COLS-2, 13, 1);
330         box(win, 0, 0);
331         wrefresh(win);
332
333         articulo = art_form_buscar(win, &id);
334
335         if (articulo == NULL) {
336                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
337                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
338                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
339                 wrefresh(win);
340                 getch();
341         } else {
342                 nodo = lst_articulos->primero;
343                 while (nodo) {
344                         if (nodo->numero == articulo->numero) {
345                                 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
346                                 eliminar_nodo_articulo(lst_articulos, nodo);
347                                 break;
348                         }
349                         nodo = nodo->sig;
350                 }
351                 free(articulo);
352         }
353
354         werase(win);
355         wrefresh(win);
356         delwin(win);
357 }
358
359 void art_agregar(char *s)
360 {
361         WINDOW *win;
362         t_Form *form;
363         t_Articulo art;
364         t_Reg_Articulo *nuevo;
365         void *save;
366         int error = 0, existe;
367         EMUFS_REG_SIZE size;
368         EMUFS_REG_ID id;
369
370         win = newwin(9, COLS-2, 13, 1);
371         box(win, 0, 0);
372         wrefresh(win);
373
374         form = form_crear(win);
375         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
376         form_agregar_widget(form, INPUT, "Descripción", 50, "");
377         form_agregar_widget(form, INPUT, "Presentación", 30, "");
378         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
379         form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
380         form_agregar_widget(form, INPUT, "PVU", 8, "");
381         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
382         form_ejecutar(form, 1,1);
383         
384         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
385         existe = 0;
386         nuevo = lst_articulos->primero;
387         while (nuevo) {
388                 if (art.numero == nuevo->numero) {
389                         existe = 1;
390                         break;
391                 }
392                 nuevo = nuevo->sig;
393         }
394         
395         if (!existe) {
396                 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
397                 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
398                 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
399                 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
400                 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
401                 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
402
403                 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
404                 save = procesar_guardar_articulo(&art, &size, lst_articulos);
405                 if (save != NULL) {
406                         error = 0;
407                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
408                         if (error) {
409                                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
410                                 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
411                                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
412                                 wrefresh(win);
413                                 getch();
414                         } else {
415                                 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
416                         }
417                         free(save);
418                 }
419         } else {
420                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
421                 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
422                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
423                 wrefresh(win);
424                 getch();
425         }
426         form_destruir(form);
427
428         werase(win);
429         wrefresh(win);
430         delwin(win);
431 }
432
433 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
434 {
435         char *fin, *ini;
436         switch (lst->fp->tipo) {
437                 case T1:
438                 case T2:
439                         ini = (char *)src;
440                         /* Copio el primer campo, esto es facil :-) */
441                         memset(dst, 0, sizeof(t_Articulo));
442                         memcpy(&dst->numero, ini, sizeof(unsigned int));
443                         ini+=sizeof(unsigned int);
444                         /* Ahora empieza el juego */
445                         /* Los \0 son los delimitadores de campo! */
446                         fin = ini;
447                         while (*fin!='\0') fin++;
448                         memcpy(dst->desc, ini, fin-ini+1);
449                         
450                         ini = fin+1;
451                         fin = ini;
452                         while (*fin!='\0') fin++;
453                         memcpy(dst->presentacion, ini, fin-ini+1);
454                         
455                         ini = fin+1;
456                         fin = ini;
457                         while (*fin!='\0') fin++;
458                         memcpy(dst->existencia, ini, fin-ini+1);
459                         
460                         ini = fin+1;
461                         fin = ini;
462                         while (*fin!='\0') fin++;
463                         memcpy(dst->ubicacion, ini, fin-ini+1);
464                         
465                         ini = fin+1;
466                         fin = ini;
467                         while (*fin!='\0') fin++;
468                         memcpy(dst->pvu, ini, fin-ini+1);
469                         
470                         ini = fin+1;
471                         fin = (char *)src+size;
472                         memcpy(dst->emin, ini, fin-ini);
473
474                         break;
475                 case T3:
476                         memcpy(dst, src, sizeof(t_Articulo));
477         }
478
479         return 1; /* Todo ok */
480 }
481
482 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
483 {
484         char *tmp=NULL;
485         int i[7];
486         char *from = (char *)src;
487         switch(lst->fp->tipo) {
488                 case T1:
489                 case T2:
490                         /* Calculo el tamaño que voy a necesitar */
491                         i[0] = sizeof(unsigned int);
492                         i[1] = sizeof(char)*(strlen(src->desc)+1);
493                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
494                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
495                         i[4] = sizeof(char)*(strlen(src->ubicacion)+1); 
496                         i[5] = sizeof(char)*(strlen(src->pvu)+1);
497                         i[6] = sizeof(char)*(strlen(src->emin)+1);
498                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
499                         tmp = (char *)malloc((*size));
500                         if (tmp == NULL) return NULL;
501                         memset(tmp, 0, *size);
502                         memcpy(tmp, &src->numero, i[0]);
503                         memcpy(tmp+i[0], src->desc, i[1]);
504                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
505                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
506                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
507                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
508                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
509                 break;
510                 case T3:
511                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
512                          * registro se vea bien 
513                          */
514                         tmp = (char *)malloc(sizeof(t_Articulo));
515                         memset(tmp, '*', sizeof(t_Articulo));
516                         memcpy(tmp, from, sizeof(t_Articulo));
517                         (*size) = sizeof(t_Articulo);
518         }
519         return tmp;
520 }
521
522 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
523 {
524         EMUFS *nuevo, *old;
525         EMUFS_REG_ID *indices, id;
526         EMUFS_REG_SIZE indices_total, i, size;
527         t_Articulo art;
528         t_LstArticulos *lst_nueva;
529         int error;
530         char *save;
531
532         PERR("==== EMPIEZO ====\n");
533         old = lst_articulos->fp;
534
535         /* Creo el nuevo file */
536         PERR("Creo el archivo\n");
537         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
538         if (nuevo == NULL) {
539                 PERR("ARCHIVO NUEVO NO CREADO");
540                 return;
541         }
542
543         /* Creo la nueva lista */
544         lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
545         lst_nueva->primero = NULL;
546         lst_nueva->fp = nuevo;
547
548         /* Leo los indices del archivo viejo */
549         PERR("Obtengo Indices\n");
550         indices = emufs_idx_get(old, &indices_total);
551         if (indices == NULL) {
552                 art_liberar(lst_nueva);
553                 return;
554         }
555
556         PERR("Proceso datos\n");
557         for(i=0; i<indices_total; i++) {
558                 error = 0;
559                 save = old->leer_registro(old, indices[i], &size, &error);
560                 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
561                         free(save);
562                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
563                         save = procesar_guardar_articulo(&art, &size, lst_nueva);
564                         if (save) {
565                                 error = 0;
566                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
567                                 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
568                                 free(save);
569                         }
570                 }
571         }
572
573         free(indices);
574
575         PERR("Libero lo viejo\n");
576         art_liberar(lst_articulos);
577
578         PERR("Ahora tengo lo nuevo\n");
579         lst_articulos = lst_nueva;
580
581         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
582         free(lst_articulos->fp->nombre);
583         lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
584         strcpy(lst_articulos->fp->nombre, "articulos");
585         
586         /* Muevo los archivos! */
587         /* TODO : Poner en otro lugar mas generico! */
588         PERR("Renombre!!\n");
589         rename("emufs_tmp.dat", "articulos.dat");
590         rename("emufs_tmp.idx", "articulos.idx");
591         rename("emufs_tmp.fsc", "articulos.fsc");
592         rename("emufs_tmp.did", "articulos.did");
593         PERR("==== TERMINE ====\n");
594 }
595
596 int art_exportar_xml(const char *filename)
597 {
598         t_Reg_Articulo *nodo;
599         t_Articulo *art;
600         EMUFS_REG_ID id;
601         FILE *fp;
602
603         if (lst_articulos->primero == NULL) return 0;
604
605         nodo = lst_articulos->primero;
606
607         if (!(fp = fopen(filename, "wt"))) return 0;
608         
609         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
610         fprintf(fp, "<ARTICULOS>\n");
611         while (nodo) {
612                 art = art_obtener(lst_articulos, nodo->numero, &id);
613                 if (art != NULL) {
614                         fprintf(fp, "\t<ARTICULO ");
615                         fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
616                         fprintf(fp, "Descripción=\"%s\" ", art->desc);
617                         fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
618                         fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
619                         fprintf(fp, "Existencia=\"%s\" ", art->existencia);
620                         fprintf(fp, "PVU=\"%s\" ", art->pvu);
621                         fprintf(fp, "Emín=\"%s\" />\n", art->emin);
622                         free(art);
623                 }
624                 nodo = nodo->sig;
625         }
626         fprintf(fp, "</ARTICULOS>\n");
627
628         fclose(fp);
629         return 1;
630 }
631