]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
Retoques en los reportes
[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 #ifdef TP_PRIMER_ENTREGA
17 /* Manejo de la lista doble */
18 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
19 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
20 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
21
22 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
23 {
24         if (nodo == NULL) return 0;
25         if (nodo->ant == NULL) {
26                 /* Me piden borrar el primer nodo */
27                 if (nodo->sig) {
28                         nodo->sig->ant = NULL;
29                 }
30                 lst->primero = nodo->sig;
31         } else {
32                 if (nodo->sig) {
33                         nodo->sig->ant = nodo->ant;
34                 }
35                 nodo->ant->sig = nodo->sig;
36         }
37         free(nodo);
38         return 1;
39 }
40
41 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
42 {
43         t_Reg_Articulo *tmp;
44         if (reg == EMUFS_NOT_FOUND) return NULL;
45         tmp = malloc(sizeof(t_Reg_Articulo));
46         if (tmp == NULL) return NULL;
47         tmp->sig = tmp->ant = NULL;
48         tmp->num_reg = reg;
49         tmp->numero = num;
50
51         return tmp;
52 }
53
54 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
55 {
56         if (nodo == NULL) return 0;
57
58         if (lst->primero) {
59                 lst->primero->ant = nodo;
60                 nodo->sig = lst->primero;
61                 lst->primero = nodo;
62         } else {
63                 lst->primero = nodo;
64         }
65         return 1;
66 }
67 #endif /* TP_PRIMER_ENTREGA */
68
69 t_LstArticulos *art_get_lst()
70 {
71         return lst_articulos;
72 }
73
74 t_LstArticulos *art_cargar(t_Parametros *param)
75 {
76         xmlDocPtr document;
77         xmlNode *node, *inicio;
78         int error = 0;
79         char *prop;
80         EMUFS_REG_SIZE size;
81         t_LstArticulos *tmp;
82         t_Articulo *un_articulo;
83         lst_articulos = NULL;
84
85         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
86         if (tmp == NULL) return NULL;
87         lst_articulos = tmp;
88         tmp->primero = NULL;
89
90         if (param != NULL) {
91                 PERR("Voy a crear desde un XML");
92                 document = xmlReadFile(param->xml_art, "ISO-8859-1",0);
93                 if (document == NULL) {
94                         free(tmp);
95                         lst_articulos = NULL;
96                         return NULL;
97                 }
98
99                 inicio = NULL;
100                 node = xmlDocGetRootElement(document);
101                 /* Busco el TAG principal "ARTICULOS" */
102                 while (node) {
103                         if (node->type == XML_ELEMENT_NODE) {
104                                 if (strcmp(node->name, "ARTICULOS") == 0) {
105                                         inicio = node->children;
106                                         break;
107                                 }
108                         }
109                         node = node->next;
110                 }
111                 /* Creo el FS */
112                 tmp->fp = emufs_crear("articulos", param->tipo_arch_art, param->tam_bloque_art, sizeof(t_Articulo));
113                 /* Agrego los indices */
114                 PERR("Voy a agregar un indice");
115                 emufs_agregar_indice(tmp->fp, "presentacion", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, presentacion), 512);
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                                                 tmp->fp->grabar_registro(tmp->fp, save, size, &error);
151                                                 free(save);
152                                         }
153                                 }
154                         }
155                 }
156                 xmlFreeDoc(document);
157                 xmlCleanupParser();
158         } else {
159 /*      XXX Ahora no necesito leer nada del archivo cuando lo cargo
160  *      pues tengo todo en los indices
161  *
162  *      PERR("Voy a recuperar desde un archivo");
163                 tmp->fp = emufs_abrir("articulos");
164                 if (tmp->fp == NULL) {
165                         PERR("No se pudo cargar archivo de articulos.");
166                         free(tmp);
167                         lst_articulos = NULL;
168                         return NULL;
169                 }
170                  Ahora trato de recuperar la info
171                 indices = emufs_idx_get(tmp->fp, &indices_cant);
172                 for(i=0; i<indices_cant; i++) {
173                         t_Articulo art;
174                         void *save;
175                          Leo el registro
176                         error = 0;
177                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
178                         if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
179                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
180                                 free(save);
181                         }
182                 }
183                 free(indices);
184 */
185         }
186
187         return tmp;
188 }
189
190 int art_liberar(t_LstArticulos *l)
191 {
192         t_Reg_Articulo *del;
193         if (l == NULL) l = lst_articulos;
194         if (l == NULL) return 1;
195
196         emufs_destruir(l->fp);
197         while (l->primero) {
198                 del = l->primero;
199                 l->primero = l->primero->sig;
200                 free(del);
201         }
202         free(l);
203
204         lst_articulos = NULL;
205         return 0;
206 }
207
208 t_Articulo *art_obtener(t_LstArticulos *lst, int numero, EMUFS_REG_ID *id)
209 {
210         t_Articulo *art;
211         void *tmp;
212         int error = 0;
213         EMUFS_REG_SIZE size;
214         CLAVE k;
215
216         if (lst == NULL) lst = lst_articulos;
217         if (lst == NULL) return NULL;
218
219         (*id) = -1; /* XXX Ver que se hacia con esto */
220         art = (t_Articulo *)malloc(sizeof(t_Articulo));
221         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
222         error = 0;
223         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char *)&numero);
224         tmp = lst->fp->leer_registro(lst->fp, k, &size, &error);
225         if (error) {
226                 free(art);
227                 return NULL;
228         }
229
230         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
231                 free(art);
232                 free(tmp);
233                 return NULL;
234         }
235
236         free(tmp);
237         return art;
238 }
239
240 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
241 {
242         t_Form *form;
243         t_Articulo *articulo;
244
245         form = form_crear(win);
246         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
247         form_ejecutar(form, 1,1);
248         articulo = art_obtener(NULL, form_obtener_valor_int(form, "Numero de Artículo"), id);
249         form_destruir(form);
250
251         return articulo;
252 }
253
254 void art_modificar(char *s)
255 {
256         WINDOW *win;
257         t_Form *form;
258         t_Articulo *articulo;
259         char num[11];
260         void *tmp;
261         int error;
262         EMUFS_REG_SIZE size;
263         EMUFS_REG_ID codigo;
264
265         win = newwin(9, COLS-2, 13, 1);
266         box(win, 0, 0);
267         wrefresh(win);
268
269         if (s == NULL) {
270                 PERR("Voy a buscar con el formulario");
271                 articulo = art_form_buscar(win, &codigo);
272                 PERR("Ya lo tengo!!!!!!");
273         } else {
274                 codigo = atoi(s);
275                 /* Leo el registro directamente */
276                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
277                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
278                 error = 0;
279                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp,
280                                                 emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&codigo), &size, &error);
281                 if (error) {
282                         free(articulo);
283                         articulo = NULL;
284                 } else {
285                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
286                                 free(articulo);
287                                 articulo = NULL;
288                         }
289                         free(tmp);
290                 }
291         }
292
293         if (articulo != NULL) {
294                 form = form_crear(win);
295                 sprintf(num, "%08d", articulo->numero);
296                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
297                 form_es_modificable(form, "Numero de Artículo" , 0);
298                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
299                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
300                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
301                 form_agregar_widget(form, INPUT, "Ubicacion", 30, articulo->ubicacion);
302                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
303                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
304                 form_ejecutar(form, 1,1);
305
306                 /* Actualizar registro */
307                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
308                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
309                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
310                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
311                 strcpy(articulo->ubicacion, form_obtener_valor_char(form, "Ubicacion"));
312                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
313                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
314                 /* Ya actualice los datos, ahora veo de grabarlos */
315                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
316                 if (tmp) {
317                         CLAVE k;
318                         error = 0;
319                         k = emufs_indice_generar_clave_desde_valor(lst_articulos->fp->indices, (char *)&articulo->numero);
320                         lst_articulos->fp->modificar_registro(lst_articulos->fp, k, 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, "Col1", DATO_INT, 0, 8);
658         lista_agregar_columna(lista, "Col2", DATO_STR, 10, 45);
659         lista_agregar_columna(lista, "Col3", 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, "Numero", DATO_INT, 0, 8);    /* numero     */
714         lista_agregar_columna(lista, "Descripcion", DATO_STR, 10, 51);  /* desc       */
715         lista_agregar_columna(lista, "Existencia", DATO_STR, 55, 9);   /* existencia */
716         lista_agregar_columna(lista, "Stock Minimo", 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_varias(char *nombre_indice, char *titulo)
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, titulo, 50, "");
767
768         form_ejecutar(form, 2, 2);
769
770         tmp = form_obtener_valor_char(form, titulo);
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, "Numero", DATO_INT, 0, 8);    /* numero     */
784         lista_agregar_columna(lista, "Descripcion", DATO_STR, 10, 51);  /* desc       */
785         lista_agregar_columna(lista, "Existencia", DATO_STR, 55, 9);   /* existencia */
786         lista_agregar_columna(lista, "Stock Minimo", DATO_STR, 65, 9);   /* enim       */
787
788         /* Leo los datos desde el archivo */
789         datos = emufs_buscar_registros(fs, nombre_indice, 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("por Presentacion", "Consulta por Presentacion"),
826                 MENU_OPCION("Volver", "Volver al menu anterior.")
827         };
828         int opt;
829         
830         while ((opt = menu_ejecutar(mi_menu, 4, "Consulta de Articulos")) != 3) {
831                 switch (opt) {
832                         case 0:
833                                 art_consultas_codigos(s);
834                         break;
835                         case 1:
836                                 art_consultas_varias("desc", "Descripcion");
837                         break;
838                         case 2:
839                                 art_consultas_varias("presentacion", "Presentacion");
840                 }
841         }
842 }
843