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