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