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