]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
48ff1c9e0c399c1d27b4a847e1226593a4f65e17
[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                 tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100);
242                 for (node=inicio ; node ; node = node->next) {
243                         if (node->type == XML_ELEMENT_NODE) {
244                                 if (strcmp(node->name, "FACTURA") == 0) {
245                                         t_Factura fact;
246                                         void *save;
247                                         memset(&fact, 0, sizeof(t_Factura));
248                                         prop = xml_get_prop(node, "NroFac");
249                                         PERR(prop);
250                                         fact.numero = atoi(prop); xmlFree(prop);
251                                         prop = xml_get_prop(node, "PorcDoI");
252                                         fact.procdoi = atof(prop); xmlFree(prop);
253                                         prop = xml_get_prop(node, "NroRemito");
254                                         fact.numero_remito = atoi(prop); xmlFree(prop);
255                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisiĂłn"), 8); xmlFree(prop);
256                                         fact.emision[8] = '\0';
257                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
258                                         fact.vencimiento[8] = '\0';
259                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
260                                         fact.estado[2] = '\0';
261                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
262                                         fact.fp[2] = '\0';
263                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
264                                         fact.ctacte[5] = '\0';
265                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
266                                         fact.cheque[18] = '\0';
267
268                                         fact.nota = leer_nota(node, ((param->tipo_arch_nota==T3)?100:-1));
269                                         fact.items = leer_items(node, &fact.cant_items, (param->tipo_arch_fact==T3)?10:-1);
270
271                                         error = 0;
272                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, (param->tipo_arch_nota==T3)?100:(strlen(fact.nota)+1), &error);
273                                         fact.reg_nota = id;
274                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
275                                         if (save != NULL) {
276                                                 error = 0;
277                                                 tmp->fp->grabar_registro(tmp->fp, save, size, &error);
278                                                 if (fact.items) {
279                                                         free(fact.items);
280                                                         fact.items = NULL;
281                                                 }
282                                                 if (fact.nota) {
283                                                         free(fact.nota);
284                                                         fact.nota = NULL;
285                                                 }
286                                                 free(save);
287                                         }
288                                 }
289                         }
290                 }
291                 xmlFreeDoc(document);
292                 xmlCleanupParser();
293         } else {
294 #ifdef NO_SE_USA_MAS
295                 /* TODO RECUPERAR INDICES DESDE EL ARCHIVO */
296                 PERR("Voy a recuperar desde un archivo");
297                 tmp->fp = emufs_abrir("facturas");
298                 if (tmp->fp == NULL) {
299                         PERR("No se pudo cargar archivo de facturas!");
300                         free(tmp);
301                         lst_facturas = NULL;
302                         return NULL;
303                 }
304                 tmp->fp_texto = emufs_abrir("notas");
305                 if (tmp->fp_texto == NULL) {
306                         PERR("No se pudo cargar archivo de notas!");
307                         emufs_destruir(tmp->fp);
308                         free(tmp);
309                         lst_facturas = NULL;
310                         return NULL;
311                 }
312
313                 /* Ahora trato de recuperar la info */
314                 indices = emufs_idx_get(tmp->fp, &indices_cant);
315                 for(i=0; i<indices_cant; i++) {
316                         t_Factura art;
317                         void *save;
318                         /* Leo el registro */
319                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
320                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
321                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
322                                 free(save);
323                         }
324                 }
325                 free(indices);
326 #endif
327         }
328
329         PERR("Facturas todo Ok");
330         return lst_facturas;
331 }
332
333 int fact_liberar(t_LstFacturas *l)
334 {
335         t_Reg_Factura *del;
336         if (l == NULL) l = lst_facturas;
337         if (l == NULL) return 1;
338
339         emufs_destruir(l->fp);
340         emufs_destruir(l->fp_texto);
341         while (l->primero) {
342                 del = l->primero;
343                 l->primero = l->primero->sig;
344                 free(del);
345         }
346         free(l);
347
348         lst_facturas = NULL;
349         return 0;
350 }
351
352 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
353 {
354         t_Factura *fact;
355         char *leo;
356         EMUFS_REG_SIZE size;
357         int error;
358         CLAVE k;
359         if (lst == NULL) return NULL;
360
361         fact = NULL;
362         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char*)&numero);
363         error = 0;
364         leo = lst->fp->leer_registro(lst->fp, k, &size, &error);
365         PERR("Registro Leido");
366         if (leo != NULL) {
367                 fact = (t_Factura *)malloc(sizeof(t_Factura));
368                 if (fact == NULL) {
369                         free(leo);
370                         return NULL;
371                 }
372                 PERR("Procesando");
373                 procesar_leer_factura(fact, leo, size, lst);
374                 /* y esto ??!
375                 (*id) = reg->num_reg;
376                 (*id_texto) = reg->texto_reg;
377                 */
378                 free(leo);
379                 PERR("Leo nota");
380                 k.i_clave = fact->reg_nota;
381                 error = 0;
382                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
383                 PERR("DONE");
384         }
385         
386         return fact;
387 }
388
389 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
390 {
391         t_Form *form;
392         t_Factura *fact;
393
394         form = form_crear(win);
395         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
396         form_ejecutar(form, 1,1);
397         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
398         form_destruir(form);
399
400         return fact;
401 }
402
403 void fact_eliminar(char *s)
404 {
405         WINDOW *win;
406         t_Factura *fact;
407         EMUFS_REG_ID id;
408         CLAVE k;
409         INDICE_DATO dummy;
410                                                                         
411         win = newwin(LINES-4, COLS-2, 2, 1);
412         box(win, 0, 0);
413         
414         fact = fact_form_buscar(win, &id, &id);
415
416         if (fact == NULL) {
417                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
418                 mvwaddstr(win, 2, 1, "No existe artĂ­culo con ese cĂłdigo. Abortando!");
419                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
420                 wrefresh(win);
421                 getch();
422                 werase(win);
423                 wrefresh(win);
424                 delwin(win);
425                 return;
426         }
427
428         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
429         lst_facturas->fp->borrar_registro(lst_facturas->fp, k, dummy);
430         k.i_clave = fact->reg_nota;
431         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k, dummy);
432
433         if (fact->items) free(fact->items);
434         if (fact->nota) free(fact->nota);
435         free(fact);
436 }
437
438 void fact_modificar(char *s)
439 {
440         WINDOW *win, *items, *nota, *subnota;
441         t_Form *form, *form_nota;
442         t_Factura *fact;
443         EMUFS_REG_SIZE size;
444         EMUFS_REG_ID id, id_texto;
445         int error;
446         char tmp_str[10];
447         void *entrada;
448
449         win = newwin(LINES-4, COLS-2, 2, 1);
450         box(win, 0, 0);
451         
452         if (s == NULL) {
453                 fact = fact_form_buscar(win, &id, &id_texto);
454         } else {
455                 fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
456         }
457
458         if (fact == NULL) {
459                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
460                 mvwaddstr(win, 2, 1, "No existe factura con ese cĂłdigo. Abortando!");
461                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
462                 wrefresh(win);
463                 getch();
464                 werase(win);
465                 wrefresh(win);
466                 delwin(win);
467                 return;
468         }
469
470         mvwaddch(win, 10, 0, ACS_LTEE);
471         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
472         mvwaddch(win, 10, COLS-3, ACS_RTEE);
473         wrefresh(win);
474
475         items = derwin(win, LINES-20, COLS-4, 15, 1);
476         nota = derwin(win, 9, COLS-62, 1, 56);
477         subnota = derwin(nota, 7, COLS-64, 1, 1);
478         box(nota, 0, 0);
479         mvwaddstr(nota, 0, 1, "Nota :");
480         wrefresh(nota);
481         wrefresh(items);
482
483         form = form_crear(win);
484         sprintf(tmp_str, "%08d", fact->numero);
485         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
486         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
487         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
488         sprintf(tmp_str, "%08d", fact->numero_remito);
489         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
490         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
491         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
492         sprintf(tmp_str, "%02.2f", fact->procdoi);
493         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
494         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
495         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
496
497         mvwaddstr(subnota, 0, 0, fact->nota);
498         wrefresh(subnota);
499         form_ejecutar(form, 1,1);
500
501         form_nota = form_crear(subnota);
502         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
503         form_ejecutar(form_nota, 0, 0);
504
505         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
506         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
507         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
508         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
509         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
510         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
511         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
512         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
513         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
514
515         form_destruir(form);
516
517         free(fact->nota);
518         fact->nota = form_obtener_valor_char(form_nota, "");
519
520         form_destruir(form_nota);
521
522         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
523         if (entrada) {
524                 CLAVE k;
525                 INDICE_DATO dummy;
526                 k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
527                 lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error, dummy);
528                 k.i_clave = id_texto;
529                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error, dummy);
530                 free(entrada);
531         }
532
533         free(fact->items);
534         free(fact);
535
536         werase(win);
537         wrefresh(win);
538         delwin(subnota);
539         delwin(nota);
540         delwin(items);
541         delwin(win);
542 }
543
544 void fact_agregar(char *s)
545 {
546         WINDOW *win, *items, *nota, *subnota;
547         t_Form *form, *form_nota;
548         t_Item *its = NULL;
549         t_Factura fact;
550         EMUFS_REG_SIZE size;
551         EMUFS_REG_ID id_texto;
552         int y_actual, cant, error;
553         float total;
554         char *entrada;
555
556         win = newwin(LINES-4, COLS-2, 2, 1);
557         box(win, 0, 0);
558         mvwaddch(win, 10, 0, ACS_LTEE);
559         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
560         mvwaddch(win, 10, COLS-3, ACS_RTEE);
561         wrefresh(win);
562
563         items = derwin(win, LINES-20, COLS-4, 15, 1);
564         nota = derwin(win, 9, COLS-62, 1, 56);
565         subnota = derwin(nota, 7, COLS-64, 1, 1);
566         box(nota, 0, 0);
567         mvwaddstr(nota, 0, 1, "Nota :");
568         wrefresh(nota);
569         wrefresh(items);
570
571         form = form_crear(win);
572         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
573         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
574         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
575         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
576         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
577         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
578         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
579         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
580         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
581
582         form_ejecutar(form, 1,1);
583
584         form_nota = form_crear(subnota);
585         form_agregar_widget(form_nota, INPUT, "", 255, "");
586         form_ejecutar(form_nota, 0, 0);
587
588         /* XXX No destruir form_nota hasta el final !!!!! XXX */
589
590         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
591         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
592         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
593         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
594         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
595         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
596         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
597         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
598         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
599
600         form_destruir(form);
601
602         form = form_crear(win);
603         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
604         form_agregar_widget(form, INPUT, "Cant. Vendida", 8, "");
605         /*form_agregar_widget(form, INPUT, "PVU", 8, "");*/
606         y_actual = 0;
607         scrollok(items, 1);
608         mvwaddstr(win, 15, 2, "Numero");
609         mvwaddstr(win, 15, 11, "Cant. Vendida");
610         mvwaddstr(win, 15, 31, "PVU");
611         mvwaddstr(win, 15, 41, "Subtotal");
612         cant = 0;
613         total = 0.0f;
614         do {
615                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
616                 form_set_valor(form, "Cant. Vendida", "");
617                 /*form_set_valor(form, "PVU", "");*/
618                 form_ejecutar(form, 2, 11);
619
620                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
621
622                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
623                         /* Veamos si existe el articulo */
624                         t_Articulo *art;
625                         EMUFS_REG_ID dummy;
626
627                         art = art_obtener(NULL, atoi(entrada), &dummy);
628
629                         if (art != NULL) {
630                                 char subtotal[20];
631                                 char *cv;
632                                 y_actual++;
633                                 if (y_actual > LINES-22) {
634                                         y_actual = LINES-22;
635                                         wscrl(items, 1);
636                                 }
637                                 cv = form_obtener_valor_char(form, "Cant. Vendida");
638                                 mvwaddstr(items, y_actual, 1, entrada);
639                                 mvwaddstr(items, y_actual, 10, cv);
640                                 mvwaddstr(items, y_actual, 30, art->pvu);
641
642                                 sprintf(subtotal, "%.2f", atof(cv)*atof(art->pvu));
643                                 total += atof(subtotal);
644
645                                 mvwaddstr(items, y_actual, 40, subtotal);
646
647                                 wrefresh(items);
648                                 /* Agrego el Item */
649                                 cant++;
650                                 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
651                                 if (its != NULL) {
652                                         its[cant-1].numero = atoi(entrada);
653                                         strcpy(its[cant-1].cv, form_obtener_valor_char(form, "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