]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* Cargo los indices desde el XML
[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, param->ind_fac[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[1].tam_bloque, 0);
236                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, param->ind_fac[0].tipo_arbol, IDX_INT, 0, param->ind_fac[0].tam_bloque, 0);
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         INDICE_DATO dummy;
402                                                                         
403         win = newwin(LINES-4, COLS-2, 2, 1);
404         box(win, 0, 0);
405         
406         fact = fact_form_buscar(win, &id, &id);
407
408         if (fact == NULL) {
409                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
410                 mvwaddstr(win, 2, 1, "No existe artĂ­culo con ese cĂłdigo. Abortando!");
411                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
412                 wrefresh(win);
413                 getch();
414                 werase(win);
415                 wrefresh(win);
416                 delwin(win);
417                 return;
418         }
419
420         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
421         lst_facturas->fp->borrar_registro(lst_facturas->fp, k, dummy);
422         k.i_clave = fact->reg_nota;
423         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k, dummy);
424
425         if (fact->items) free(fact->items);
426         if (fact->nota) free(fact->nota);
427         free(fact);
428 }
429
430 void fact_modificar(char *s)
431 {
432         WINDOW *win, *items, *nota, *subnota;
433         t_Form *form, *form_nota;
434         t_Factura *fact;
435         EMUFS_REG_SIZE size;
436         EMUFS_REG_ID id, id_texto;
437         int error;
438         char tmp_str[10];
439         void *entrada;
440
441         win = newwin(LINES-4, COLS-2, 2, 1);
442         box(win, 0, 0);
443         
444         if (s == NULL) {
445                 fact = fact_form_buscar(win, &id, &id_texto);
446         } else {
447                 fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
448         }
449
450         if (fact == NULL) {
451                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
452                 mvwaddstr(win, 2, 1, "No existe factura con ese cĂłdigo. Abortando!");
453                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
454                 wrefresh(win);
455                 getch();
456                 werase(win);
457                 wrefresh(win);
458                 delwin(win);
459                 return;
460         }
461
462         mvwaddch(win, 10, 0, ACS_LTEE);
463         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
464         mvwaddch(win, 10, COLS-3, ACS_RTEE);
465         wrefresh(win);
466
467         items = derwin(win, LINES-20, COLS-4, 15, 1);
468         nota = derwin(win, 9, COLS-62, 1, 56);
469         subnota = derwin(nota, 7, COLS-64, 1, 1);
470         box(nota, 0, 0);
471         mvwaddstr(nota, 0, 1, "Nota :");
472         wrefresh(nota);
473         wrefresh(items);
474
475         form = form_crear(win);
476         sprintf(tmp_str, "%08d", fact->numero);
477         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
478         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
479         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
480         sprintf(tmp_str, "%08d", fact->numero_remito);
481         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
482         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
483         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
484         sprintf(tmp_str, "%02.2f", fact->procdoi);
485         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
486         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
487         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
488
489         mvwaddstr(subnota, 0, 0, fact->nota);
490         wrefresh(subnota);
491         form_ejecutar(form, 1,1);
492
493         form_nota = form_crear(subnota);
494         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
495         form_ejecutar(form_nota, 0, 0);
496
497         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
498         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
499         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
500         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
501         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
502         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
503         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
504         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
505         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
506
507         form_destruir(form);
508
509         free(fact->nota);
510         fact->nota = form_obtener_valor_char(form_nota, "");
511
512         form_destruir(form_nota);
513
514         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
515         if (entrada) {
516                 CLAVE k;
517                 INDICE_DATO dummy;
518                 k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
519                 lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error, dummy);
520                 k.i_clave = id_texto;
521                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error, dummy);
522                 free(entrada);
523         }
524
525         free(fact->items);
526         free(fact);
527
528         werase(win);
529         wrefresh(win);
530         delwin(subnota);
531         delwin(nota);
532         delwin(items);
533         delwin(win);
534 }
535
536 void fact_agregar(char *s)
537 {
538         WINDOW *win, *items, *nota, *subnota;
539         t_Form *form, *form_nota;
540         t_Item *its = NULL;
541         t_Factura fact;
542         EMUFS_REG_SIZE size;
543         EMUFS_REG_ID id_texto;
544         int y_actual, cant, error;
545         char *entrada;
546
547         win = newwin(LINES-4, COLS-2, 2, 1);
548         box(win, 0, 0);
549         mvwaddch(win, 10, 0, ACS_LTEE);
550         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
551         mvwaddch(win, 10, COLS-3, ACS_RTEE);
552         wrefresh(win);
553
554         items = derwin(win, LINES-20, COLS-4, 15, 1);
555         nota = derwin(win, 9, COLS-62, 1, 56);
556         subnota = derwin(nota, 7, COLS-64, 1, 1);
557         box(nota, 0, 0);
558         mvwaddstr(nota, 0, 1, "Nota :");
559         wrefresh(nota);
560         wrefresh(items);
561
562         form = form_crear(win);
563         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
564         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
565         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
566         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
567         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
568         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
569         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
570         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
571         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
572
573         form_ejecutar(form, 1,1);
574
575         form_nota = form_crear(subnota);
576         form_agregar_widget(form_nota, INPUT, "", 255, "");
577         form_ejecutar(form_nota, 0, 0);
578
579         /* XXX No destruir form_nota hasta el final !!!!! XXX */
580
581         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
582         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
583         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
584         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
585         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
586         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
587         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
588         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
589         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
590
591         form_destruir(form);
592
593         form = form_crear(win);
594         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
595         form_agregar_widget(form, INPUT, "CV", 8, "");
596         form_agregar_widget(form, INPUT, "PVU", 8, "");
597         y_actual = 0;
598         scrollok(items, 1);
599         mvwaddstr(win, 15, 2, "Numero");
600         mvwaddstr(win, 15, 11, "CV");
601         mvwaddstr(win, 15, 21, "PVU");
602         cant = 0;
603         do {
604                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
605                 form_set_valor(form, "CV", "");
606                 form_set_valor(form, "PVU", "");
607                 form_ejecutar(form, 2, 11);
608
609                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
610
611                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
612                         y_actual++;
613                         if (y_actual > LINES-22) {
614                                 y_actual = LINES-22;
615                                 wscrl(items, 1);
616                         }
617                         mvwaddstr(items, y_actual, 1, entrada);
618                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
619                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
620                         wrefresh(items);
621                         /* Agrego el Item */
622                         cant++;
623                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
624                         if (its != NULL) {
625                                 its[cant-1].numero = atoi(entrada);
626                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
627                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
628                         }
629                 }
630         } while (entrada[0] != '*');
631
632         if (lst_facturas->fp->tipo == T3) {
633                 if (cant != 10) {
634                         /* TODO Limitar en la GUI en lugar de truncar! */
635                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
636                         if (its == NULL) {
637                                 cant = 0;
638                         } else {
639                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
640                                 cant = 10;
641                         }
642                 }
643         }
644         fact.items = its;
645         fact.cant_items = cant;
646         fact.nota = form_obtener_valor_char(form_nota, "");
647
648         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
649         fact.reg_nota = id_texto;
650
651         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
652         if (entrada) {
653                 error = 0;
654                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
655                 free(entrada);
656         }
657                                                                         
658         if (its) free(its);
659         form_destruir(form);
660         form_destruir(form_nota);
661
662         werase(win);
663         wrefresh(win);
664         delwin(items);
665         delwin(subnota);
666         delwin(nota);
667         delwin(win);
668 }
669
670 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
671 {
672         char *tmp=NULL;
673         int i[12];
674
675         switch (lst->fp->tipo) {
676                 case T1:
677                 case T2:
678                 case T4:
679                         /* Calculo el tamaño que voy a necesitar */
680                         i[0] = sizeof(int);
681                         i[1] = sizeof(float);
682                         i[2] = sizeof(int);
683                         i[3] = sizeof(int);
684                         i[4] = sizeof(EMUFS_BLOCK_ID);
685                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
686                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
687                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
688                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
689                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
690                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
691                         i[11] = sizeof(t_Item)*f->cant_items;
692                         (*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];
693                         tmp = (char *)malloc(*size);
694                         if (tmp == NULL) return NULL;
695                         memset(tmp, 0, *size);
696                         /* Ahora copio la info */
697                         memcpy(tmp, &f->numero, i[0]);
698                         memcpy(tmp+i[0], &f->procdoi, i[1]);
699                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
700                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
701                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
702                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
703                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
704                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
705                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
706                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
707                         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]);
708                         if (i[11] != 0)
709                                 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]);
710                 break;
711                 case T3:
712                 case T5:
713                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
714                         tmp = (char *)malloc(*size);
715                         if (tmp == NULL) return NULL;
716                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
717                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
718         }
719         return tmp;
720 }
721
722 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
723 {
724         char *ini, *fin;
725         /*int dummy;*/
726
727         if (lst == NULL) {
728                 PERR("Puntero a lista NULO");
729                 return 0;
730         }
731         if (lst->fp == NULL) {
732                 PERR("EMUFS No creado!");
733                 return 0;
734         }
735
736         switch (lst->fp->tipo) {
737                 case T1:
738                 case T2:
739                 case T4:
740                         ini = (char *)src;
741                         /* Copio los campos numericos, muy facil:-) */
742                         memcpy(&dst->numero, ini, sizeof(int));
743                         ini+=sizeof(int);
744                         
745                         memcpy(&dst->procdoi, ini, sizeof(float));
746                         ini+=sizeof(float);
747
748                         memcpy(&dst->numero_remito, ini, sizeof(int));
749                         ini+=sizeof(int);
750                         
751                         memcpy(&dst->cant_items, ini, sizeof(int));
752                         ini+=sizeof(int);
753                         
754                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
755                         ini+=sizeof(EMUFS_BLOCK_ID);
756
757                         /* Ahora empieza el juego */
758                         /* Los \0 son los delimitadores de campo! */
759                         fin = ini;
760                         while (*fin!='\0') fin++;
761                         memcpy(dst->emision, ini, fin-ini+1);
762                         
763                         ini = fin+1;
764                         fin = ini;
765                         while (*fin!='\0') fin++;
766                         memcpy(dst->vencimiento, ini, fin-ini+1);
767                         
768                         ini = fin+1;
769                         fin = ini;
770                         while (*fin!='\0') fin++;
771                         memcpy(dst->estado, ini, fin-ini+1);
772                         
773                         ini = fin+1;
774                         fin = ini;
775                         while (*fin!='\0') fin++;
776                         memcpy(dst->fp, ini, fin-ini+1);
777                         
778                         ini = fin+1;
779                         fin = ini;
780                         while (*fin!='\0') fin++;
781                         memcpy(dst->ctacte, ini, fin-ini+1);
782                         
783                         ini = fin+1;
784                         fin = ini;
785                         while (*fin!='\0') fin++;
786                         memcpy(dst->cheque, ini, fin-ini+1);
787
788                         if (dst->cant_items > 0) {
789                                 /* Ahora tengo que cargar los items */
790                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
791
792                                 ini = fin+1;
793                                 fin = (char *)src+size;
794                                 memcpy(dst->items, ini, fin-ini);
795
796                         } else {
797                                 dst->items = NULL;
798                         }
799                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
800                         return 0;
801                 break;
802                 case T3:
803                 case T5:
804                         /* Se que tengo 10 items */
805                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
806                         size = lst->fp->tam_reg;
807                         memcpy(dst, src, size-sizeof(t_Item)*10);
808                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
809                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
810                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
811         }
812         return 0;
813 }
814
815 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
816 {
817 #ifdef NO_ANDA_AUN
818         EMUFS *nuevo, *old;
819         EMUFS_REG_ID *indices, id;
820         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
821         t_Factura fact;
822         t_LstFacturas *lst_nueva;
823         int error;
824         char *save;
825
826         PERR("==== EMPIEZO ====\n");
827         old = lst_facturas->fp;
828
829         /* Creo el nuevo file */
830         PERR("Creo el archivo\n");
831         if (tipo == T3) {
832                 /* Me aseguro de que entren n items completos */
833                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
834         }
835         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
836         if (nuevo == NULL) {
837                 PERR("ARCHIVO NUEVO NO CREADO");
838                 return;
839         }
840
841         /* Creo la nueva lista */
842         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
843         lst_nueva->primero = NULL;
844         lst_nueva->fp = nuevo;
845         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
846
847         /* Leo los indices del archivo viejo */
848         PERR("Obtengo Indices\n");
849         indices = emufs_idx_get(old, &indices_total);
850         if (indices == NULL) {
851                 fact_liberar(lst_nueva);
852                 return;
853         }
854
855         PERR("Proceso datos");
856         for(i=0; i<indices_total; i++) {
857                 error = 0;
858                 PERR("Leo");
859                 save = old->leer_registro(old, indices[i], &size, &error);
860                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
861                         PERR("Procese Leer Ok");
862                         free(save);
863                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
864
865                         /* Actualizo el ID de la nota asociada */
866                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
867                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
868                         PERR("Procese Grabar Ok");
869                         if (save) {
870                                 error = 0;
871                                 PERR("Grabo el Registro");
872                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
873                                 PERR("Lo agrego");
874                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
875                                 PERR("Libero Memoria");
876                                 free(save);
877                                 if (fact.items) free(fact.items);
878                                 if (fact.nota) free(fact.nota);
879                                 PERR("Termine con este Item");
880                         }
881                 }
882         }
883
884         free(indices);
885
886         PERR("Libero lo viejo\n");
887         fact_liberar(lst_facturas);
888
889         PERR("Ahora tengo lo nuevo\n");
890         lst_facturas = lst_nueva;
891
892         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
893         free(lst_facturas->fp->nombre);
894         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
895         strcpy(lst_facturas->fp->nombre, "facturas");
896         
897         /* Tambien actualizo el nombre para notas */
898         free(lst_facturas->fp_texto->nombre);
899         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
900         strcpy(lst_facturas->fp_texto->nombre, "notas");
901         
902         /* Muevo los archivos! */
903         /* TODO : Poner en otro lugar mas generico! */
904         PERR("Renombre!!\n");
905         rename("emufs_tmp.dat", "facturas.dat");
906         rename("emufs_tmp.idx", "facturas.idx");
907         rename("emufs_tmp.fsc", "facturas.fsc");
908         rename("emufs_tmp.did", "facturas.did");
909         rename("nota_tmp.dat", "notas.dat");
910         rename("nota_tmp.idx", "notas.idx");
911         rename("nota_tmp.fsc", "notas.fsc");
912         rename("nota_tmp.did", "notas.did");
913         PERR("==== TERMINE ====\n");
914 #endif
915 }
916
917 int fact_exportar_xml(const char *filename)
918 {
919         int j;
920         t_Reg_Factura *nodo;
921         t_Factura *fact;
922         EMUFS_REG_ID id, id1;
923         FILE *fp;
924
925         if (lst_facturas->primero == NULL) return 0;
926
927         nodo = lst_facturas->primero;
928
929         if (!(fp = fopen(filename, "wt"))) return 0;
930         
931         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
932         fprintf(fp, "<FACTURAS>\n");
933         while (nodo) {
934                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
935                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
936                 fprintf(fp, "FechaEmisiĂłn=\"%s\" ", fact->emision);
937                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
938                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
939                 fprintf(fp, "FP=\"%s\" ", fact->fp);
940                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
941                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
942                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
943                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
944                 fprintf(fp, ">\n");
945                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
946                 for(j=0; j<fact->cant_items; j++) {
947                         if (fact->items[j].numero != 0)
948                                 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);
949                 }
950                 fprintf(fp, "\t</FACTURA>\n");
951                 nodo = nodo->sig;
952         }
953         fprintf(fp, "\t</FACTURAS>\n");
954
955         fclose(fp);
956         return 1;
957 }
958
959 char *get_estado(char *s)
960 {
961         if (strcmp(s, "PN")==0) return "Pago Normal";
962         if (strcmp(s, "CD")==0) return "Credito al dia";
963         if (strcmp(s, "CM")==0) return "Credito en mora";
964         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
965         if (strcmp(s, "PM")==0) return "Pagada con Mora";
966         if (strcmp(s, "NC")==0) return "No Cobrada";
967
968         return s;
969 }
970
971 char *get_forma_pago(char *s)
972 {
973         if (strcmp(s, "CO") == 0) return "Contado";
974         if (strcmp(s, "CR") == 0) return "Credito";
975         if (strcmp(s, "CH") == 0) return "Cheque";
976
977         return s;
978 }
979
980 void fact_consultas_codigos(char *s)
981 {
982         EMUFS_REG_ID dummy;
983         int desde_codigo, hasta_codigo;
984         int i;
985         t_Factura *factura;
986         t_Lista *lista;
987         t_Form *form;
988         WINDOW *win, *win1;
989
990         win = newwin(LINES-4, COLS-2, 2, 1);
991         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
992         werase(win);
993         box(win, 0, 0);
994         wrefresh(win);
995         
996         /* El usuario ingresa rango a listar */
997         form = form_crear(win1);
998         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
999         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
1000
1001         form_ejecutar(form, 2, 2);
1002
1003         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
1004         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
1005
1006         form_destruir(form);
1007         werase(win1);
1008         wrefresh(win1);
1009
1010         /* Creo la lista donde mostrar la consulta*/
1011         /* Muestro solo info relevante */
1012         lista = lista_crear(4, win1, COLS-4, LINES-6);
1013
1014         /* Creo las columnas */
1015         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1016         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1017         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1018         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1019
1020         /* Leo los datos desde el archivo */
1021         for(i=desde_codigo; i<=hasta_codigo; i++) {
1022                 factura = fact_buscar(lst_facturas, i, &dummy, &dummy);
1023                 if (factura != NULL) {
1024                         lista_agregar_fila(lista,
1025                                 factura->numero,
1026                                 factura->emision,
1027                                 get_estado(factura->estado),
1028                                 get_forma_pago(factura->fp)
1029                         );
1030                 }
1031         }
1032
1033         curs_set(0);
1034         lista_ejecutar(lista);
1035         curs_set(1);
1036         
1037         wrefresh(win1);
1038         wrefresh(win);
1039         werase(win1);
1040         werase(win);
1041         wrefresh(win);
1042         delwin(win);
1043 }
1044
1045 float get_importe_factura(t_Item *items, int cant, float interes)
1046 {
1047         float a=0.0f;
1048         int i;
1049         for(i=0; i<cant; i++) {
1050                 a += atof(items[i].cv)*atof(items[i].pvu);
1051         }
1052         a += a*interes/100.0f;
1053         return a;
1054 }
1055
1056
1057 void fact_consultas_fechas(char *s)
1058 {
1059         char desde_fecha[10], hasta_fecha[10];
1060         char estado[6];
1061         t_Lista *lista;
1062         t_Form *form;
1063         WINDOW *win, *win1;
1064         INDICE *idx;
1065         CLAVE k_menor, k_mayor;
1066
1067         win = newwin(LINES-4, COLS-2, 2, 1);
1068         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1069         werase(win);
1070         box(win, 0, 0);
1071         wrefresh(win);
1072         
1073         /* El usuario ingresa rango a listar */
1074         form = form_crear(win1);
1075         form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
1076         form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
1077         form_agregar_widget(form, RADIO, "Estado", 7, "Todos,PN,CD,CM,SF,PM,NC");
1078         form_ejecutar(form, 2, 2);
1079
1080         strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
1081         strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
1082         strcpy(estado, form_obtener_valor_char(form, "Estado"));
1083
1084         form_destruir(form);
1085         werase(win1);
1086         wrefresh(win1);
1087
1088         /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
1089         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
1090         if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
1091         if (strlen(desde_fecha) == 0) {
1092                 k_menor = idx->obtener_menor_clave(idx);
1093                 emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
1094                 PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
1095                 PERR(desde_fecha);
1096         }
1097         if (strlen(hasta_fecha) == 0) {
1098                 k_mayor = idx->obtener_mayor_clave(idx);
1099                 emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
1100                 PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
1101                 PERR(hasta_fecha);
1102         }
1103         
1104         /* Creo la lista donde mostrar la consulta*/
1105         /* Muestro solo info relevante */
1106         lista = lista_crear(4, win1, COLS-4, LINES-6);
1107
1108         /* Creo las columnas */
1109         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1110         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1111         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1112         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1113         lista_agregar_columna(lista, "Importe", DATO_FLOAT, 50, 8);   /* importe         */
1114
1115         /* Leo los datos desde el archivo */
1116         while (k_menor.i_clave != -1) {
1117                 t_Factura fact;
1118                 int error, cant, i;
1119                 char *leo;
1120                 EMUFS_REG_SIZE size;
1121                 INDICE_DATO *datos;
1122                 CLAVE k1;
1123                 datos = idx->buscar_entradas(idx, k_menor, &cant);
1124                 for(i=0; i<cant; i++) {
1125                         error = 1;
1126                         k1.i_clave = datos[i].id;
1127                         leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
1128                         if (leo != NULL) {
1129                                 procesar_leer_factura(&fact, leo, size, lst_facturas);
1130                                 free(leo);
1131                                 /*k.i_clave = fact->reg_nota;
1132                                 error = 0;
1133                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
1134                                 */
1135                         }
1136                         if (strcmp(estado, "Todos") != 0) {
1137                                 if (strcmp(estado, fact.estado) == 0) {
1138                                         fprintf(stderr, "Agrego factura num=%d con %d items\n", fact.numero, fact.cant_items);
1139                                         lista_agregar_fila_ordenada(lista,
1140                                                 fact.numero,
1141                                                 fact.emision,
1142                                                 get_estado(fact.estado),
1143                                                 get_forma_pago(fact.fp),
1144                                                 get_importe_factura(fact.items, fact.cant_items, fact.procdoi)
1145                                         );
1146                                 }
1147                         }
1148                 }
1149                 if (datos) free(datos);
1150                 if (fact.items) free(fact.items);
1151                 k_menor = idx->obtener_sig_clave(idx, k_menor);
1152         }
1153
1154         curs_set(0);
1155         lista_ejecutar(lista);
1156         curs_set(1);
1157         wrefresh(win1);
1158         wrefresh(win);
1159         werase(win1);
1160         werase(win);
1161         wrefresh(win);
1162         delwin(win);
1163 }
1164
1165 void fact_consultas_varias(char *nombre_indice, char *titulo)
1166 {
1167         int i, cant, error;
1168         char *desc, *tmp;
1169         t_Factura factura;
1170         t_Lista *lista;
1171         t_Form *form;
1172         INDICE_DATO *datos;
1173         WINDOW *win, *win1;
1174         CLAVE k;
1175         EMUFS *fs;
1176         EMUFS_REG_SIZE size;
1177
1178         fs = lst_facturas->fp;
1179
1180         win = newwin(LINES-4, COLS-2, 2, 1);
1181         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1182         werase(win);
1183         box(win, 0, 0);
1184         wrefresh(win);
1185         
1186         /* El usuario ingresa rango a listar */
1187         form = form_crear(win1);
1188         form_agregar_widget(form, INPUT, titulo, 50, "");
1189
1190         form_ejecutar(form, 2, 2);
1191
1192         tmp = form_obtener_valor_char(form, titulo);
1193         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1194         strcpy(desc, tmp);
1195
1196         form_destruir(form);
1197         werase(win1);
1198         wrefresh(win1);
1199
1200         /* Creo la lista donde mostrar la consulta*/
1201         /* Muestro solo info relevante */
1202         lista = lista_crear(4, win1, COLS-4, LINES-6);
1203
1204         /* Creo las columnas */
1205         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1206         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1207         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1208         lista_agregar_columna(lista, "Forma Pago", DATO_STR, 40, 19);   /* fp         */
1209
1210         /* Leo los datos desde el archivo */
1211         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1212         for(i=0; i<cant; i++) {
1213                 k.i_clave = datos[i].id;
1214                 error = 1;
1215                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1216                 if (tmp != NULL) {
1217                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1218                         lista_agregar_fila(lista,
1219                                                         factura.numero,
1220                                                         factura.emision,
1221                                                         get_estado(factura.estado),
1222                                                         get_forma_pago(factura.fp)
1223                                         );
1224                         free(tmp);
1225                 } else {
1226                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1227                 }
1228         }
1229
1230         curs_set(0);
1231         lista_ejecutar(lista);
1232         curs_set(1);
1233         
1234         wrefresh(win1);
1235         wrefresh(win);
1236         werase(win1);
1237         werase(win);
1238         wrefresh(win);
1239         delwin(win);
1240 }
1241
1242 void fact_consultas(char *s)
1243 {
1244         MENU(mi_menu) {
1245                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1246                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1247                 MENU_OPCION("por Rango de Fecha", "Consulta por rando de fecha de emision"),
1248                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1249                 MENU_OPCION("Volver", "Volver al menu anterior.")
1250         };
1251         int opt;
1252         
1253         while ((opt = menu_ejecutar(mi_menu, 5, "Consulta de Articulos")) != 4) {
1254                 switch (opt) {
1255                         case 0:
1256                                 fact_consultas_codigos(s);
1257                         break;
1258                         case 1:
1259                                 fact_consultas_varias("emision", "Fecha");
1260                         break;
1261                         case 2:
1262                                 fact_consultas_fechas(s);
1263                         break;
1264                         case 3:
1265                                 fact_consultas_varias("presentacion", "Presentacion");
1266                 }
1267         }
1268 }
1269