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