]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
Cursor para recorrer el arbol andando. Ver en rango de facturas.
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4 #include "common.h"
5 #include "menu.h"
6 #include "lista.h"
7
8 static t_LstFacturas *lst_facturas;
9
10 /* Procesa una factura antes de enviarla al archivo para guardarla */
11 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
12 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
13
14 #ifdef TP_PRIMER_ENTREGA
15 /* Manejo de la lista en memoria */
16 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
17 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
18 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
19 #endif
20
21 /* Funciones para carga desde el XML */
22 static t_Item *leer_items(xmlNode *, int *cant, int size);
23 static char *leer_nota(xmlNode *, int max);
24
25 t_LstFacturas *fact_get_lst()
26 {
27         return lst_facturas;
28 }
29
30 /* Hack! ... Si no existe propiedad retorna "" */
31 char *xml_get_prop(xmlNode *node, char *nombre)
32 {
33         char *s;
34         s = xmlGetProp(node, nombre);
35         if (s == NULL) {
36                 s = malloc(1);
37                 s[0] = '\0';
38                 return s;
39         }
40         return s;
41 }
42
43 #ifdef TP_PRIMER_ENTREGA
44 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
45 {
46         if (nodo == NULL) return 0;
47         if (nodo->ant == NULL) {
48                 /* Me piden borrar el primer nodo */
49                 if (nodo->sig) {
50                         nodo->sig->ant = NULL;
51                 }
52                 lst->primero = nodo->sig;
53         } else {
54                 if (nodo->sig) {
55                         nodo->sig->ant = nodo->ant;
56                 }
57                 nodo->ant->sig = nodo->sig;
58         }
59         free(nodo);
60         return 1;
61 }
62
63 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
64 {
65         t_Reg_Factura *tmp;
66         if (reg == EMUFS_NOT_FOUND) return NULL;
67         tmp = malloc(sizeof(t_Reg_Factura));
68         if (tmp == NULL) return NULL;
69         tmp->sig = tmp->ant = NULL;
70         tmp->num_reg = reg;
71         tmp->texto_reg = texto;
72         tmp->numero = num;
73
74         return tmp;
75 }
76
77 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
78 {
79         if (nodo == NULL) return 0;
80
81         if (lst->primero) {
82                 lst->primero->ant = nodo;
83                 nodo->sig = lst->primero;
84                 lst->primero = nodo;
85         } else {
86                 lst->primero = nodo;
87         }
88         return 1;
89 }
90 #endif /*TP_PRIMER_ENTREGA*/
91
92 t_Item *leer_items(xmlNode *node, int *cant, int size)
93 {
94         t_Item *tmp;
95         int count;
96         char *prop;
97         if (size == -1) {
98                 tmp = NULL;
99                 count = 0;
100                 node = node->children;
101                 while (node) {
102                         if (node->type == XML_ELEMENT_NODE) {
103                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
104                                         count++;
105                                         tmp = realloc(tmp, sizeof(t_Item)*count);
106                                         memset(&tmp[count-1], 0, sizeof(t_Item));
107                                         prop = xml_get_prop(node, "NroArtĂ­culo");
108                                         tmp[count-1].numero = atoi(prop);
109                                         xmlFree(prop);
110                                         strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
111                                         tmp[count-1].cv[8] = '\0';
112                                         strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
113                                         tmp[count-1].pvu[8] = '\0';
114                                 }
115                         }
116                         node = node->next;
117                 }
118                 *cant = count;
119         } else {
120                 (*cant) = size;
121                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
122                 memset(tmp, 0, sizeof(t_Item)*size);
123
124                 count = 0;
125                 node = node->children;
126                 while (node) {
127                         if (node->type == XML_ELEMENT_NODE) {
128                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
129                                         memset(&tmp[count], 0, sizeof(t_Item));
130                                         prop = xml_get_prop(node, "NroArtĂ­culo");
131                                         tmp[count].numero = atoi(prop);
132                                         xmlFree(prop);
133                                         strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
134                                         tmp[count].cv[8] = '\0';
135                                         strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
136                                         tmp[count].pvu[8] = '\0';
137                                         count++;
138                                 }
139                         }
140                         if (count == 10) break; /* No me entran mas items! */
141                         node = node->next;
142                 }
143         }
144         return tmp;
145 }
146
147 char *leer_nota(xmlNode *node, int max)
148 {
149         xmlNode *tmp;
150         char *salida;
151         tmp = node->children;
152         while (tmp) {
153                 if (tmp->type == XML_ELEMENT_NODE) {
154                         if (strcmp(tmp->name, "NOTA") == 0) {
155                                 break;
156                         }
157                 }
158                 tmp = tmp->next;
159         }
160
161         if (tmp) {
162                 if (max == -1) {
163                         salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
164                         strcpy(salida, XML_GET_CONTENT(tmp->children));
165                 } else {
166                         salida = (char *)malloc(sizeof(char)*max);
167                         strncpy(salida, XML_GET_CONTENT(tmp->children), max-1);
168                         salida[max-1] = '\0';
169                 }
170         } else {
171                 if (max == -1) {
172                         salida = (char *)malloc(sizeof(char));
173                         salida[0] = '\0';
174                 } else {
175                         salida = (char *)malloc(sizeof(char)*max);
176                         memset(salida, 0, max);
177                 }
178         }
179         return salida;
180 }
181
182
183 t_LstFacturas *fact_cargar(t_Parametros *param)
184 {
185         xmlDocPtr document;
186         xmlNode *node, *inicio;
187         int error = 0, cant_items;
188         char *prop;
189         EMUFS_REG_SIZE size;
190         t_LstFacturas *tmp;
191         t_Factura *factura;
192         EMUFS_REG_ID id;
193         
194         lst_facturas = NULL;
195
196         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
197         if (tmp == NULL) return NULL;
198         lst_facturas = tmp;
199         tmp->primero = NULL;
200
201         if (param != NULL) {
202                 PERR("Voy a cargar de un XML");
203                 PERR(param->xml_fact);
204                 document = xmlReadFile(param->xml_fact, "ISO-8859-1",0);
205                 if (document == NULL) {
206                         PERR("Error al leer documento!!");
207                         free(tmp);
208                         lst_facturas = NULL;
209                         return NULL;
210                 }
211
212                 inicio = NULL;
213                 node = xmlDocGetRootElement(document);
214                 /* Busco el TAG principal "ARTICULOS" */
215                 while (node) {
216                         if (node->type == XML_ELEMENT_NODE) {
217                                 if (strcmp(node->name, "FACTURAS") == 0) {
218                                         inicio = node->children;
219                                         break;
220                                 }
221                         }
222                         node = node->next;
223                 }
224
225                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
226                  * y los items al final del registro.
227                  */
228                 if ((param->tipo_arch_fact) == T3) {
229                         /* Limito a 10 items en el caso de registro constante! */
230                         cant_items = 10;
231                 } else {
232                         cant_items = 0;
233                 }
234                 tmp->fp = emufs_crear("facturas", param->tipo_arch_fact, param->tam_bloque_fact, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
235                 emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512);
236                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
237                 tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100);
238                 for (node=inicio ; node ; node = node->next) {
239                         if (node->type == XML_ELEMENT_NODE) {
240                                 if (strcmp(node->name, "FACTURA") == 0) {
241                                         t_Factura fact;
242                                         void *save;
243                                         memset(&fact, 0, sizeof(t_Factura));
244                                         prop = xml_get_prop(node, "NroFac");
245                                         PERR(prop);
246                                         fact.numero = atoi(prop); xmlFree(prop);
247                                         prop = xml_get_prop(node, "PorcDoI");
248                                         fact.procdoi = atof(prop); xmlFree(prop);
249                                         prop = xml_get_prop(node, "NroRemito");
250                                         fact.numero_remito = atoi(prop); xmlFree(prop);
251                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisiĂłn"), 8); xmlFree(prop);
252                                         fact.emision[8] = '\0';
253                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
254                                         fact.vencimiento[8] = '\0';
255                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
256                                         fact.estado[2] = '\0';
257                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
258                                         fact.fp[2] = '\0';
259                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
260                                         fact.ctacte[5] = '\0';
261                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
262                                         fact.cheque[18] = '\0';
263
264                                         fact.nota = leer_nota(node, ((param->tipo_arch_nota==T3)?100:-1));
265                                         fact.items = leer_items(node, &fact.cant_items, (param->tipo_arch_fact==T3)?10:-1);
266
267                                         error = 0;
268                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, (param->tipo_arch_nota==T3)?100:(strlen(fact.nota)+1), &error);
269                                         fact.reg_nota = id;
270                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
271                                         if (save != NULL) {
272                                                 error = 0;
273                                                 tmp->fp->grabar_registro(tmp->fp, save, size, &error);
274                                                 if (fact.items) {
275                                                         free(fact.items);
276                                                         fact.items = NULL;
277                                                 }
278                                                 if (fact.nota) {
279                                                         free(fact.nota);
280                                                         fact.nota = NULL;
281                                                 }
282                                                 free(save);
283                                         }
284                                 }
285                         }
286                 }
287                 xmlFreeDoc(document);
288                 xmlCleanupParser();
289         } else {
290 #ifdef NO_SE_USA_MAS
291                 /* TODO RECUPERAR INDICES DESDE EL ARCHIVO */
292                 PERR("Voy a recuperar desde un archivo");
293                 tmp->fp = emufs_abrir("facturas");
294                 if (tmp->fp == NULL) {
295                         PERR("No se pudo cargar archivo de facturas!");
296                         free(tmp);
297                         lst_facturas = NULL;
298                         return NULL;
299                 }
300                 tmp->fp_texto = emufs_abrir("notas");
301                 if (tmp->fp_texto == NULL) {
302                         PERR("No se pudo cargar archivo de notas!");
303                         emufs_destruir(tmp->fp);
304                         free(tmp);
305                         lst_facturas = NULL;
306                         return NULL;
307                 }
308
309                 /* Ahora trato de recuperar la info */
310                 indices = emufs_idx_get(tmp->fp, &indices_cant);
311                 for(i=0; i<indices_cant; i++) {
312                         t_Factura art;
313                         void *save;
314                         /* Leo el registro */
315                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
316                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
317                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
318                                 free(save);
319                         }
320                 }
321                 free(indices);
322 #endif
323         }
324
325         PERR("Facturas todo Ok");
326         return lst_facturas;
327 }
328
329 int fact_liberar(t_LstFacturas *l)
330 {
331         t_Reg_Factura *del;
332         if (l == NULL) l = lst_facturas;
333         if (l == NULL) return 1;
334
335         emufs_destruir(l->fp);
336         emufs_destruir(l->fp_texto);
337         while (l->primero) {
338                 del = l->primero;
339                 l->primero = l->primero->sig;
340                 free(del);
341         }
342         free(l);
343
344         lst_facturas = NULL;
345         return 0;
346 }
347
348 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
349 {
350         t_Factura *fact;
351         char *leo;
352         EMUFS_REG_SIZE size;
353         int error;
354         CLAVE k;
355         if (lst == NULL) return NULL;
356
357         fact = NULL;
358         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char*)&numero);
359         error = 0;
360         leo = lst->fp->leer_registro(lst->fp, k, &size, &error);
361         if (leo != NULL) {
362                 fact = (t_Factura *)malloc(sizeof(t_Factura));
363                 if (fact == NULL) {
364                         free(leo);
365                         return NULL;
366                 }
367                 procesar_leer_factura(fact, leo, size, lst);
368                 /* y esto ??!
369                 (*id) = reg->num_reg;
370                 (*id_texto) = reg->texto_reg;
371                 */
372                 free(leo);
373                 k.i_clave = fact->reg_nota;
374                 error = 0;
375                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
376         }
377         
378         return fact;
379 }
380
381 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
382 {
383         t_Form *form;
384         t_Factura *fact;
385
386         form = form_crear(win);
387         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
388         form_ejecutar(form, 1,1);
389         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
390         form_destruir(form);
391
392         return fact;
393 }
394
395 void fact_eliminar(char *s)
396 {
397         WINDOW *win;
398         t_Factura *fact;
399         EMUFS_REG_ID id;
400         CLAVE k;
401                                                                         
402         win = newwin(LINES-4, COLS-2, 2, 1);
403         box(win, 0, 0);
404         
405         fact = fact_form_buscar(win, &id, &id);
406
407         if (fact == NULL) {
408                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
409                 mvwaddstr(win, 2, 1, "No existe artĂ­culo con ese cĂłdigo. Abortando!");
410                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
411                 wrefresh(win);
412                 getch();
413                 werase(win);
414                 wrefresh(win);
415                 delwin(win);
416                 return;
417         }
418
419         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
420         lst_facturas->fp->borrar_registro(lst_facturas->fp, k);
421         k.i_clave = fact->reg_nota;
422         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k);
423
424         if (fact->items) free(fact->items);
425         if (fact->nota) free(fact->nota);
426         free(fact);
427 }
428
429 void fact_modificar(char *s)
430 {
431         WINDOW *win, *items, *nota, *subnota;
432         t_Form *form, *form_nota;
433         t_Factura *fact;
434         EMUFS_REG_SIZE size;
435         EMUFS_REG_ID id, id_texto;
436         int error;
437         char tmp_str[10];
438         void *entrada;
439
440         win = newwin(LINES-4, COLS-2, 2, 1);
441         box(win, 0, 0);
442         
443         if (s == NULL) {
444                 fact = fact_form_buscar(win, &id, &id_texto);
445         } else {
446                 fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
447         }
448
449         if (fact == NULL) {
450                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
451                 mvwaddstr(win, 2, 1, "No existe factura con ese cĂłdigo. Abortando!");
452                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
453                 wrefresh(win);
454                 getch();
455                 werase(win);
456                 wrefresh(win);
457                 delwin(win);
458                 return;
459         }
460
461         mvwaddch(win, 10, 0, ACS_LTEE);
462         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
463         mvwaddch(win, 10, COLS-3, ACS_RTEE);
464         wrefresh(win);
465
466         items = derwin(win, LINES-20, COLS-4, 15, 1);
467         nota = derwin(win, 9, COLS-62, 1, 56);
468         subnota = derwin(nota, 7, COLS-64, 1, 1);
469         box(nota, 0, 0);
470         mvwaddstr(nota, 0, 1, "Nota :");
471         wrefresh(nota);
472         wrefresh(items);
473
474         form = form_crear(win);
475         sprintf(tmp_str, "%08d", fact->numero);
476         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
477         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
478         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
479         sprintf(tmp_str, "%08d", fact->numero_remito);
480         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
481         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
482         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
483         sprintf(tmp_str, "%02.2f", fact->procdoi);
484         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
485         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
486         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
487
488         mvwaddstr(subnota, 0, 0, fact->nota);
489         wrefresh(subnota);
490         form_ejecutar(form, 1,1);
491
492         form_nota = form_crear(subnota);
493         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
494         form_ejecutar(form_nota, 0, 0);
495
496         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
497         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
498         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
499         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
500         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
501         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
502         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
503         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
504         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
505
506         form_destruir(form);
507
508         free(fact->nota);
509         fact->nota = form_obtener_valor_char(form_nota, "");
510
511         form_destruir(form_nota);
512
513         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
514         if (entrada) {
515                 CLAVE k;
516                 k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
517                 lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error);
518                 k.i_clave = id_texto;
519                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error);
520                 free(entrada);
521         }
522
523         free(fact->items);
524         free(fact);
525
526         werase(win);
527         wrefresh(win);
528         delwin(subnota);
529         delwin(nota);
530         delwin(items);
531         delwin(win);
532 }
533
534 void fact_agregar(char *s)
535 {
536         WINDOW *win, *items, *nota, *subnota;
537         t_Form *form, *form_nota;
538         t_Item *its = NULL;
539         t_Factura fact;
540         EMUFS_REG_SIZE size;
541         EMUFS_REG_ID id_texto;
542         int y_actual, cant, error;
543         char *entrada;
544
545         win = newwin(LINES-4, COLS-2, 2, 1);
546         box(win, 0, 0);
547         mvwaddch(win, 10, 0, ACS_LTEE);
548         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
549         mvwaddch(win, 10, COLS-3, ACS_RTEE);
550         wrefresh(win);
551
552         items = derwin(win, LINES-20, COLS-4, 15, 1);
553         nota = derwin(win, 9, COLS-62, 1, 56);
554         subnota = derwin(nota, 7, COLS-64, 1, 1);
555         box(nota, 0, 0);
556         mvwaddstr(nota, 0, 1, "Nota :");
557         wrefresh(nota);
558         wrefresh(items);
559
560         form = form_crear(win);
561         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
562         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
563         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
564         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
565         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
566         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
567         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
568         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
569         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
570
571         form_ejecutar(form, 1,1);
572
573         form_nota = form_crear(subnota);
574         form_agregar_widget(form_nota, INPUT, "", 255, "");
575         form_ejecutar(form_nota, 0, 0);
576
577         /* XXX No destruir form_nota hasta el final !!!!! XXX */
578
579         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
580         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
581         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
582         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
583         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
584         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
585         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
586         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
587         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
588
589         form_destruir(form);
590
591         form = form_crear(win);
592         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
593         form_agregar_widget(form, INPUT, "CV", 8, "");
594         form_agregar_widget(form, INPUT, "PVU", 8, "");
595         y_actual = 0;
596         scrollok(items, 1);
597         mvwaddstr(win, 15, 2, "Numero");
598         mvwaddstr(win, 15, 11, "CV");
599         mvwaddstr(win, 15, 21, "PVU");
600         cant = 0;
601         do {
602                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
603                 form_set_valor(form, "CV", "");
604                 form_set_valor(form, "PVU", "");
605                 form_ejecutar(form, 2, 11);
606
607                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
608
609                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
610                         y_actual++;
611                         if (y_actual > LINES-22) {
612                                 y_actual = LINES-22;
613                                 wscrl(items, 1);
614                         }
615                         mvwaddstr(items, y_actual, 1, entrada);
616                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
617                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
618                         wrefresh(items);
619                         /* Agrego el Item */
620                         cant++;
621                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
622                         if (its != NULL) {
623                                 its[cant-1].numero = atoi(entrada);
624                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
625                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
626                         }
627                 }
628         } while (entrada[0] != '*');
629
630         if (lst_facturas->fp->tipo == T3) {
631                 if (cant != 10) {
632                         /* TODO Limitar en la GUI en lugar de truncar! */
633                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
634                         if (its == NULL) {
635                                 cant = 0;
636                         } else {
637                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
638                                 cant = 10;
639                         }
640                 }
641         }
642         fact.items = its;
643         fact.cant_items = cant;
644         fact.nota = form_obtener_valor_char(form_nota, "");
645
646         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
647         fact.reg_nota = id_texto;
648
649         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
650         if (entrada) {
651                 error = 0;
652                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
653                 free(entrada);
654         }
655                                                                         
656         if (its) free(its);
657         form_destruir(form);
658         form_destruir(form_nota);
659
660         werase(win);
661         wrefresh(win);
662         delwin(items);
663         delwin(subnota);
664         delwin(nota);
665         delwin(win);
666 }
667
668 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
669 {
670         char *tmp=NULL;
671         int i[12];
672
673         switch (lst->fp->tipo) {
674                 case T1:
675                 case T2:
676                         /* Calculo el tamaño que voy a necesitar */
677                         i[0] = sizeof(int);
678                         i[1] = sizeof(float);
679                         i[2] = sizeof(int);
680                         i[3] = sizeof(int);
681                         i[4] = sizeof(EMUFS_BLOCK_ID);
682                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
683                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
684                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
685                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
686                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
687                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
688                         i[11] = sizeof(t_Item)*f->cant_items;
689                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9]+i[10]+i[11];
690                         tmp = (char *)malloc(*size);
691                         if (tmp == NULL) return NULL;
692                         memset(tmp, 0, *size);
693                         /* Ahora copio la info */
694                         memcpy(tmp, &f->numero, i[0]);
695                         memcpy(tmp+i[0], &f->procdoi, i[1]);
696                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
697                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
698                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
699                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
700                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
701                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
702                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
703                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
704                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9], f->cheque, i[10]);
705                         if (i[11] != 0)
706                                 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8]+i[9]+i[10], f->items, i[11]);
707                 break;
708                 case T3:
709                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
710                         tmp = (char *)malloc(*size);
711                         if (tmp == NULL) return NULL;
712                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
713                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
714         }
715         return tmp;
716 }
717
718 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
719 {
720         char *ini, *fin;
721         /*int dummy;*/
722
723         if (lst == NULL) {
724                 PERR("Puntero a lista NULO");
725                 return 0;
726         }
727         if (lst->fp == NULL) {
728                 PERR("EMUFS No creado!");
729                 return 0;
730         }
731
732         switch (lst->fp->tipo) {
733                 case T1:
734                 case T2:
735                         ini = (char *)src;
736                         /* Copio los campos numericos, muy facil:-) */
737                         memcpy(&dst->numero, ini, sizeof(int));
738                         ini+=sizeof(int);
739                         
740                         memcpy(&dst->procdoi, ini, sizeof(float));
741                         ini+=sizeof(float);
742
743                         memcpy(&dst->numero_remito, ini, sizeof(int));
744                         ini+=sizeof(int);
745                         
746                         memcpy(&dst->cant_items, ini, sizeof(int));
747                         ini+=sizeof(int);
748                         
749                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
750                         ini+=sizeof(EMUFS_BLOCK_ID);
751
752                         /* Ahora empieza el juego */
753                         /* Los \0 son los delimitadores de campo! */
754                         fin = ini;
755                         while (*fin!='\0') fin++;
756                         memcpy(dst->emision, ini, fin-ini+1);
757                         
758                         ini = fin+1;
759                         fin = ini;
760                         while (*fin!='\0') fin++;
761                         memcpy(dst->vencimiento, ini, fin-ini+1);
762                         
763                         ini = fin+1;
764                         fin = ini;
765                         while (*fin!='\0') fin++;
766                         memcpy(dst->estado, ini, fin-ini+1);
767                         
768                         ini = fin+1;
769                         fin = ini;
770                         while (*fin!='\0') fin++;
771                         memcpy(dst->fp, ini, fin-ini+1);
772                         
773                         ini = fin+1;
774                         fin = ini;
775                         while (*fin!='\0') fin++;
776                         memcpy(dst->ctacte, ini, fin-ini+1);
777                         
778                         ini = fin+1;
779                         fin = ini;
780                         while (*fin!='\0') fin++;
781                         memcpy(dst->cheque, ini, fin-ini+1);
782
783                         if (dst->cant_items > 0) {
784                                 /* Ahora tengo que cargar los items */
785                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
786
787                                 ini = fin+1;
788                                 fin = (char *)src+size;
789                                 memcpy(dst->items, ini, fin-ini);
790
791                         } else {
792                                 dst->items = NULL;
793                         }
794                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
795                         return 0;
796                 break;
797                 case T3:
798                         /* Se que tengo 10 items */
799                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
800                         size = lst->fp->tam_reg;
801                         memcpy(dst, src, size-sizeof(t_Item)*10);
802                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
803                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
804                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
805         }
806         return 0;
807 }
808
809 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
810 {
811 #ifdef NO_ANDA_AUN
812         EMUFS *nuevo, *old;
813         EMUFS_REG_ID *indices, id;
814         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
815         t_Factura fact;
816         t_LstFacturas *lst_nueva;
817         int error;
818         char *save;
819
820         PERR("==== EMPIEZO ====\n");
821         old = lst_facturas->fp;
822
823         /* Creo el nuevo file */
824         PERR("Creo el archivo\n");
825         if (tipo == T3) {
826                 /* Me aseguro de que entren n items completos */
827                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
828         }
829         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
830         if (nuevo == NULL) {
831                 PERR("ARCHIVO NUEVO NO CREADO");
832                 return;
833         }
834
835         /* Creo la nueva lista */
836         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
837         lst_nueva->primero = NULL;
838         lst_nueva->fp = nuevo;
839         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
840
841         /* Leo los indices del archivo viejo */
842         PERR("Obtengo Indices\n");
843         indices = emufs_idx_get(old, &indices_total);
844         if (indices == NULL) {
845                 fact_liberar(lst_nueva);
846                 return;
847         }
848
849         PERR("Proceso datos");
850         for(i=0; i<indices_total; i++) {
851                 error = 0;
852                 PERR("Leo");
853                 save = old->leer_registro(old, indices[i], &size, &error);
854                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
855                         PERR("Procese Leer Ok");
856                         free(save);
857                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
858
859                         /* Actualizo el ID de la nota asociada */
860                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
861                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
862                         PERR("Procese Grabar Ok");
863                         if (save) {
864                                 error = 0;
865                                 PERR("Grabo el Registro");
866                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
867                                 PERR("Lo agrego");
868                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
869                                 PERR("Libero Memoria");
870                                 free(save);
871                                 if (fact.items) free(fact.items);
872                                 if (fact.nota) free(fact.nota);
873                                 PERR("Termine con este Item");
874                         }
875                 }
876         }
877
878         free(indices);
879
880         PERR("Libero lo viejo\n");
881         fact_liberar(lst_facturas);
882
883         PERR("Ahora tengo lo nuevo\n");
884         lst_facturas = lst_nueva;
885
886         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
887         free(lst_facturas->fp->nombre);
888         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
889         strcpy(lst_facturas->fp->nombre, "facturas");
890         
891         /* Tambien actualizo el nombre para notas */
892         free(lst_facturas->fp_texto->nombre);
893         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
894         strcpy(lst_facturas->fp_texto->nombre, "notas");
895         
896         /* Muevo los archivos! */
897         /* TODO : Poner en otro lugar mas generico! */
898         PERR("Renombre!!\n");
899         rename("emufs_tmp.dat", "facturas.dat");
900         rename("emufs_tmp.idx", "facturas.idx");
901         rename("emufs_tmp.fsc", "facturas.fsc");
902         rename("emufs_tmp.did", "facturas.did");
903         rename("nota_tmp.dat", "notas.dat");
904         rename("nota_tmp.idx", "notas.idx");
905         rename("nota_tmp.fsc", "notas.fsc");
906         rename("nota_tmp.did", "notas.did");
907         PERR("==== TERMINE ====\n");
908 #endif
909 }
910
911 int fact_exportar_xml(const char *filename)
912 {
913         int j;
914         t_Reg_Factura *nodo;
915         t_Factura *fact;
916         EMUFS_REG_ID id, id1;
917         FILE *fp;
918
919         if (lst_facturas->primero == NULL) return 0;
920
921         nodo = lst_facturas->primero;
922
923         if (!(fp = fopen(filename, "wt"))) return 0;
924         
925         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
926         fprintf(fp, "<FACTURAS>\n");
927         while (nodo) {
928                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
929                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
930                 fprintf(fp, "FechaEmisiĂłn=\"%s\" ", fact->emision);
931                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
932                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
933                 fprintf(fp, "FP=\"%s\" ", fact->fp);
934                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
935                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
936                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
937                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
938                 fprintf(fp, ">\n");
939                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
940                 for(j=0; j<fact->cant_items; j++) {
941                         if (fact->items[j].numero != 0)
942                                 fprintf(fp, "\t\t<ITEMVENTA NroArtĂ­culo=\"%08d\" CV=\"%s\" PVU=\"%s\" />\n", fact->items[j].numero, fact->items[j].cv, fact->items[j].pvu);
943                 }
944                 fprintf(fp, "\t</FACTURA>\n");
945                 nodo = nodo->sig;
946         }
947         fprintf(fp, "\t</FACTURAS>\n");
948
949         fclose(fp);
950         return 1;
951 }
952
953 char *get_estado(char *s)
954 {
955         if (strcmp(s, "PN")==0) return "Pago Normal";
956         if (strcmp(s, "CD")==0) return "Credito al dia";
957         if (strcmp(s, "CM")==0) return "Credito en mora";
958         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
959         if (strcmp(s, "PM")==0) return "Pagada con Mora";
960         if (strcmp(s, "NC")==0) return "No Cobrada";
961
962         return s;
963 }
964
965 char *get_forma_pago(char *s)
966 {
967         if (strcmp(s, "CO") == 0) return "Contado";
968         if (strcmp(s, "CR") == 0) return "Credito";
969         if (strcmp(s, "CH") == 0) return "Cheque";
970
971         return s;
972 }
973
974 void fact_consultas_codigos(char *s)
975 {
976         EMUFS_REG_ID dummy;
977         int desde_codigo, hasta_codigo;
978         int i;
979         t_Factura *factura;
980         t_Lista *lista;
981         t_Form *form;
982         WINDOW *win, *win1;
983
984         win = newwin(LINES-4, COLS-2, 2, 1);
985         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
986         werase(win);
987         box(win, 0, 0);
988         wrefresh(win);
989         
990         /* El usuario ingresa rango a listar */
991         form = form_crear(win1);
992         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
993         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
994
995         form_ejecutar(form, 2, 2);
996
997         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
998         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
999
1000         form_destruir(form);
1001         werase(win1);
1002         wrefresh(win1);
1003
1004         /* Creo la lista donde mostrar la consulta*/
1005         /* Muestro solo info relevante */
1006         lista = lista_crear(4, win1, COLS-4, LINES-6);
1007
1008         /* Creo las columnas */
1009         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1010         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1011         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1012         lista_agregar_columna(lista, "Forma de Pago", DATO_STR, 40, 19);   /* fp         */
1013
1014         /* Leo los datos desde el archivo */
1015         for(i=desde_codigo; i<=hasta_codigo; i++) {
1016                 factura = fact_buscar(lst_facturas, i, &dummy, &dummy);
1017                 if (factura != NULL) {
1018                         lista_agregar_fila(lista,
1019                                 factura->numero,
1020                                 factura->emision,
1021                                 get_estado(factura->estado),
1022                                 get_forma_pago(factura->fp)
1023                         );
1024                 }
1025         }
1026
1027         curs_set(0);
1028         lista_ejecutar(lista);
1029         curs_set(1);
1030         
1031         wrefresh(win1);
1032         wrefresh(win);
1033         werase(win1);
1034         werase(win);
1035         wrefresh(win);
1036         delwin(win);
1037 }
1038
1039 void fact_consultas_fechas(char *s)
1040 {
1041         char desde_fecha[10], hasta_fecha[10];
1042         char estado[6];
1043         t_Lista *lista;
1044         t_Form *form;
1045         WINDOW *win, *win1;
1046         INDICE *idx;
1047         CLAVE k_menor, k_mayor;
1048
1049         win = newwin(LINES-4, COLS-2, 2, 1);
1050         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1051         werase(win);
1052         box(win, 0, 0);
1053         wrefresh(win);
1054         
1055         /* El usuario ingresa rango a listar */
1056         form = form_crear(win1);
1057         form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
1058         form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
1059         form_agregar_widget(form, RADIO, "Estado", 7, "Todos,PN,CD,CM,SF,PM,NC");
1060         form_ejecutar(form, 2, 2);
1061
1062         strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
1063         strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
1064         strcpy(estado, form_obtener_valor_char(form, "Estado"));
1065
1066         form_destruir(form);
1067         werase(win1);
1068         wrefresh(win1);
1069
1070         /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
1071         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
1072         if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
1073         if (strlen(desde_fecha) == 0) {
1074                 k_menor = idx->obtener_menor_clave(idx);
1075                 emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
1076                 PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
1077                 PERR(desde_fecha);
1078         }
1079         if (strlen(hasta_fecha) == 0) {
1080                 k_mayor = idx->obtener_mayor_clave(idx);
1081                 emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
1082                 PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
1083                 PERR(hasta_fecha);
1084         }
1085         
1086         /* Creo la lista donde mostrar la consulta*/
1087         /* Muestro solo info relevante */
1088         lista = lista_crear(4, win1, COLS-4, LINES-6);
1089
1090         /* Creo las columnas */
1091         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1092         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1093         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1094         lista_agregar_columna(lista, "Forma de Pago", DATO_STR, 40, 19);   /* fp         */
1095
1096         /* Leo los datos desde el archivo */
1097         while (k_menor.i_clave != -1) {
1098                 t_Factura fact;
1099                 int error, cant, i;
1100                 char *leo;
1101                 EMUFS_REG_SIZE size;
1102                 INDICE_DATO *datos;
1103                 CLAVE k1;
1104                 datos = idx->buscar_entradas(idx, k_menor, &cant);
1105                 for(i=0; i<cant; i++) {
1106                         error = 1;
1107                         k1.i_clave = datos[i].id;
1108                         leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
1109                         if (leo != NULL) {
1110                                 procesar_leer_factura(&fact, leo, size, lst_facturas);
1111                                 free(leo);
1112                                 /*k.i_clave = fact->reg_nota;
1113                                 error = 0;
1114                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
1115                                 */
1116                         }
1117                         lista_agregar_fila(lista,
1118                                 fact.numero,
1119                                 fact.emision,
1120                                 get_estado(fact.estado),
1121                                 get_forma_pago(fact.fp)
1122                         );
1123                 }
1124                 if (datos) free(datos);
1125                 k_menor = idx->obtener_sig_clave(idx, k_menor);
1126         }
1127
1128         curs_set(0);
1129         lista_ejecutar(lista);
1130         curs_set(1);
1131         wrefresh(win1);
1132         wrefresh(win);
1133         werase(win1);
1134         werase(win);
1135         wrefresh(win);
1136         delwin(win);
1137 }
1138
1139 void fact_consultas_varias(char *nombre_indice, char *titulo)
1140 {
1141         int i, cant, error;
1142         char *desc, *tmp;
1143         t_Factura factura;
1144         t_Lista *lista;
1145         t_Form *form;
1146         INDICE_DATO *datos;
1147         WINDOW *win, *win1;
1148         CLAVE k;
1149         EMUFS *fs;
1150         EMUFS_REG_SIZE size;
1151
1152         fs = lst_facturas->fp;
1153
1154         win = newwin(LINES-4, COLS-2, 2, 1);
1155         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1156         werase(win);
1157         box(win, 0, 0);
1158         wrefresh(win);
1159         
1160         /* El usuario ingresa rango a listar */
1161         form = form_crear(win1);
1162         form_agregar_widget(form, INPUT, titulo, 50, "");
1163
1164         form_ejecutar(form, 2, 2);
1165
1166         tmp = form_obtener_valor_char(form, titulo);
1167         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1168         strcpy(desc, tmp);
1169
1170         form_destruir(form);
1171         werase(win1);
1172         wrefresh(win1);
1173
1174         /* Creo la lista donde mostrar la consulta*/
1175         /* Muestro solo info relevante */
1176         lista = lista_crear(4, win1, COLS-4, LINES-6);
1177
1178         /* Creo las columnas */
1179         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1180         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1181         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1182         lista_agregar_columna(lista, "Forma Pago", DATO_STR, 40, 19);   /* fp         */
1183
1184         /* Leo los datos desde el archivo */
1185         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1186         for(i=0; i<cant; i++) {
1187                 k.i_clave = datos[i].id;
1188                 error = 1;
1189                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1190                 if (tmp != NULL) {
1191                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1192                         lista_agregar_fila(lista,
1193                                                         factura.numero,
1194                                                         factura.emision,
1195                                                         get_estado(factura.estado),
1196                                                         get_forma_pago(factura.fp)
1197                                         );
1198                         free(tmp);
1199                 } else {
1200                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1201                 }
1202         }
1203
1204         curs_set(0);
1205         lista_ejecutar(lista);
1206         curs_set(1);
1207         
1208         wrefresh(win1);
1209         wrefresh(win);
1210         werase(win1);
1211         werase(win);
1212         wrefresh(win);
1213         delwin(win);
1214 }
1215
1216 void fact_consultas(char *s)
1217 {
1218         MENU(mi_menu) {
1219                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1220                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1221                 MENU_OPCION("por Rango de Fecha", "Consulta por rando de fecha de emision"),
1222                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1223                 MENU_OPCION("Volver", "Volver al menu anterior.")
1224         };
1225         int opt;
1226         
1227         while ((opt = menu_ejecutar(mi_menu, 5, "Consulta de Articulos")) != 4) {
1228                 switch (opt) {
1229                         case 0:
1230                                 fact_consultas_codigos(s);
1231                         break;
1232                         case 1:
1233                                 fact_consultas_varias("emision", "Fecha");
1234                         break;
1235                         case 2:
1236                                 fact_consultas_fechas(s);
1237                         break;
1238                         case 3:
1239                                 fact_consultas_varias("presentacion", "Presentacion");
1240                 }
1241         }
1242 }
1243