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