]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
922cee61930687ec0edebd66bced8618ac4708fd
[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, "ctacte", IND_SELECCION, param->ind_fac[4].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[4].tam_bloque, 5);
237                 emufs_agregar_indice(tmp->fp, "cheque", IND_SELECCION, param->ind_fac[3].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[3].tam_bloque, 4);
238                 emufs_agregar_indice(tmp->fp, "vto", IND_SELECCION, param->ind_fac[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[2].tam_bloque, 1);
239                 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);
240                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, param->ind_fac[0].tipo_arbol, IDX_INT, 0, param->ind_fac[0].tam_bloque, 0);
241
242                 /* Creo el indice externo por Nro Articulo */
243                 tmp->fp->externo = emufs_indice_crear(tmp->fp, "articulo", IND_SELECCION, IND_B, IDX_INT, 0, 512, 0);
244
245                 tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100);
246                 for (node=inicio ; node ; node = node->next) {
247                         if (node->type == XML_ELEMENT_NODE) {
248                                 if (strcmp(node->name, "FACTURA") == 0) {
249                                         t_Factura fact;
250                                         void *save;
251                                         memset(&fact, 0, sizeof(t_Factura));
252                                         prop = xml_get_prop(node, "NroFac");
253                                         fact.numero = atoi(prop); xmlFree(prop);
254                                         prop = xml_get_prop(node, "PorcDoI");
255                                         fact.procdoi = atof(prop); xmlFree(prop);
256                                         prop = xml_get_prop(node, "NroRemito");
257                                         fact.numero_remito = atoi(prop); xmlFree(prop);
258                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisiĂłn"), 8); xmlFree(prop);
259                                         fact.emision[8] = '\0';
260                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
261                                         fact.vencimiento[8] = '\0';
262                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
263                                         fact.estado[2] = '\0';
264                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
265                                         fact.fp[2] = '\0';
266                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
267                                         fact.ctacte[5] = '\0';
268                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
269                                         fact.cheque[18] = '\0';
270
271                                         fact.nota = leer_nota(node, ((param->tipo_arch_nota==T3)?100:-1));
272                                         fact.items = leer_items(node, &fact.cant_items, (param->tipo_arch_fact==T3)?10:-1);
273
274                                         error = 0;
275                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, (param->tipo_arch_nota==T3)?100:(strlen(fact.nota)+1), &error);
276                                         fact.reg_nota = id;
277                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
278                                         if (save != NULL) {
279                                                 int i;
280                                                 error = 0;
281                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
282                                         
283                                                 /* Agrego los Items al indice externo */
284                                                 for(i=0; i<fact.cant_items; i++) {
285                                                         if (fact.items[i].numero != 0) {
286                                                                 CLAVE _k; /* HACK Para hacer mas rapido */
287                                                                 INDICE_DATO _dato;
288                                                                 _k.i_clave = fact.items[i].numero;
289                                                                 _dato.id = id;
290                                                                 tmp->fp->externo->agregar_entrada(tmp->fp->externo, _k, _dato);
291                                                         }
292                                                 }
293                                                 
294                                                 if (fact.items) {
295                                                         free(fact.items);
296                                                         fact.items = NULL;
297                                                 }
298                                                 if (fact.nota) {
299                                                         free(fact.nota);
300                                                         fact.nota = NULL;
301                                                 }
302                                                 free(save);
303                                         }
304                                 }
305                         }
306                 }
307                 xmlFreeDoc(document);
308                 xmlCleanupParser();
309         } else {
310                 PERR("Voy a recuperar desde un archivo");
311                 tmp->fp = emufs_abrir("facturas");
312                 if (tmp->fp == NULL) {
313                         PERR("No se pudo cargar archivo de facturas!");
314                         free(tmp);
315                         lst_facturas = NULL;
316                         return NULL;
317                 }
318                 tmp->fp_texto = emufs_abrir("notas");
319                 if (tmp->fp_texto == NULL) {
320                         PERR("No se pudo cargar archivo de notas!");
321                         emufs_destruir(tmp->fp);
322                         free(tmp);
323                         lst_facturas = NULL;
324                         return NULL;
325                 }
326         }
327
328         PERR("Facturas todo Ok");
329         return lst_facturas;
330 }
331
332 int fact_liberar(t_LstFacturas *l)
333 {
334         t_Reg_Factura *del;
335         if (l == NULL) l = lst_facturas;
336         if (l == NULL) return 1;
337
338         emufs_destruir(l->fp);
339         emufs_destruir(l->fp_texto);
340         while (l->primero) {
341                 del = l->primero;
342                 l->primero = l->primero->sig;
343                 free(del);
344         }
345         free(l);
346
347         lst_facturas = NULL;
348         return 0;
349 }
350
351 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
352 {
353         t_Factura *fact;
354         char *leo;
355         EMUFS_REG_SIZE size;
356         int error;
357         CLAVE k;
358         if (lst == NULL) return NULL;
359
360         fact = NULL;
361         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char*)&numero);
362         error = 0;
363         leo = lst->fp->leer_registro(lst->fp, k, &size, &error);
364         PERR("Registro Leido");
365         if (leo != NULL) {
366                 fact = (t_Factura *)malloc(sizeof(t_Factura));
367                 if (fact == NULL) {
368                         free(leo);
369                         return NULL;
370                 }
371                 PERR("Procesando");
372                 procesar_leer_factura(fact, leo, size, lst);
373                 /* y esto ??!
374                 (*id) = reg->num_reg;
375                 (*id_texto) = reg->texto_reg;
376                 */
377                 free(leo);
378                 PERR("Leo nota");
379                 k.i_clave = fact->reg_nota;
380                 error = 0;
381                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
382                 PERR("DONE");
383         }
384         
385         return fact;
386 }
387
388 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
389 {
390         t_Form *form;
391         t_Factura *fact;
392
393         form = form_crear(win);
394         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
395         form_ejecutar(form, 1,1);
396         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
397         form_destruir(form);
398
399         return fact;
400 }
401
402 void fact_eliminar(char *s)
403 {
404         WINDOW *win;
405         t_Factura *fact;
406         EMUFS_REG_ID id;
407         CLAVE k;
408         INDICE_DATO dummy;
409                                                                         
410         win = newwin(LINES-4, COLS-2, 2, 1);
411         box(win, 0, 0);
412         
413         fact = fact_form_buscar(win, &id, &id);
414
415         if (fact == NULL) {
416                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
417                 mvwaddstr(win, 2, 1, "No existe artĂ­culo con ese cĂłdigo. Abortando!");
418                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
419                 wrefresh(win);
420                 getch();
421                 werase(win);
422                 wrefresh(win);
423                 delwin(win);
424                 return;
425         }
426
427         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
428         lst_facturas->fp->borrar_registro(lst_facturas->fp, k, dummy);
429         k.i_clave = fact->reg_nota;
430         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k, dummy);
431
432         if (fact->items) free(fact->items);
433         if (fact->nota) free(fact->nota);
434         free(fact);
435 }
436
437 void fact_modificar(char *s)
438 {
439         WINDOW *win, *items, *nota, *subnota;
440         t_Form *form, *form_nota;
441         t_Factura *fact;
442         EMUFS_REG_SIZE size;
443         EMUFS_REG_ID id, id_texto;
444         int error;
445         char tmp_str[10];
446         void *entrada;
447
448         win = newwin(LINES-4, COLS-2, 2, 1);
449         box(win, 0, 0);
450         
451         if (s == NULL) {
452                 fact = fact_form_buscar(win, &id, &id_texto);
453         } else {
454                 fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
455         }
456
457         if (fact == NULL) {
458                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
459                 mvwaddstr(win, 2, 1, "No existe factura con ese cĂłdigo. Abortando!");
460                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
461                 wrefresh(win);
462                 getch();
463                 werase(win);
464                 wrefresh(win);
465                 delwin(win);
466                 return;
467         }
468
469         mvwaddch(win, 10, 0, ACS_LTEE);
470         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
471         mvwaddch(win, 10, COLS-3, ACS_RTEE);
472         wrefresh(win);
473
474         items = derwin(win, LINES-20, COLS-4, 15, 1);
475         nota = derwin(win, 9, COLS-62, 1, 56);
476         subnota = derwin(nota, 7, COLS-64, 1, 1);
477         box(nota, 0, 0);
478         mvwaddstr(nota, 0, 1, "Nota :");
479         wrefresh(nota);
480         wrefresh(items);
481
482         form = form_crear(win);
483         sprintf(tmp_str, "%08d", fact->numero);
484         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
485         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
486         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
487         sprintf(tmp_str, "%08d", fact->numero_remito);
488         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
489         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
490         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
491         sprintf(tmp_str, "%02.2f", fact->procdoi);
492         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
493         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
494         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
495
496         mvwaddstr(subnota, 0, 0, fact->nota);
497         wrefresh(subnota);
498         form_ejecutar(form, 1,1);
499
500         form_nota = form_crear(subnota);
501         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
502         form_ejecutar(form_nota, 0, 0);
503
504         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
505         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
506         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
507         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
508         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
509         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
510         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
511         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
512         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
513
514         form_destruir(form);
515
516         free(fact->nota);
517         fact->nota = form_obtener_valor_char(form_nota, "");
518
519         form_destruir(form_nota);
520
521         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
522         if (entrada) {
523                 CLAVE k;
524                 INDICE_DATO dummy;
525                 k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
526                 lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error, dummy);
527                 k.i_clave = id_texto;
528                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error, dummy);
529                 free(entrada);
530         }
531
532         free(fact->items);
533         free(fact);
534
535         werase(win);
536         wrefresh(win);
537         delwin(subnota);
538         delwin(nota);
539         delwin(items);
540         delwin(win);
541 }
542
543 void fact_agregar(char *s)
544 {
545         WINDOW *win, *items, *nota, *subnota;
546         t_Form *form, *form_nota;
547         t_Item *its = NULL;
548         t_Factura fact;
549         EMUFS_REG_SIZE size;
550         EMUFS_REG_ID id_texto;
551         int y_actual, cant, error;
552         float total;
553         char *entrada;
554
555         win = newwin(LINES-4, COLS-2, 2, 1);
556         box(win, 0, 0);
557         mvwaddch(win, 10, 0, ACS_LTEE);
558         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
559         mvwaddch(win, 10, COLS-3, ACS_RTEE);
560         wrefresh(win);
561
562         items = derwin(win, LINES-20, COLS-4, 15, 1);
563         nota = derwin(win, 9, COLS-62, 1, 56);
564         subnota = derwin(nota, 7, COLS-64, 1, 1);
565         box(nota, 0, 0);
566         mvwaddstr(nota, 0, 1, "Nota :");
567         wrefresh(nota);
568         wrefresh(items);
569
570         form = form_crear(win);
571         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
572         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
573         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
574         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
575         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
576         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
577         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
578         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
579         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
580
581         form_ejecutar(form, 1,1);
582
583         form_nota = form_crear(subnota);
584         form_agregar_widget(form_nota, INPUT, "", 255, "");
585         form_ejecutar(form_nota, 0, 0);
586
587         /* XXX No destruir form_nota hasta el final !!!!! XXX */
588
589         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
590         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
591         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
592         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
593         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
594         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
595         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
596         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
597         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
598
599         form_destruir(form);
600
601         form = form_crear(win);
602         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
603         form_agregar_widget(form, INPUT, "Cant. Vendida", 8, "");
604         /*form_agregar_widget(form, INPUT, "PVU", 8, "");*/
605         y_actual = 0;
606         scrollok(items, 1);
607         mvwaddstr(win, 15, 2, "Numero");
608         mvwaddstr(win, 15, 11, "Cant. Vendida");
609         mvwaddstr(win, 15, 31, "PVU");
610         mvwaddstr(win, 15, 41, "Subtotal");
611         cant = 0;
612         total = 0.0f;
613         do {
614                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
615                 form_set_valor(form, "Cant. Vendida", "");
616                 /*form_set_valor(form, "PVU", "");*/
617                 form_ejecutar(form, 2, 11);
618
619                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
620
621                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
622                         /* Veamos si existe el articulo */
623                         t_Articulo *art;
624                         EMUFS_REG_ID dummy;
625
626                         art = art_obtener(NULL, atoi(entrada), &dummy);
627
628                         if (art != NULL) {
629                                 char subtotal[20];
630                                 char *cv;
631                                 y_actual++;
632                                 if (y_actual > LINES-22) {
633                                         y_actual = LINES-22;
634                                         wscrl(items, 1);
635                                 }
636                                 cv = form_obtener_valor_char(form, "Cant. Vendida");
637                                 mvwaddstr(items, y_actual, 1, entrada);
638                                 mvwaddstr(items, y_actual, 10, cv);
639                                 mvwaddstr(items, y_actual, 30, art->pvu);
640
641                                 sprintf(subtotal, "%.2f", atof(cv)*atof(art->pvu));
642                                 total += atof(subtotal);
643
644                                 mvwaddstr(items, y_actual, 40, subtotal);
645
646                                 wrefresh(items);
647                                 /* Agrego el Item */
648                                 cant++;
649                                 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
650                                 if (its != NULL) {
651                                         art_actualizar_stock(atoi(entrada), atoi(cv));
652                                         its[cant-1].numero = atoi(entrada);
653                                         strcpy(its[cant-1].cv, cv);
654                                         strcpy(its[cant-1].pvu, art->pvu);
655                                 }
656                                 free(art);
657                         }
658                 }
659         } while (entrada[0] != '*');
660
661         if (lst_facturas->fp->tipo == T3) {
662                 if (cant != 10) {
663                         /* TODO Limitar en la GUI en lugar de truncar! */
664                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
665                         if (its == NULL) {
666                                 cant = 0;
667                         } else {
668                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
669                                 cant = 10;
670                         }
671                 }
672         }
673         fact.items = its;
674         fact.cant_items = cant;
675         fact.nota = form_obtener_valor_char(form_nota, "");
676
677         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
678         fact.reg_nota = id_texto;
679
680         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
681         if (entrada) {
682                 error = 0;
683                 PERR("GUARDANDO NUEVA FACTURA");
684                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
685                 PERR("DONE");
686                 free(entrada);
687         }
688                                                                         
689         if (its) free(its);
690         form_destruir(form);
691         form_destruir(form_nota);
692
693         werase(win);
694         wrefresh(win);
695         delwin(items);
696         delwin(subnota);
697         delwin(nota);
698         delwin(win);
699 }
700
701 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
702 {
703         char *tmp=NULL;
704         int i[12];
705
706         switch (lst->fp->tipo) {
707                 case T1:
708                 case T2:
709                 case T4:
710                         /* Calculo el tamaño que voy a necesitar */
711                         i[0] = sizeof(int);
712                         i[1] = sizeof(float);
713                         i[2] = sizeof(int);
714                         i[3] = sizeof(int);
715                         i[4] = sizeof(EMUFS_BLOCK_ID);
716                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
717                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
718                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
719                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
720                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
721                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
722                         i[11] = sizeof(t_Item)*f->cant_items;
723                         (*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];
724                         tmp = (char *)malloc(*size);
725                         if (tmp == NULL) return NULL;
726                         memset(tmp, 0, *size);
727                         /* Ahora copio la info */
728                         memcpy(tmp, &f->numero, i[0]);
729                         memcpy(tmp+i[0], &f->procdoi, i[1]);
730                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
731                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
732                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
733                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
734                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
735                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
736                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
737                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
738                         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]);
739                         if (i[11] != 0)
740                                 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]);
741                 break;
742                 case T3:
743                 case T5:
744                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
745                         tmp = (char *)malloc(*size);
746                         if (tmp == NULL) return NULL;
747                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
748                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
749         }
750         return tmp;
751 }
752
753 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
754 {
755         char *ini, *fin;
756         /*int dummy;*/
757
758         if (lst == NULL) {
759                 PERR("Puntero a lista NULO");
760                 return 0;
761         }
762         if (lst->fp == NULL) {
763                 PERR("EMUFS No creado!");
764                 return 0;
765         }
766
767         fprintf(stderr, "TIPO = %d\n", lst->fp->tipo);
768         switch (lst->fp->tipo) {
769                 case T1:
770                 case T2:
771                 case T4:
772                         ini = (char *)src;
773                         /* Copio los campos numericos, muy facil:-) */
774                         memcpy(&dst->numero, ini, sizeof(int));
775                         ini+=sizeof(int);
776                         
777                         memcpy(&dst->procdoi, ini, sizeof(float));
778                         ini+=sizeof(float);
779
780                         memcpy(&dst->numero_remito, ini, sizeof(int));
781                         ini+=sizeof(int);
782                         
783                         memcpy(&dst->cant_items, ini, sizeof(int));
784                         ini+=sizeof(int);
785                         
786                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
787                         ini+=sizeof(EMUFS_BLOCK_ID);
788
789                         /* Ahora empieza el juego */
790                         /* Los \0 son los delimitadores de campo! */
791                         fin = ini;
792                         while (*fin!='\0') fin++;
793                         memcpy(dst->emision, ini, fin-ini+1);
794                         
795                         ini = fin+1;
796                         fin = ini;
797                         while (*fin!='\0') fin++;
798                         memcpy(dst->vencimiento, ini, fin-ini+1);
799                         
800                         ini = fin+1;
801                         fin = ini;
802                         while (*fin!='\0') fin++;
803                         memcpy(dst->estado, ini, fin-ini+1);
804                         
805                         ini = fin+1;
806                         fin = ini;
807                         while (*fin!='\0') fin++;
808                         memcpy(dst->fp, ini, fin-ini+1);
809                         
810                         ini = fin+1;
811                         fin = ini;
812                         while (*fin!='\0') fin++;
813                         memcpy(dst->ctacte, ini, fin-ini+1);
814                         
815                         ini = fin+1;
816                         fin = ini;
817                         while (*fin!='\0') fin++;
818                         memcpy(dst->cheque, ini, fin-ini+1);
819
820                         if (dst->cant_items > 0) {
821                                 /* Ahora tengo que cargar los items */
822                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
823
824                                 ini = fin+1;
825                                 fin = (char *)src+size;
826                                 memcpy(dst->items, ini, fin-ini);
827
828                         } else {
829                                 dst->items = NULL;
830                         }
831                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
832                         return 0;
833                 break;
834                 case T3:
835                 case T5:
836                         /* Se que tengo 10 items */
837                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
838                         size = lst->fp->tam_reg;
839                         memcpy(dst, src, size-sizeof(t_Item)*10);
840                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
841                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
842                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
843         }
844         return 0;
845 }
846
847 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
848 {
849 #ifdef NO_ANDA_AUN
850         EMUFS *nuevo, *old;
851         EMUFS_REG_ID *indices, id;
852         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
853         t_Factura fact;
854         t_LstFacturas *lst_nueva;
855         int error;
856         char *save;
857
858         PERR("==== EMPIEZO ====\n");
859         old = lst_facturas->fp;
860
861         /* Creo el nuevo file */
862         PERR("Creo el archivo\n");
863         if (tipo == T3) {
864                 /* Me aseguro de que entren n items completos */
865                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
866         }
867         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
868         if (nuevo == NULL) {
869                 PERR("ARCHIVO NUEVO NO CREADO");
870                 return;
871         }
872
873         /* Creo la nueva lista */
874         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
875         lst_nueva->primero = NULL;
876         lst_nueva->fp = nuevo;
877         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
878
879         /* Leo los indices del archivo viejo */
880         PERR("Obtengo Indices\n");
881         indices = emufs_idx_get(old, &indices_total);
882         if (indices == NULL) {
883                 fact_liberar(lst_nueva);
884                 return;
885         }
886
887         PERR("Proceso datos");
888         for(i=0; i<indices_total; i++) {
889                 error = 0;
890                 PERR("Leo");
891                 save = old->leer_registro(old, indices[i], &size, &error);
892                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
893                         PERR("Procese Leer Ok");
894                         free(save);
895                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
896
897                         /* Actualizo el ID de la nota asociada */
898                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
899                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
900                         PERR("Procese Grabar Ok");
901                         if (save) {
902                                 error = 0;
903                                 PERR("Grabo el Registro");
904                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
905                                 PERR("Lo agrego");
906                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
907                                 PERR("Libero Memoria");
908                                 free(save);
909                                 if (fact.items) free(fact.items);
910                                 if (fact.nota) free(fact.nota);
911                                 PERR("Termine con este Item");
912                         }
913                 }
914         }
915
916         free(indices);
917
918         PERR("Libero lo viejo\n");
919         fact_liberar(lst_facturas);
920
921         PERR("Ahora tengo lo nuevo\n");
922         lst_facturas = lst_nueva;
923
924         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
925         free(lst_facturas->fp->nombre);
926         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
927         strcpy(lst_facturas->fp->nombre, "facturas");
928         
929         /* Tambien actualizo el nombre para notas */
930         free(lst_facturas->fp_texto->nombre);
931         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
932         strcpy(lst_facturas->fp_texto->nombre, "notas");
933         
934         /* Muevo los archivos! */
935         /* TODO : Poner en otro lugar mas generico! */
936         PERR("Renombre!!\n");
937         rename("emufs_tmp.dat", "facturas.dat");
938         rename("emufs_tmp.idx", "facturas.idx");
939         rename("emufs_tmp.fsc", "facturas.fsc");
940         rename("emufs_tmp.did", "facturas.did");
941         rename("nota_tmp.dat", "notas.dat");
942         rename("nota_tmp.idx", "notas.idx");
943         rename("nota_tmp.fsc", "notas.fsc");
944         rename("nota_tmp.did", "notas.did");
945         PERR("==== TERMINE ====\n");
946 #endif
947 }
948
949 int fact_exportar_xml(const char *filename)
950 {
951         int j;
952         t_Factura *fact;
953         EMUFS_REG_ID id, id1;
954         FILE *fp;
955         CLAVE k;
956         INDICE *idx;
957
958         idx = lst_facturas->fp->indices;
959
960         k = idx->obtener_menor_clave(idx);
961
962         if (!(fp = fopen(filename, "wt"))) return 0;
963         
964         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
965         fprintf(fp, "<FACTURAS>\n");
966         fprintf(stderr, "EXPORTAR : Menor Clave = %d\n", k.i_clave);
967         while (k.i_clave != -1) {
968                 fact = fact_buscar(lst_facturas, k.i_clave, &id, &id1);
969                 fprintf(stderr, "Lei factura numero %d y apunta a %p\n", k.i_clave, fact);
970                 if (fact != NULL) {
971                         fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", fact->numero);
972                         fprintf(fp, "FechaEmisiĂłn=\"%s\" ", fact->emision);
973                         fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
974                         fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
975                         fprintf(fp, "FP=\"%s\" ", fact->fp);
976                         fprintf(fp, "Estado=\"%s\" ", fact->estado);
977                         fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
978                         fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
979                         fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
980                         fprintf(fp, ">\n");
981                         fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
982                         for(j=0; j<fact->cant_items; j++) {
983                                 if (fact->items[j].numero != 0)
984                                         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);
985                         }
986                         fprintf(fp, "\t</FACTURA>\n");
987                         free(fact);
988                 }
989                 k = idx->obtener_sig_clave(idx, k);
990                 fprintf(stderr, "XXX Siguiente = %d\n", k.i_clave);
991         }
992         fprintf(fp, "\t</FACTURAS>\n");
993
994         fclose(fp);
995         return 1;
996 }
997
998 char *get_estado(char *s)
999 {
1000         if (strcmp(s, "PN")==0) return "Pago Normal";
1001         if (strcmp(s, "CD")==0) return "Credito al dia";
1002         if (strcmp(s, "CM")==0) return "Credito en mora";
1003         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
1004         if (strcmp(s, "PM")==0) return "Pagada con Mora";
1005         if (strcmp(s, "NC")==0) return "No Cobrada";
1006
1007         return s;
1008 }
1009
1010 char *get_forma_pago(char *s)
1011 {
1012         if (strcmp(s, "CO") == 0) return "Contado";
1013         if (strcmp(s, "CR") == 0) return "Credito";
1014         if (strcmp(s, "CH") == 0) return "Cheque";
1015
1016         return s;
1017 }
1018
1019 void fact_consultas_codigos(char *s)
1020 {
1021         EMUFS_REG_ID dummy;
1022         int desde_codigo, hasta_codigo;
1023         t_Factura *factura;
1024         t_Lista *lista;
1025         t_Form *form;
1026         WINDOW *win, *win1;
1027         INDICE *idx;
1028         CLAVE k, menor, mayor;
1029
1030         idx = lst_facturas->fp->indices;
1031
1032         win = newwin(LINES-4, COLS-2, 2, 1);
1033         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1034         werase(win);
1035         box(win, 0, 0);
1036         wrefresh(win);
1037         
1038         /* El usuario ingresa rango a listar */
1039         form = form_crear(win1);
1040         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
1041         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
1042
1043         form_ejecutar(form, 2, 2);
1044
1045         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
1046         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
1047
1048         form_destruir(form);
1049         werase(win1);
1050         wrefresh(win1);
1051
1052         menor = idx->obtener_menor_clave(idx);
1053         mayor = idx->obtener_mayor_clave(idx);
1054
1055         if (desde_codigo < menor.i_clave)
1056                 desde_codigo = menor.i_clave;
1057         if (hasta_codigo > mayor.i_clave)
1058                 hasta_codigo = mayor.i_clave;
1059
1060         /* Creo la lista donde mostrar la consulta*/
1061         /* Muestro solo info relevante */
1062         lista = lista_crear(4, win1, COLS-4, LINES-6);
1063
1064         /* Creo las columnas */
1065         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1066         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1067         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1068         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1069
1070         /* Leo los datos desde el archivo */
1071         k.i_clave = desde_codigo;
1072         while ((k.i_clave != -1) && (k.i_clave <= hasta_codigo)) {
1073                 factura = fact_buscar(lst_facturas, k.i_clave, &dummy, &dummy);
1074                 if (factura != NULL) {
1075                         lista_agregar_fila(lista,
1076                                 factura->numero,
1077                                 factura->emision,
1078                                 get_estado(factura->estado),
1079                                 get_forma_pago(factura->fp)
1080                         );
1081                 }
1082                 k = idx->obtener_sig_clave(idx, k);
1083         }
1084
1085         curs_set(0);
1086         lista_ejecutar(lista);
1087         curs_set(1);
1088         
1089         wrefresh(win1);
1090         wrefresh(win);
1091         werase(win1);
1092         werase(win);
1093         wrefresh(win);
1094         delwin(win);
1095 }
1096
1097 float get_importe_factura(t_Item *items, int cant, float interes)
1098 {
1099         float a=0.0f;
1100         int i;
1101         for(i=0; i<cant; i++) {
1102                 a += atof(items[i].cv)*atof(items[i].pvu);
1103         }
1104         a += a*interes/100.0f;
1105         return a;
1106 }
1107
1108
1109 void fact_consultas_fechas(char *s)
1110 {
1111         char desde_fecha[10], hasta_fecha[10];
1112         char estado[6];
1113         t_Lista *lista;
1114         t_Form *form;
1115         WINDOW *win, *win1;
1116         INDICE *idx;
1117         CLAVE k_menor, k_mayor;
1118
1119         win = newwin(LINES-4, COLS-2, 2, 1);
1120         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1121         werase(win);
1122         box(win, 0, 0);
1123         wrefresh(win);
1124         
1125         /* El usuario ingresa rango a listar */
1126         form = form_crear(win1);
1127         form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
1128         form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
1129         form_agregar_widget(form, RADIO, "Estado", 7, "Todos,PN,CD,CM,SF,PM,NC");
1130         form_ejecutar(form, 2, 2);
1131
1132         strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
1133         strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
1134         strcpy(estado, form_obtener_valor_char(form, "Estado"));
1135
1136         form_destruir(form);
1137         werase(win1);
1138         wrefresh(win1);
1139
1140         /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
1141         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
1142         if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
1143         if (strlen(desde_fecha) == 0) {
1144                 k_menor = idx->obtener_menor_clave(idx);
1145                 emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
1146                 PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
1147                 PERR(desde_fecha);
1148         }
1149         if (strlen(hasta_fecha) == 0) {
1150                 k_mayor = idx->obtener_mayor_clave(idx);
1151                 emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
1152                 PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
1153                 PERR(hasta_fecha);
1154         }
1155         
1156         /* Creo la lista donde mostrar la consulta*/
1157         /* Muestro solo info relevante */
1158         lista = lista_crear(4, win1, COLS-4, LINES-6);
1159
1160         /* Creo las columnas */
1161         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1162         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1163         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1164         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1165         lista_agregar_columna(lista, "Importe", DATO_FLOAT, 50, 8);   /* importe         */
1166
1167         /* Leo los datos desde el archivo */
1168         while (k_menor.i_clave != -1) {
1169                 t_Factura fact;
1170                 int error, cant, i;
1171                 char *leo;
1172                 EMUFS_REG_SIZE size;
1173                 INDICE_DATO *datos;
1174                 CLAVE k1;
1175                 datos = idx->buscar_entradas(idx, k_menor, &cant);
1176                 for(i=0; i<cant; i++) {
1177                         error = 1;
1178                         k1.i_clave = datos[i].id;
1179                         leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
1180                         if (leo != NULL) {
1181                                 procesar_leer_factura(&fact, leo, size, lst_facturas);
1182                                 free(leo);
1183                                 /*k.i_clave = fact->reg_nota;
1184                                 error = 0;
1185                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
1186                                 */
1187                         }
1188                         if (strcmp(estado, "Todos") != 0) {
1189                                 if (strcmp(estado, fact.estado) == 0) {
1190                                         fprintf(stderr, "Agrego factura num=%d con %d items\n", fact.numero, fact.cant_items);
1191                                         lista_agregar_fila_ordenada(lista,
1192                                                 fact.numero,
1193                                                 fact.emision,
1194                                                 get_estado(fact.estado),
1195                                                 get_forma_pago(fact.fp),
1196                                                 get_importe_factura(fact.items, fact.cant_items, fact.procdoi)
1197                                         );
1198                                 }
1199                         }
1200                 }
1201                 if (datos) free(datos);
1202                 if (fact.items) free(fact.items);
1203                 k_menor = idx->obtener_sig_clave(idx, k_menor);
1204         }
1205
1206         curs_set(0);
1207         lista_ejecutar(lista);
1208         curs_set(1);
1209         wrefresh(win1);
1210         wrefresh(win);
1211         werase(win1);
1212         werase(win);
1213         wrefresh(win);
1214         delwin(win);
1215 }
1216
1217 void fact_consultas_varias(char *nombre_indice, char *titulo)
1218 {
1219         int i, cant, error;
1220         char *desc, *tmp;
1221         t_Factura factura;
1222         t_Lista *lista;
1223         t_Form *form;
1224         INDICE_DATO *datos;
1225         WINDOW *win, *win1;
1226         CLAVE k;
1227         EMUFS *fs;
1228         EMUFS_REG_SIZE size;
1229
1230         fs = lst_facturas->fp;
1231
1232         win = newwin(LINES-4, COLS-2, 2, 1);
1233         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1234         werase(win);
1235         box(win, 0, 0);
1236         wrefresh(win);
1237         
1238         /* El usuario ingresa rango a listar */
1239         form = form_crear(win1);
1240         form_agregar_widget(form, INPUT, titulo, 50, "");
1241
1242         form_ejecutar(form, 2, 2);
1243
1244         tmp = form_obtener_valor_char(form, titulo);
1245         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1246         strcpy(desc, tmp);
1247
1248         form_destruir(form);
1249         werase(win1);
1250         wrefresh(win1);
1251
1252         /* Creo la lista donde mostrar la consulta*/
1253         /* Muestro solo info relevante */
1254         lista = lista_crear(4, win1, COLS-4, LINES-6);
1255
1256         /* Creo las columnas */
1257         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1258         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1259         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1260         lista_agregar_columna(lista, "Forma Pago", DATO_STR, 40, 19);   /* fp         */
1261
1262         /* Leo los datos desde el archivo */
1263         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1264         for(i=0; i<cant; i++) {
1265                 k.i_clave = datos[i].id;
1266                 error = 1;
1267                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1268                 if (tmp != NULL) {
1269                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1270                         lista_agregar_fila(lista,
1271                                                         factura.numero,
1272                                                         factura.emision,
1273                                                         get_estado(factura.estado),
1274                                                         get_forma_pago(factura.fp)
1275                                         );
1276                         free(tmp);
1277                 } else {
1278                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1279                 }
1280         }
1281
1282         curs_set(0);
1283         lista_ejecutar(lista);
1284         curs_set(1);
1285         
1286         wrefresh(win1);
1287         wrefresh(win);
1288         werase(win1);
1289         werase(win);
1290         wrefresh(win);
1291         delwin(win);
1292 }
1293
1294 void fact_consultas(char *s)
1295 {
1296         MENU(mi_menu) {
1297                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1298                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1299                 MENU_OPCION("por Rango de Fecha", "Consulta por rando de fecha de emision"),
1300                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1301                 MENU_OPCION("Volver", "Volver al menu anterior.")
1302         };
1303         int opt;
1304         
1305         while ((opt = menu_ejecutar(mi_menu, 5, "Consulta de Articulos")) != 4) {
1306                 switch (opt) {
1307                         case 0:
1308                                 fact_consultas_codigos(s);
1309                         break;
1310                         case 1:
1311                                 fact_consultas_varias("emision", "Fecha");
1312                         break;
1313                         case 2:
1314                                 fact_consultas_fechas(s);
1315                         break;
1316                         case 3:
1317                                 fact_consultas_varias("presentacion", "Presentacion");
1318                 }
1319         }
1320 }
1321
1322 void imprimir1(WINDOW *win, int y, int x, char *s, char *b)
1323 {
1324         wmove(win, y, x);
1325         waddstr(win, s);
1326         waddstr(win, b);
1327 }
1328
1329 void mostrar_fact(WINDOW *win, CLAVE k, char *s, INDICE *idx)
1330 {
1331         t_Factura *fact;
1332         EMUFS_REG_ID dummy;
1333         int y = 3;
1334         char numero[10];
1335         /* XXX SOLO PARA CODIGO XXX */
1336         
1337         wattron(win, COLOR_PAIR(COLOR_RED));
1338         mvwaddstr(win, 1, 5, "Recorriendo Facturas por indice ");
1339         waddstr(win, s);
1340         wattroff(win, COLOR_PAIR(COLOR_RED));
1341
1342         wattron(win, A_BOLD);
1343         mvwaddstr(win, 18, 5, "Teclas:");
1344         wattroff(win, A_BOLD);
1345         mvwaddstr(win, 19, 5, " L = Siguiente");
1346         mvwaddstr(win, 20, 5, " K = Anterior");
1347
1348         if (strcmp(s, "numero") == 0) {
1349                 fact = fact_buscar(lst_facturas, k.i_clave, &dummy, &dummy);
1350         } else {
1351                 INDICE_DATO *datos;
1352                 EMUFS_REG_SIZE size;
1353                 int cant, error;
1354                 char *tmp;
1355
1356                 fact = (t_Factura *)malloc(sizeof(t_Factura));
1357                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
1358                 PERR("Busco todos los datos que tengan esta clave");
1359                 datos = idx->buscar_entradas(idx, k, &cant);
1360                 if (datos == NULL) {
1361                         free(fact);
1362                         fact = NULL;
1363                 } else {
1364                         fprintf(stderr, "Tengo %d datos\n", cant);
1365                         k.i_clave = datos[0].id;
1366                         PERR("Leo el primer dato");
1367                         fprintf(stderr, "ID = %ld en bloque %ld\n", datos[0].id, datos[0].bloque);
1368                         error = 1;
1369                         tmp = lst_facturas->fp->leer_registro(lst_facturas->fp, k, &size, &error);
1370                         if (tmp == NULL) {
1371                                 free(fact);
1372                                 fact = NULL;
1373                         } else {
1374                                 if (procesar_leer_factura(fact, tmp, size, lst_facturas) != 0) {
1375                                         free(fact);
1376                                         free(tmp);
1377                                         fact = NULL;
1378                                 }
1379                         }
1380                         free(datos);
1381                 }
1382         }
1383
1384         if (fact != NULL) {
1385                 sprintf(numero, "%08d", fact->numero);
1386
1387                 imprimir1(win, y++, 5, "Numero      : ", numero);
1388                 imprimir1(win, y++, 5, "Fecha Emision : ", fact->emision);
1389                 imprimir1(win, y++, 5, "Fecha Vto     : ", fact->vencimiento);
1390                 imprimir1(win, y++, 5, "Estado        : ", fact->estado);
1391                 imprimir1(win, y++, 5, "Forma de Pago : ", fact->fp);
1392                 imprimir1(win, y++, 5, "Cuenta Cte    : ", fact->ctacte);
1393                 imprimir1(win, y++, 5, "Cheque Nro    : ", fact->cheque);
1394                 sprintf(numero, "%08d", fact->numero_remito);
1395                 imprimir1(win, y++, 5, "Remito        : ", numero);
1396                 sprintf(numero, "%.2f", fact->procdoi);
1397                 imprimir1(win, y++, 5, "% Descuento   : ", numero);
1398                 sprintf(numero, "%d", fact->cant_items);
1399                 imprimir1(win, y++, 5, "Cant de Items : ", numero);
1400
1401                 if (fact->items) free(fact->items);
1402                 free(fact);
1403         } else {
1404                 PERR("NO EXISTE LA FACTURA");
1405         }
1406 }
1407
1408 void fact_recorrer_con_indice(char *s)
1409 {
1410         WINDOW *win, *win1;
1411         INDICE *idx;
1412         CLAVE stack[1000]; /* shhhh */
1413         CLAVE k;
1414         int stack_pos=0, c;
1415                 
1416         PERR("Busco indice");
1417         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, s);
1418
1419         win = newwin(LINES-4, COLS-2, 2, 1);
1420         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1421         werase(win);
1422         box(win, 0, 0);
1423         wrefresh(win);
1424
1425         PERR("Obtengo clave menor");
1426         k = idx->obtener_menor_clave(idx);
1427         
1428         PERR("Muestro el primer elemento");
1429         mostrar_fact(win1, k, s, idx);
1430         wrefresh(win1);
1431         PERR("Sigue el usuario");
1432         curs_set(0);
1433         stack[0] = k;
1434         while ((c=wgetch(win)) != 13) {
1435                 switch (c) {
1436                         case 'L':
1437                         case 'l':
1438                                 stack[stack_pos++] = k; /* Guardo la clave para poder volver */
1439                                 k = idx->obtener_sig_clave(idx, k);
1440                                 /* TODO Verificar que no me pase del fin */
1441                                 break;
1442                         case 'K':
1443                         case 'k':
1444                                 /* recupero la anterior */
1445                                 stack_pos--;
1446                                 if (stack_pos < 0) stack_pos = 0;
1447                                 k = stack[stack_pos];
1448                                 break;
1449                         default:
1450                                 continue;
1451                 }
1452                 werase(win1);
1453                 mostrar_fact(win1, k, s, idx);
1454                 wrefresh(win1);
1455         }
1456         curs_set(1);
1457
1458         werase(win1);
1459         werase(win);
1460         wrefresh(win);
1461         delwin(win);
1462 }
1463
1464 void fact_recorrer()
1465 {
1466         char *ind[5] = {"numero", "emision", "vto", "cheque", "ctacte"};
1467         MENU(mi_menu) {
1468                 MENU_OPCION("Numero", "Recorrer por Indice Numero Factura"),
1469                 MENU_OPCION("Emision", "Recorrer por Indice Fecha Emision"),
1470                 MENU_OPCION("Vencimiento", "Recorrer por Indice Fecha Vencimiento"),
1471                 MENU_OPCION("Cheque", "Recorrer por Indice Cheque"),
1472                 MENU_OPCION("Cuenta Cte", "Recorrer por Indice Cuenta Cte"),
1473                 MENU_OPCION("Volver", "Volver al menu anterior.")
1474         };
1475         int opt;
1476         while ((opt = menu_ejecutar(mi_menu, 6, "Recorrer Facturas")) != 5) {
1477                 fact_recorrer_con_indice(ind[opt]);
1478         }
1479 }
1480
1481 int fact_hay_con_item(int numero)
1482 {
1483         INDICE *idx;
1484         CLAVE k;
1485         INDICE_DATO dato;
1486         /* Busco si existe alguna factura que contenga al articulo "numero" */
1487         idx = lst_facturas->fp->externo;
1488
1489         k.i_clave = numero;
1490         dato = idx->existe_entrada(idx, k);
1491
1492         if (dato.id == -1)
1493                 return 0; /* No existe factura que contenga este articulo!! */
1494
1495         return 1; /* Hay alguna factura que contiene el articulo */
1496 }
1497