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