]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
* FIXED : Pedir Clave a Izquierda andando
[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 #include "menu.h"
8
9 static t_LstArticulos *lst_articulos;
10
11 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
12
13 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
14 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
15
16 /* Manejo de la lista doble */
17 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
18 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
19 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
20
21 t_LstArticulos *art_get_lst()
22 {
23         return lst_articulos;
24 }
25
26 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
27 {
28         if (nodo == NULL) return 0;
29         if (nodo->ant == NULL) {
30                 /* Me piden borrar el primer nodo */
31                 if (nodo->sig) {
32                         nodo->sig->ant = NULL;
33                 }
34                 lst->primero = nodo->sig;
35         } else {
36                 if (nodo->sig) {
37                         nodo->sig->ant = nodo->ant;
38                 }
39                 nodo->ant->sig = nodo->sig;
40         }
41         free(nodo);
42         return 1;
43 }
44
45 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
46 {
47         t_Reg_Articulo *tmp;
48         if (reg == EMUFS_NOT_FOUND) return NULL;
49         tmp = malloc(sizeof(t_Reg_Articulo));
50         if (tmp == NULL) return NULL;
51         tmp->sig = tmp->ant = NULL;
52         tmp->num_reg = reg;
53         tmp->numero = num;
54
55         return tmp;
56 }
57
58 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
59 {
60         if (nodo == NULL) return 0;
61
62         if (lst->primero) {
63                 lst->primero->ant = nodo;
64                 nodo->sig = lst->primero;
65                 lst->primero = nodo;
66         } else {
67                 lst->primero = nodo;
68         }
69         return 1;
70 }
71
72 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
73 {
74         xmlDocPtr document;
75         xmlNode *node, *inicio;
76         int error = 0;
77         char *prop;
78         EMUFS_REG_SIZE size;
79         t_LstArticulos *tmp;
80         t_Articulo *un_articulo;
81         lst_articulos = NULL;
82         EMUFS_REG_ID id;
83
84         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
85         if (tmp == NULL) return NULL;
86         lst_articulos = tmp;
87         tmp->primero = NULL;
88
89         if (filename != NULL) {
90                 PERR("Voy a crear desde un XML");
91                 document = xmlReadFile(filename, "ISO-8859-1",0);
92                 if (document == NULL) {
93                         free(tmp);
94                         lst_articulos = NULL;
95                         return NULL;
96                 }
97
98                 inicio = NULL;
99                 node = xmlDocGetRootElement(document);
100                 /* Busco el TAG principal "ARTICULOS" */
101                 while (node) {
102                         if (node->type == XML_ELEMENT_NODE) {
103                                 if (strcmp(node->name, "ARTICULOS") == 0) {
104                                         inicio = node->children;
105                                         break;
106                                 }
107                         }
108                         node = node->next;
109                 }
110 #ifdef DEBUG
111                 fprintf(stderr, "Articulos : Tipo=%d Bloque=%d\n", tipo-1, tam_bloque);
112 #endif
113                 /* Creo el FS */
114                 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
115                 /* Agrego los indices */
116                 PERR("Voy a agregar un indice");
117                 emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, presentacion), 512);
118                 emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512);
119                 emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
120                 if (!tmp->fp) {
121                         PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
122                         free(tmp);
123                         xmlFreeDoc(document);
124                         xmlCleanupParser();
125                         lst_articulos = NULL;
126                         return NULL;
127                 }
128                 for (node=inicio ; node ; node = node->next) {
129                         if (node->type == XML_ELEMENT_NODE) {
130                                 if (strcmp(node->name, "ARTICULO") == 0) {
131                                         t_Articulo art;
132                                         void *save;
133                                         memset(&art, 0, sizeof(t_Articulo));
134                                         prop = xml_get_prop(node, "NroArtículo");
135                                         art.numero = atoi(prop);
136                                         xmlFree(prop);
137                                         strncpy(art.desc, prop = xml_get_prop(node, "Descripción"), 50); xmlFree(prop);
138                                         art.desc[50] = '\0'; /* Me aseguro de que este */
139                                         strncpy(art.presentacion, prop = xml_get_prop(node, "Presentación"), 30); xmlFree(prop);
140                                         art.presentacion[30] = '\0'; /* Me aseguro de que este */
141                                         strncpy(art.existencia, prop = xml_get_prop(node, "Existencia"), 8); xmlFree(prop);
142                                         art.existencia[8] = '\0'; /* Me aseguro de que este */
143                                         strncpy(art.ubicacion, prop = xml_get_prop(node, "Ubicación"), 30); xmlFree(prop);
144                                         strncpy(art.pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
145                                         art.pvu[8] = '\0'; /* Me aseguro de que este */
146                                         strncpy(art.emin, prop = xml_get_prop(node, "Emín"), 8); xmlFree(prop);
147                                         art.emin[8] = '\0'; /* Me aseguro de que este */
148                                         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
149                                         save = procesar_guardar_articulo(&art, &size, lst_articulos);
150                                         if (save != NULL) {
151                                                 error = 0;
152                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
153                                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
154                                                 free(save);
155                                         }
156                                 }
157                         }
158                 }
159                 xmlFreeDoc(document);
160                 xmlCleanupParser();
161         } else {
162 /*      XXX Ahora no necesito leer nada del archivo cuando lo cargo
163  *      pues tengo todo en los indices
164  *
165  *      PERR("Voy a recuperar desde un archivo");
166                 tmp->fp = emufs_abrir("articulos");
167                 if (tmp->fp == NULL) {
168                         PERR("No se pudo cargar archivo de articulos.");
169                         free(tmp);
170                         lst_articulos = NULL;
171                         return NULL;
172                 }
173                  Ahora trato de recuperar la info
174                 indices = emufs_idx_get(tmp->fp, &indices_cant);
175                 for(i=0; i<indices_cant; i++) {
176                         t_Articulo art;
177                         void *save;
178                          Leo el registro
179                         error = 0;
180                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
181                         if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
182                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
183                                 free(save);
184                         }
185                 }
186                 free(indices);
187 */
188         }
189
190         return tmp;
191 }
192
193 int art_liberar(t_LstArticulos *l)
194 {
195         t_Reg_Articulo *del;
196         if (l == NULL) l = lst_articulos;
197         if (l == NULL) return 1;
198
199         emufs_destruir(l->fp);
200         while (l->primero) {
201                 del = l->primero;
202                 l->primero = l->primero->sig;
203                 free(del);
204         }
205         free(l);
206
207         lst_articulos = NULL;
208         return 0;
209 }
210
211 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
212 {
213         t_Articulo *art;
214         void *tmp;
215         int error = 0;
216         EMUFS_REG_SIZE size;
217         CLAVE k;
218
219         if (lst == NULL) lst = lst_articulos;
220         if (lst == NULL) return NULL;
221
222         (*id) = -1; /* XXX Ver que se hacia con esto */
223         art = (t_Articulo *)malloc(sizeof(t_Articulo));
224         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
225         error = 0;
226         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
227         tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
228         if (error) {
229                 free(art);
230                 return NULL;
231         }
232
233         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
234                 free(art);
235                 free(tmp);
236                 return NULL;
237         }
238
239         free(tmp);
240         return art;
241 }
242
243 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
244 {
245         t_Form *form;
246         t_Articulo *articulo;
247
248         form = form_crear(win);
249         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
250         form_ejecutar(form, 1,1);
251         articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
252         form_destruir(form);
253
254         return articulo;
255 }
256
257 void art_modificar(char *s)
258 {
259         WINDOW *win;
260         t_Form *form;
261         t_Articulo *articulo;
262         char num[11];
263         void *tmp;
264         int error;
265         EMUFS_REG_SIZE size;
266         EMUFS_REG_ID codigo;
267
268         win = newwin(9, COLS-2, 13, 1);
269         box(win, 0, 0);
270         wrefresh(win);
271
272         if (s == NULL) {
273                 PERR("Voy a buscar con el formulario");
274                 articulo = art_form_buscar(win, &codigo);
275                 PERR("Ya lo tengo!!!!!!");
276         } else {
277                 codigo = atoi(s);
278                 /* Leo el registro directamente */
279                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
280                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
281                 error = 0;
282                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
283                                                 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
284                 if (error) {
285                         free(articulo);
286                         articulo = NULL;
287                 } else {
288                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
289                                 free(articulo);
290                                 articulo = NULL;
291                         }
292                         free(tmp);
293                 }
294         }
295
296         if (articulo != NULL) {
297                 form = form_crear(win);
298                 sprintf(num, "%08d", articulo->numero);
299                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
300                 form_es_modificable(form, "Numero de Artículo" , 0);
301                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
302                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
303                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
304                 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
305                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
306                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
307                 form_ejecutar(form, 1,1);
308
309                 /* Actualizar registro */
310                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
311                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
312                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
313                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
314                 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
315                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
316                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
317                 /* Ya actualice los datos, ahora veo de grabarlos */
318                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
319                 if (tmp) {
320                         CLAVE k;
321                         error = 0;
322                         k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&articulo->numero);
323                         lst_articulos->fp->modificar_registro(lst_articulos->fp, k, tmp, size, &error);
324                         free(tmp);
325                 }
326                 
327                 form_destruir(form);
328                 free(articulo);
329         } else {        
330                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
331                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
332                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
333                 wrefresh(win);
334                 getch();
335         }
336         werase(win);
337         wrefresh(win);
338         delwin(win);
339 }
340
341 void art_eliminar(char *s)
342 {
343         WINDOW *win;
344         t_Articulo *articulo;
345         EMUFS_REG_ID id;
346         CLAVE k;
347
348         win = newwin(8, COLS-2, 13, 1);
349         box(win, 0, 0);
350         wrefresh(win);
351
352         articulo = art_form_buscar(win, &id);
353
354         if (articulo == NULL) {
355                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
356                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
357                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
358                 wrefresh(win);
359                 getch();
360         } else {
361                 k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&(articulo->numero));
362                 lst_articulos->fp->borrar_registro(lst_articulos->fp, k);
363                 free(articulo);
364         }
365
366         werase(win);
367         wrefresh(win);
368         delwin(win);
369 }
370
371 void art_agregar(char *s)
372 {
373         WINDOW *win;
374         t_Form *form;
375         t_Articulo art;
376         void *save;
377         int error = 0, existe;
378         EMUFS_REG_SIZE size;
379         EMUFS_REG_ID id;
380         INDICE_DATO dato;
381         CLAVE k;
382
383         win = newwin(9, COLS-2, 13, 1);
384         box(win, 0, 0);
385         wrefresh(win);
386
387         form = form_crear(win);
388         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
389         form_agregar_widget(form, INPUT, "Descripción", 50, "");
390         form_agregar_widget(form, INPUT, "Presentación", 30, "");
391         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
392         form_agregar_widget(form, INPUT, "Ubicacion", 30, "");
393         form_agregar_widget(form, INPUT, "PVU", 8, "");
394         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
395         form_ejecutar(form, 1,1);
396         
397         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
398         existe = 0;
399         /* Me dijo que no existe el codigo */
400         k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&art.numero);
401         dato = lst_articulos->fp->indices->existe_entrada(lst_articulos->fp->indices, k);
402         if (dato.id != -1) existe = 1;
403
404         if (!existe) {
405                 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
406                 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
407                 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
408                 strcpy(art.ubicacion, form_obtener_valor_char(form, "Ubicacion"));
409                 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
410                 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
411
412                 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
413                 save = procesar_guardar_articulo(&art, &size, lst_articulos);
414                 if (save != NULL) {
415                         error = 0;
416                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
417                         if (error) {
418                                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
419                                 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
420                                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
421                                 wrefresh(win);
422                                 getch();
423                         }
424                         free(save);
425                 }
426         } else {
427                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
428                 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
429                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
430                 wrefresh(win);
431                 getch();
432         }
433         form_destruir(form);
434
435         werase(win);
436         wrefresh(win);
437         delwin(win);
438 }
439
440 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
441 {
442         char *fin, *ini;
443         switch (lst->fp->tipo) {
444                 case T1:
445                 case T2:
446                         ini = (char *)src;
447                         /* Copio el primer campo, esto es facil :-) */
448                         memset(dst, 0, sizeof(t_Articulo));
449                         memcpy(&dst->numero, ini, sizeof(unsigned int));
450                         ini+=sizeof(unsigned int);
451                         /* Ahora empieza el juego */
452                         /* Los \0 son los delimitadores de campo! */
453                         fin = ini;
454                         while (*fin!='\0') fin++;
455                         memcpy(dst->desc, ini, fin-ini+1);
456                         
457                         ini = fin+1;
458                         fin = ini;
459                         while (*fin!='\0') fin++;
460                         memcpy(dst->presentacion, ini, fin-ini+1);
461                         
462                         ini = fin+1;
463                         fin = ini;
464                         while (*fin!='\0') fin++;
465                         memcpy(dst->existencia, ini, fin-ini+1);
466                         
467                         ini = fin+1;
468                         fin = ini;
469                         while (*fin!='\0') fin++;
470                         memcpy(dst->ubicacion, ini, fin-ini+1);
471                         
472                         ini = fin+1;
473                         fin = ini;
474                         while (*fin!='\0') fin++;
475                         memcpy(dst->pvu, ini, fin-ini+1);
476                         
477                         ini = fin+1;
478                         fin = (char *)src+size;
479                         memcpy(dst->emin, ini, fin-ini);
480
481                         break;
482                 case T3:
483                         memcpy(dst, src, sizeof(t_Articulo));
484         }
485
486         return 1; /* Todo ok */
487 }
488
489 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
490 {
491         char *tmp=NULL;
492         int i[7];
493         char *from = (char *)src;
494         switch(lst->fp->tipo) {
495                 case T1:
496                 case T2:
497                         /* Calculo el tamaño que voy a necesitar */
498                         i[0] = sizeof(unsigned int);
499                         i[1] = sizeof(char)*(strlen(src->desc)+1);
500                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
501                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
502                         i[4] = sizeof(char)*(strlen(src->ubicacion)+1); 
503                         i[5] = sizeof(char)*(strlen(src->pvu)+1);
504                         i[6] = sizeof(char)*(strlen(src->emin)+1);
505                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6];
506                         tmp = (char *)malloc((*size));
507                         if (tmp == NULL) return NULL;
508                         memset(tmp, 0, *size);
509                         memcpy(tmp, &src->numero, i[0]);
510                         memcpy(tmp+i[0], src->desc, i[1]);
511                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
512                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
513                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->ubicacion, i[4]);
514                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->pvu, i[5]);
515                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], src->emin, i[6]);
516                 break;
517                 case T3:
518                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
519                          * registro se vea bien 
520                          */
521                         tmp = (char *)malloc(sizeof(t_Articulo));
522                         memset(tmp, '*', sizeof(t_Articulo));
523                         memcpy(tmp, from, sizeof(t_Articulo));
524                         (*size) = sizeof(t_Articulo);
525         }
526         return tmp;
527 }
528
529 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
530 {
531 #ifdef NO_SE_PUEDE_USAR
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 #endif
603 }
604
605 int art_exportar_xml(const char *filename)
606 {
607         t_Reg_Articulo *nodo;
608         t_Articulo *art;
609         EMUFS_REG_ID id;
610         FILE *fp;
611
612         if (lst_articulos->primero == NULL) return 0;
613
614         nodo = lst_articulos->primero;
615
616         if (!(fp = fopen(filename, "wt"))) return 0;
617         
618         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n\n");
619         fprintf(fp, "<ARTICULOS>\n");
620         while (nodo) {
621                 art = art_obtener(lst_articulos, nodo->numero, &id);
622                 if (art != NULL) {
623                         fprintf(fp, "\t<ARTICULO ");
624                         fprintf(fp, "NroArtículo=\"%d\" ", nodo->numero);
625                         fprintf(fp, "Descripción=\"%s\" ", art->desc);
626                         fprintf(fp, "Presentación=\"%s\" ", art->presentacion);
627                         fprintf(fp, "Ubicación=\"%s\" ", art->ubicacion);
628                         fprintf(fp, "Existencia=\"%s\" ", art->existencia);
629                         fprintf(fp, "PVU=\"%s\" ", art->pvu);
630                         fprintf(fp, "Emín=\"%s\" />\n", art->emin);
631                         free(art);
632                 }
633                 nodo = nodo->sig;
634         }
635         fprintf(fp, "</ARTICULOS>\n");
636
637         fclose(fp);
638         return 1;
639 }
640
641 /* Dejo el test para que no se pierda */
642 void art_consultas_old(char *s)
643 {
644         /* TEST DE LISTA! */
645         char txt[80];
646         int i;
647         t_Lista *lista;
648         WINDOW *win, *win1;
649
650         win = newwin(LINES-4, COLS-2, 2, 1);
651         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
652         werase(win);
653         box(win, 0, 0);
654         wrefresh(win);
655         
656         /* Creo la lista */
657         lista = lista_crear(3, win1, COLS-4, LINES-6);
658
659         /* Creo las columnas */
660         lista_agregar_columna(lista, DATO_INT, 0, 8);
661         lista_agregar_columna(lista, DATO_STR, 10, 45);
662         lista_agregar_columna(lista, DATO_FLOAT, 60, 10);
663
664         /* Agrego unos datos a ver que pasa */
665         /* Pongo 100 y rezo */
666         for(i=0; i<100; i++) {
667                 sprintf(txt, "Texto del item %d", i);
668                 lista_agregar_fila(lista, i, txt, (rand()%100)/100.0f);
669         }
670         curs_set(0);
671         lista_ejecutar(lista);
672         curs_set(1);
673         wrefresh(win1);
674         wrefresh(win);
675         werase(win1);
676         werase(win);
677         wrefresh(win);
678         delwin(win);
679 }
680
681 void art_consultas_codigos(char *s)
682 {
683         EMUFS_REG_ID dummy;
684         int desde_codigo, hasta_codigo;
685         int i;
686         t_Articulo *articulo;
687         t_Lista *lista;
688         t_Form *form;
689         WINDOW *win, *win1;
690
691         win = newwin(LINES-4, COLS-2, 2, 1);
692         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
693         werase(win);
694         box(win, 0, 0);
695         wrefresh(win);
696         
697         /* El usuario ingresa rango a listar */
698         form = form_crear(win1);
699         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
700         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
701
702         form_ejecutar(form, 2, 2);
703
704         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
705         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
706
707         form_destruir(form);
708         werase(win1);
709         wrefresh(win1);
710
711         /* Creo la lista donde mostrar la consulta*/
712         /* Muestro solo info relevante */
713         lista = lista_crear(4, win1, COLS-4, LINES-6);
714
715         /* Creo las columnas */
716         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
717         lista_agregar_columna(lista, DATO_STR, 10, 51);  /* desc       */
718         lista_agregar_columna(lista, DATO_STR, 55, 9);   /* existencia */
719         lista_agregar_columna(lista, DATO_STR, 65, 9);   /* enim       */
720
721         /* Leo los datos desde el archivo */
722         for(i=desde_codigo; i<=hasta_codigo; i++) {
723                 articulo = art_obtener(lst_articulos, i, &dummy);
724                 if (articulo != NULL) {
725                         lista_agregar_fila(lista,
726                                                                 articulo->numero,
727                                                                 articulo->desc,
728                                                                 articulo->existencia,
729                                                                 articulo->emin
730                                                 );
731                 }
732         }
733
734         curs_set(0);
735         lista_ejecutar(lista);
736         curs_set(1);
737         
738         wrefresh(win1);
739         wrefresh(win);
740         werase(win1);
741         werase(win);
742         wrefresh(win);
743         delwin(win);
744 }
745
746 void art_consultas_varias(char *nombre_indice, char *titulo)
747 {
748         int i, cant, error;
749         char *desc, *tmp;
750         t_Articulo articulo;
751         t_Lista *lista;
752         t_Form *form;
753         INDICE_DATO *datos;
754         WINDOW *win, *win1;
755         CLAVE k;
756         EMUFS *fs;
757         EMUFS_REG_SIZE size;
758
759         fs = lst_articulos->fp;
760
761         win = newwin(LINES-4, COLS-2, 2, 1);
762         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
763         werase(win);
764         box(win, 0, 0);
765         wrefresh(win);
766         
767         /* El usuario ingresa rango a listar */
768         form = form_crear(win1);
769         form_agregar_widget(form, INPUT, titulo, 50, "");
770
771         form_ejecutar(form, 2, 2);
772
773         tmp = form_obtener_valor_char(form, titulo);
774         desc = malloc(sizeof(char)*(strlen(tmp)+1));
775         strcpy(desc, tmp);
776
777         form_destruir(form);
778         werase(win1);
779         wrefresh(win1);
780
781         /* Creo la lista donde mostrar la consulta*/
782         /* Muestro solo info relevante */
783         lista = lista_crear(4, win1, COLS-4, LINES-6);
784
785         /* Creo las columnas */
786         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
787         lista_agregar_columna(lista, DATO_STR, 10, 51);  /* desc       */
788         lista_agregar_columna(lista, DATO_STR, 55, 9);   /* existencia */
789         lista_agregar_columna(lista, DATO_STR, 65, 9);   /* enim       */
790
791         /* Leo los datos desde el archivo */
792         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
793         for(i=0; i<cant; i++) {
794                 k.i_clave = datos[i].id;
795                 error = 1;
796                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
797                 if (tmp != NULL) {
798                         procesar_leer_articulo(&articulo, tmp, size, lst_articulos);
799                         lista_agregar_fila(lista,
800                                                         articulo.numero,
801                                                         articulo.desc,
802                                                         articulo.existencia,
803                                                         articulo.emin
804                                         );
805                         free(tmp);
806                 } else {
807                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
808                 }
809         }
810
811         curs_set(0);
812         lista_ejecutar(lista);
813         curs_set(1);
814         
815         wrefresh(win1);
816         wrefresh(win);
817         werase(win1);
818         werase(win);
819         wrefresh(win);
820         delwin(win);
821 }
822
823 void art_consultas(char *s)
824 {
825         MENU(mi_menu) {
826                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
827                 MENU_OPCION("por Descripcion", "Consulta por descripcion"),
828                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
829                 MENU_OPCION("Volver", "Volver al menu anterior.")
830         };
831         int opt;
832         
833         while ((opt = menu_ejecutar(mi_menu, 4, "Consulta de Articulos")) != 3) {
834                 switch (opt) {
835                         case 0:
836                                 art_consultas_codigos(s);
837                         break;
838                         case 1:
839                                 art_consultas_varias("desc", "Descripcion");
840                         break;
841                         case 2:
842                                 art_consultas_varias("presentacion", "Presentacion");
843                 }
844         }
845 }
846