]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* Otro avance en el arbol B*, todavia no se si anda, pero compila.
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4 #include "common.h"
5 #include "menu.h"
6 #include "lista.h"
7
8 static t_LstFacturas *lst_facturas;
9
10 /* Procesa una factura antes de enviarla al archivo para guardarla */
11 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
12 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
13
14 #ifdef TP_PRIMER_ENTREGA
15 /* Manejo de la lista en memoria */
16 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
17 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
18 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
19 #endif
20
21 /* Funciones para carga desde el XML */
22 static t_Item *leer_items(xmlNode *, int *cant, int size);
23 static char *leer_nota(xmlNode *, int max);
24
25 t_LstFacturas *fact_get_lst()
26 {
27         return lst_facturas;
28 }
29
30 /* Hack! ... Si no existe propiedad retorna "" */
31 char *xml_get_prop(xmlNode *node, char *nombre)
32 {
33         char *s;
34         s = xmlGetProp(node, nombre);
35         if (s == NULL) {
36                 s = malloc(1);
37                 s[0] = '\0';
38                 return s;
39         }
40         return s;
41 }
42
43 #ifdef TP_PRIMER_ENTREGA
44 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
45 {
46         if (nodo == NULL) return 0;
47         if (nodo->ant == NULL) {
48                 /* Me piden borrar el primer nodo */
49                 if (nodo->sig) {
50                         nodo->sig->ant = NULL;
51                 }
52                 lst->primero = nodo->sig;
53         } else {
54                 if (nodo->sig) {
55                         nodo->sig->ant = nodo->ant;
56                 }
57                 nodo->ant->sig = nodo->sig;
58         }
59         free(nodo);
60         return 1;
61 }
62
63 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
64 {
65         t_Reg_Factura *tmp;
66         if (reg == EMUFS_NOT_FOUND) return NULL;
67         tmp = malloc(sizeof(t_Reg_Factura));
68         if (tmp == NULL) return NULL;
69         tmp->sig = tmp->ant = NULL;
70         tmp->num_reg = reg;
71         tmp->texto_reg = texto;
72         tmp->numero = num;
73
74         return tmp;
75 }
76
77 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
78 {
79         if (nodo == NULL) return 0;
80
81         if (lst->primero) {
82                 lst->primero->ant = nodo;
83                 nodo->sig = lst->primero;
84                 lst->primero = nodo;
85         } else {
86                 lst->primero = nodo;
87         }
88         return 1;
89 }
90 #endif /*TP_PRIMER_ENTREGA*/
91
92 t_Item *leer_items(xmlNode *node, int *cant, int size)
93 {
94         t_Item *tmp;
95         int count;
96         char *prop;
97         if (size == -1) {
98                 tmp = NULL;
99                 count = 0;
100                 node = node->children;
101                 while (node) {
102                         if (node->type == XML_ELEMENT_NODE) {
103                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
104                                         count++;
105                                         tmp = realloc(tmp, sizeof(t_Item)*count);
106                                         memset(&tmp[count-1], 0, sizeof(t_Item));
107                                         prop = xml_get_prop(node, "NroArtĂ­culo");
108                                         tmp[count-1].numero = atoi(prop);
109                                         xmlFree(prop);
110                                         strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
111                                         tmp[count-1].cv[8] = '\0';
112                                         strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
113                                         tmp[count-1].pvu[8] = '\0';
114                                 }
115                         }
116                         node = node->next;
117                 }
118                 *cant = count;
119         } else {
120                 (*cant) = size;
121                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
122                 memset(tmp, 0, sizeof(t_Item)*size);
123
124                 count = 0;
125                 node = node->children;
126                 while (node) {
127                         if (node->type == XML_ELEMENT_NODE) {
128                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
129                                         memset(&tmp[count], 0, sizeof(t_Item));
130                                         prop = xml_get_prop(node, "NroArtĂ­culo");
131                                         tmp[count].numero = atoi(prop);
132                                         xmlFree(prop);
133                                         strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
134                                         tmp[count].cv[8] = '\0';
135                                         strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
136                                         tmp[count].pvu[8] = '\0';
137                                         count++;
138                                 }
139                         }
140                         if (count == 10) break; /* No me entran mas items! */
141                         node = node->next;
142                 }
143         }
144         return tmp;
145 }
146
147 char *leer_nota(xmlNode *node, int max)
148 {
149         xmlNode *tmp;
150         char *salida;
151         tmp = node->children;
152         while (tmp) {
153                 if (tmp->type == XML_ELEMENT_NODE) {
154                         if (strcmp(tmp->name, "NOTA") == 0) {
155                                 break;
156                         }
157                 }
158                 tmp = tmp->next;
159         }
160
161         if (tmp) {
162                 if (max == -1) {
163                         salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
164                         strcpy(salida, XML_GET_CONTENT(tmp->children));
165                 } else {
166                         salida = (char *)malloc(sizeof(char)*max);
167                         strncpy(salida, XML_GET_CONTENT(tmp->children), max-1);
168                         salida[max-1] = '\0';
169                 }
170         } else {
171                 if (max == -1) {
172                         salida = (char *)malloc(sizeof(char));
173                         salida[0] = '\0';
174                 } else {
175                         salida = (char *)malloc(sizeof(char)*max);
176                         memset(salida, 0, max);
177                 }
178         }
179         return salida;
180 }
181
182
183 t_LstFacturas *fact_cargar(t_Parametros *param)
184 {
185         xmlDocPtr document;
186         xmlNode *node, *inicio;
187         int error = 0, cant_items;
188         char *prop;
189         EMUFS_REG_SIZE size;
190         t_LstFacturas *tmp;
191         t_Factura *factura;
192         EMUFS_REG_ID id;
193         
194         lst_facturas = NULL;
195
196         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
197         if (tmp == NULL) return NULL;
198         lst_facturas = tmp;
199         tmp->primero = NULL;
200
201         if (param != NULL) {
202                 PERR("Voy a cargar de un XML");
203                 PERR(param->xml_fact);
204                 document = xmlReadFile(param->xml_fact, "ISO-8859-1",0);
205                 if (document == NULL) {
206                         PERR("Error al leer documento!!");
207                         free(tmp);
208                         lst_facturas = NULL;
209                         return NULL;
210                 }
211
212                 inicio = NULL;
213                 node = xmlDocGetRootElement(document);
214                 /* Busco el TAG principal "ARTICULOS" */
215                 while (node) {
216                         if (node->type == XML_ELEMENT_NODE) {
217                                 if (strcmp(node->name, "FACTURAS") == 0) {
218                                         inicio = node->children;
219                                         break;
220                                 }
221                         }
222                         node = node->next;
223                 }
224
225                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
226                  * y los items al final del registro.
227                  */
228                 if ((param->tipo_arch_fact) == T3) {
229                         /* Limito a 10 items en el caso de registro constante! */
230                         cant_items = 10;
231                 } else {
232                         cant_items = 0;
233                 }
234                 tmp->fp = emufs_crear("facturas", param->tipo_arch_fact, param->tam_bloque_fact, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
235                 emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512, 0);
236                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512, 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                         /* Calculo el tamaño que voy a necesitar */
679                         i[0] = sizeof(int);
680                         i[1] = sizeof(float);
681                         i[2] = sizeof(int);
682                         i[3] = sizeof(int);
683                         i[4] = sizeof(EMUFS_BLOCK_ID);
684                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
685                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
686                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
687                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
688                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
689                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
690                         i[11] = sizeof(t_Item)*f->cant_items;
691                         (*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];
692                         tmp = (char *)malloc(*size);
693                         if (tmp == NULL) return NULL;
694                         memset(tmp, 0, *size);
695                         /* Ahora copio la info */
696                         memcpy(tmp, &f->numero, i[0]);
697                         memcpy(tmp+i[0], &f->procdoi, i[1]);
698                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
699                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
700                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
701                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
702                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
703                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
704                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
705                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
706                         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]);
707                         if (i[11] != 0)
708                                 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]);
709                 break;
710                 case T3:
711                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
712                         tmp = (char *)malloc(*size);
713                         if (tmp == NULL) return NULL;
714                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
715                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
716         }
717         return tmp;
718 }
719
720 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
721 {
722         char *ini, *fin;
723         /*int dummy;*/
724
725         if (lst == NULL) {
726                 PERR("Puntero a lista NULO");
727                 return 0;
728         }
729         if (lst->fp == NULL) {
730                 PERR("EMUFS No creado!");
731                 return 0;
732         }
733
734         switch (lst->fp->tipo) {
735                 case T1:
736                 case T2:
737                         ini = (char *)src;
738                         /* Copio los campos numericos, muy facil:-) */
739                         memcpy(&dst->numero, ini, sizeof(int));
740                         ini+=sizeof(int);
741                         
742                         memcpy(&dst->procdoi, ini, sizeof(float));
743                         ini+=sizeof(float);
744
745                         memcpy(&dst->numero_remito, ini, sizeof(int));
746                         ini+=sizeof(int);
747                         
748                         memcpy(&dst->cant_items, ini, sizeof(int));
749                         ini+=sizeof(int);
750                         
751                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
752                         ini+=sizeof(EMUFS_BLOCK_ID);
753
754                         /* Ahora empieza el juego */
755                         /* Los \0 son los delimitadores de campo! */
756                         fin = ini;
757                         while (*fin!='\0') fin++;
758                         memcpy(dst->emision, ini, fin-ini+1);
759                         
760                         ini = fin+1;
761                         fin = ini;
762                         while (*fin!='\0') fin++;
763                         memcpy(dst->vencimiento, ini, fin-ini+1);
764                         
765                         ini = fin+1;
766                         fin = ini;
767                         while (*fin!='\0') fin++;
768                         memcpy(dst->estado, ini, fin-ini+1);
769                         
770                         ini = fin+1;
771                         fin = ini;
772                         while (*fin!='\0') fin++;
773                         memcpy(dst->fp, ini, fin-ini+1);
774                         
775                         ini = fin+1;
776                         fin = ini;
777                         while (*fin!='\0') fin++;
778                         memcpy(dst->ctacte, ini, fin-ini+1);
779                         
780                         ini = fin+1;
781                         fin = ini;
782                         while (*fin!='\0') fin++;
783                         memcpy(dst->cheque, ini, fin-ini+1);
784
785                         if (dst->cant_items > 0) {
786                                 /* Ahora tengo que cargar los items */
787                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
788
789                                 ini = fin+1;
790                                 fin = (char *)src+size;
791                                 memcpy(dst->items, ini, fin-ini);
792
793                         } else {
794                                 dst->items = NULL;
795                         }
796                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
797                         return 0;
798                 break;
799                 case T3:
800                         /* Se que tengo 10 items */
801                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
802                         size = lst->fp->tam_reg;
803                         memcpy(dst, src, size-sizeof(t_Item)*10);
804                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
805                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
806                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
807         }
808         return 0;
809 }
810
811 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
812 {
813 #ifdef NO_ANDA_AUN
814         EMUFS *nuevo, *old;
815         EMUFS_REG_ID *indices, id;
816         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
817         t_Factura fact;
818         t_LstFacturas *lst_nueva;
819         int error;
820         char *save;
821
822         PERR("==== EMPIEZO ====\n");
823         old = lst_facturas->fp;
824
825         /* Creo el nuevo file */
826         PERR("Creo el archivo\n");
827         if (tipo == T3) {
828                 /* Me aseguro de que entren n items completos */
829                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
830         }
831         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
832         if (nuevo == NULL) {
833                 PERR("ARCHIVO NUEVO NO CREADO");
834                 return;
835         }
836
837         /* Creo la nueva lista */
838         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
839         lst_nueva->primero = NULL;
840         lst_nueva->fp = nuevo;
841         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
842
843         /* Leo los indices del archivo viejo */
844         PERR("Obtengo Indices\n");
845         indices = emufs_idx_get(old, &indices_total);
846         if (indices == NULL) {
847                 fact_liberar(lst_nueva);
848                 return;
849         }
850
851         PERR("Proceso datos");
852         for(i=0; i<indices_total; i++) {
853                 error = 0;
854                 PERR("Leo");
855                 save = old->leer_registro(old, indices[i], &size, &error);
856                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
857                         PERR("Procese Leer Ok");
858                         free(save);
859                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
860
861                         /* Actualizo el ID de la nota asociada */
862                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
863                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
864                         PERR("Procese Grabar Ok");
865                         if (save) {
866                                 error = 0;
867                                 PERR("Grabo el Registro");
868                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
869                                 PERR("Lo agrego");
870                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
871                                 PERR("Libero Memoria");
872                                 free(save);
873                                 if (fact.items) free(fact.items);
874                                 if (fact.nota) free(fact.nota);
875                                 PERR("Termine con este Item");
876                         }
877                 }
878         }
879
880         free(indices);
881
882         PERR("Libero lo viejo\n");
883         fact_liberar(lst_facturas);
884
885         PERR("Ahora tengo lo nuevo\n");
886         lst_facturas = lst_nueva;
887
888         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
889         free(lst_facturas->fp->nombre);
890         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
891         strcpy(lst_facturas->fp->nombre, "facturas");
892         
893         /* Tambien actualizo el nombre para notas */
894         free(lst_facturas->fp_texto->nombre);
895         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
896         strcpy(lst_facturas->fp_texto->nombre, "notas");
897         
898         /* Muevo los archivos! */
899         /* TODO : Poner en otro lugar mas generico! */
900         PERR("Renombre!!\n");
901         rename("emufs_tmp.dat", "facturas.dat");
902         rename("emufs_tmp.idx", "facturas.idx");
903         rename("emufs_tmp.fsc", "facturas.fsc");
904         rename("emufs_tmp.did", "facturas.did");
905         rename("nota_tmp.dat", "notas.dat");
906         rename("nota_tmp.idx", "notas.idx");
907         rename("nota_tmp.fsc", "notas.fsc");
908         rename("nota_tmp.did", "notas.did");
909         PERR("==== TERMINE ====\n");
910 #endif
911 }
912
913 int fact_exportar_xml(const char *filename)
914 {
915         int j;
916         t_Reg_Factura *nodo;
917         t_Factura *fact;
918         EMUFS_REG_ID id, id1;
919         FILE *fp;
920
921         if (lst_facturas->primero == NULL) return 0;
922
923         nodo = lst_facturas->primero;
924
925         if (!(fp = fopen(filename, "wt"))) return 0;
926         
927         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
928         fprintf(fp, "<FACTURAS>\n");
929         while (nodo) {
930                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
931                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
932                 fprintf(fp, "FechaEmisiĂłn=\"%s\" ", fact->emision);
933                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
934                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
935                 fprintf(fp, "FP=\"%s\" ", fact->fp);
936                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
937                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
938                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
939                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
940                 fprintf(fp, ">\n");
941                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
942                 for(j=0; j<fact->cant_items; j++) {
943                         if (fact->items[j].numero != 0)
944                                 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);
945                 }
946                 fprintf(fp, "\t</FACTURA>\n");
947                 nodo = nodo->sig;
948         }
949         fprintf(fp, "\t</FACTURAS>\n");
950
951         fclose(fp);
952         return 1;
953 }
954
955 char *get_estado(char *s)
956 {
957         if (strcmp(s, "PN")==0) return "Pago Normal";
958         if (strcmp(s, "CD")==0) return "Credito al dia";
959         if (strcmp(s, "CM")==0) return "Credito en mora";
960         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
961         if (strcmp(s, "PM")==0) return "Pagada con Mora";
962         if (strcmp(s, "NC")==0) return "No Cobrada";
963
964         return s;
965 }
966
967 char *get_forma_pago(char *s)
968 {
969         if (strcmp(s, "CO") == 0) return "Contado";
970         if (strcmp(s, "CR") == 0) return "Credito";
971         if (strcmp(s, "CH") == 0) return "Cheque";
972
973         return s;
974 }
975
976 void fact_consultas_codigos(char *s)
977 {
978         EMUFS_REG_ID dummy;
979         int desde_codigo, hasta_codigo;
980         int i;
981         t_Factura *factura;
982         t_Lista *lista;
983         t_Form *form;
984         WINDOW *win, *win1;
985
986         win = newwin(LINES-4, COLS-2, 2, 1);
987         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
988         werase(win);
989         box(win, 0, 0);
990         wrefresh(win);
991         
992         /* El usuario ingresa rango a listar */
993         form = form_crear(win1);
994         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
995         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
996
997         form_ejecutar(form, 2, 2);
998
999         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
1000         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
1001
1002         form_destruir(form);
1003         werase(win1);
1004         wrefresh(win1);
1005
1006         /* Creo la lista donde mostrar la consulta*/
1007         /* Muestro solo info relevante */
1008         lista = lista_crear(4, win1, COLS-4, LINES-6);
1009
1010         /* Creo las columnas */
1011         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1012         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1013         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1014         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1015
1016         /* Leo los datos desde el archivo */
1017         for(i=desde_codigo; i<=hasta_codigo; i++) {
1018                 factura = fact_buscar(lst_facturas, i, &dummy, &dummy);
1019                 if (factura != NULL) {
1020                         lista_agregar_fila(lista,
1021                                 factura->numero,
1022                                 factura->emision,
1023                                 get_estado(factura->estado),
1024                                 get_forma_pago(factura->fp)
1025                         );
1026                 }
1027         }
1028
1029         curs_set(0);
1030         lista_ejecutar(lista);
1031         curs_set(1);
1032         
1033         wrefresh(win1);
1034         wrefresh(win);
1035         werase(win1);
1036         werase(win);
1037         wrefresh(win);
1038         delwin(win);
1039 }
1040
1041 float get_importe_factura(t_Item *items, int cant, float interes)
1042 {
1043         float a=0.0f;
1044         int i;
1045         for(i=0; i<cant; i++) {
1046                 a += atof(items[i].cv)*atof(items[i].pvu);
1047         }
1048         a += a*interes/100.0f;
1049         return a;
1050 }
1051
1052
1053 void fact_consultas_fechas(char *s)
1054 {
1055         char desde_fecha[10], hasta_fecha[10];
1056         char estado[6];
1057         t_Lista *lista;
1058         t_Form *form;
1059         WINDOW *win, *win1;
1060         INDICE *idx;
1061         CLAVE k_menor, k_mayor;
1062
1063         win = newwin(LINES-4, COLS-2, 2, 1);
1064         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1065         werase(win);
1066         box(win, 0, 0);
1067         wrefresh(win);
1068         
1069         /* El usuario ingresa rango a listar */
1070         form = form_crear(win1);
1071         form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
1072         form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
1073         form_agregar_widget(form, RADIO, "Estado", 7, "Todos,PN,CD,CM,SF,PM,NC");
1074         form_ejecutar(form, 2, 2);
1075
1076         strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
1077         strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
1078         strcpy(estado, form_obtener_valor_char(form, "Estado"));
1079
1080         form_destruir(form);
1081         werase(win1);
1082         wrefresh(win1);
1083
1084         /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
1085         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
1086         if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
1087         if (strlen(desde_fecha) == 0) {
1088                 k_menor = idx->obtener_menor_clave(idx);
1089                 emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
1090                 PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
1091                 PERR(desde_fecha);
1092         }
1093         if (strlen(hasta_fecha) == 0) {
1094                 k_mayor = idx->obtener_mayor_clave(idx);
1095                 emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
1096                 PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
1097                 PERR(hasta_fecha);
1098         }
1099         
1100         /* Creo la lista donde mostrar la consulta*/
1101         /* Muestro solo info relevante */
1102         lista = lista_crear(4, win1, COLS-4, LINES-6);
1103
1104         /* Creo las columnas */
1105         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1106         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1107         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1108         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1109         lista_agregar_columna(lista, "Importe", DATO_FLOAT, 50, 8);   /* importe         */
1110
1111         /* Leo los datos desde el archivo */
1112         while (k_menor.i_clave != -1) {
1113                 t_Factura fact;
1114                 int error, cant, i;
1115                 char *leo;
1116                 EMUFS_REG_SIZE size;
1117                 INDICE_DATO *datos;
1118                 CLAVE k1;
1119                 datos = idx->buscar_entradas(idx, k_menor, &cant);
1120                 for(i=0; i<cant; i++) {
1121                         error = 1;
1122                         k1.i_clave = datos[i].id;
1123                         leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
1124                         if (leo != NULL) {
1125                                 procesar_leer_factura(&fact, leo, size, lst_facturas);
1126                                 free(leo);
1127                                 /*k.i_clave = fact->reg_nota;
1128                                 error = 0;
1129                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
1130                                 */
1131                         }
1132                         if (strcmp(estado, "Todos") != 0) {
1133                                 if (strcmp(estado, fact.estado) == 0) {
1134                                         fprintf(stderr, "Agrego factura num=%d con %d items\n", fact.numero, fact.cant_items);
1135                                         lista_agregar_fila_ordenada(lista,
1136                                                 fact.numero,
1137                                                 fact.emision,
1138                                                 get_estado(fact.estado),
1139                                                 get_forma_pago(fact.fp),
1140                                                 get_importe_factura(fact.items, fact.cant_items, fact.procdoi)
1141                                         );
1142                                 }
1143                         }
1144                 }
1145                 if (datos) free(datos);
1146                 if (fact.items) free(fact.items);
1147                 k_menor = idx->obtener_sig_clave(idx, k_menor);
1148         }
1149
1150         curs_set(0);
1151         lista_ejecutar(lista);
1152         curs_set(1);
1153         wrefresh(win1);
1154         wrefresh(win);
1155         werase(win1);
1156         werase(win);
1157         wrefresh(win);
1158         delwin(win);
1159 }
1160
1161 void fact_consultas_varias(char *nombre_indice, char *titulo)
1162 {
1163         int i, cant, error;
1164         char *desc, *tmp;
1165         t_Factura factura;
1166         t_Lista *lista;
1167         t_Form *form;
1168         INDICE_DATO *datos;
1169         WINDOW *win, *win1;
1170         CLAVE k;
1171         EMUFS *fs;
1172         EMUFS_REG_SIZE size;
1173
1174         fs = lst_facturas->fp;
1175
1176         win = newwin(LINES-4, COLS-2, 2, 1);
1177         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1178         werase(win);
1179         box(win, 0, 0);
1180         wrefresh(win);
1181         
1182         /* El usuario ingresa rango a listar */
1183         form = form_crear(win1);
1184         form_agregar_widget(form, INPUT, titulo, 50, "");
1185
1186         form_ejecutar(form, 2, 2);
1187
1188         tmp = form_obtener_valor_char(form, titulo);
1189         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1190         strcpy(desc, tmp);
1191
1192         form_destruir(form);
1193         werase(win1);
1194         wrefresh(win1);
1195
1196         /* Creo la lista donde mostrar la consulta*/
1197         /* Muestro solo info relevante */
1198         lista = lista_crear(4, win1, COLS-4, LINES-6);
1199
1200         /* Creo las columnas */
1201         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1202         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1203         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1204         lista_agregar_columna(lista, "Forma Pago", DATO_STR, 40, 19);   /* fp         */
1205
1206         /* Leo los datos desde el archivo */
1207         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1208         for(i=0; i<cant; i++) {
1209                 k.i_clave = datos[i].id;
1210                 error = 1;
1211                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1212                 if (tmp != NULL) {
1213                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1214                         lista_agregar_fila(lista,
1215                                                         factura.numero,
1216                                                         factura.emision,
1217                                                         get_estado(factura.estado),
1218                                                         get_forma_pago(factura.fp)
1219                                         );
1220                         free(tmp);
1221                 } else {
1222                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1223                 }
1224         }
1225
1226         curs_set(0);
1227         lista_ejecutar(lista);
1228         curs_set(1);
1229         
1230         wrefresh(win1);
1231         wrefresh(win);
1232         werase(win1);
1233         werase(win);
1234         wrefresh(win);
1235         delwin(win);
1236 }
1237
1238 void fact_consultas(char *s)
1239 {
1240         MENU(mi_menu) {
1241                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1242                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1243                 MENU_OPCION("por Rango de Fecha", "Consulta por rando de fecha de emision"),
1244                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1245                 MENU_OPCION("Volver", "Volver al menu anterior.")
1246         };
1247         int opt;
1248         
1249         while ((opt = menu_ejecutar(mi_menu, 5, "Consulta de Articulos")) != 4) {
1250                 switch (opt) {
1251                         case 0:
1252                                 fact_consultas_codigos(s);
1253                         break;
1254                         case 1:
1255                                 fact_consultas_varias("emision", "Fecha");
1256                         break;
1257                         case 2:
1258                                 fact_consultas_fechas(s);
1259                         break;
1260                         case 3:
1261                                 fact_consultas_varias("presentacion", "Presentacion");
1262                 }
1263         }
1264 }
1265