]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
Expongo el obtener siguiente de secuencial indexado, via la funcion en indince obtene...
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4 #include "common.h"
5 #include "menu.h"
6 #include "lista.h"
7 #include "articulos.h"
8
9 static t_LstFacturas *lst_facturas;
10
11 /* Procesa una factura antes de enviarla al archivo para guardarla */
12 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
13 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
14
15 #ifdef TP_PRIMER_ENTREGA
16 /* Manejo de la lista en memoria */
17 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
18 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
19 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
20 #endif
21
22 /* Funciones para carga desde el XML */
23 static t_Item *leer_items(xmlNode *, int *cant, int size);
24 static char *leer_nota(xmlNode *, int max);
25
26 t_LstFacturas *fact_get_lst()
27 {
28         return lst_facturas;
29 }
30
31 /* Hack! ... Si no existe propiedad retorna "" */
32 char *xml_get_prop(xmlNode *node, char *nombre)
33 {
34         char *s;
35         s = xmlGetProp(node, nombre);
36         if (s == NULL) {
37                 s = malloc(1);
38                 s[0] = '\0';
39                 return s;
40         }
41         return s;
42 }
43
44 #ifdef TP_PRIMER_ENTREGA
45 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
46 {
47         if (nodo == NULL) return 0;
48         if (nodo->ant == NULL) {
49                 /* Me piden borrar el primer nodo */
50                 if (nodo->sig) {
51                         nodo->sig->ant = NULL;
52                 }
53                 lst->primero = nodo->sig;
54         } else {
55                 if (nodo->sig) {
56                         nodo->sig->ant = nodo->ant;
57                 }
58                 nodo->ant->sig = nodo->sig;
59         }
60         free(nodo);
61         return 1;
62 }
63
64 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
65 {
66         t_Reg_Factura *tmp;
67         if (reg == EMUFS_NOT_FOUND) return NULL;
68         tmp = malloc(sizeof(t_Reg_Factura));
69         if (tmp == NULL) return NULL;
70         tmp->sig = tmp->ant = NULL;
71         tmp->num_reg = reg;
72         tmp->texto_reg = texto;
73         tmp->numero = num;
74
75         return tmp;
76 }
77
78 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
79 {
80         if (nodo == NULL) return 0;
81
82         if (lst->primero) {
83                 lst->primero->ant = nodo;
84                 nodo->sig = lst->primero;
85                 lst->primero = nodo;
86         } else {
87                 lst->primero = nodo;
88         }
89         return 1;
90 }
91 #endif /*TP_PRIMER_ENTREGA*/
92
93 t_Item *leer_items(xmlNode *node, int *cant, int size)
94 {
95         t_Item *tmp;
96         int count;
97         char *prop;
98         if (size == -1) {
99                 tmp = NULL;
100                 count = 0;
101                 node = node->children;
102                 while (node) {
103                         if (node->type == XML_ELEMENT_NODE) {
104                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
105                                         count++;
106                                         tmp = realloc(tmp, sizeof(t_Item)*count);
107                                         memset(&tmp[count-1], 0, sizeof(t_Item));
108                                         prop = xml_get_prop(node, "NroArtĂ­culo");
109                                         tmp[count-1].numero = atoi(prop);
110                                         xmlFree(prop);
111                                         strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
112                                         tmp[count-1].cv[8] = '\0';
113                                         strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
114                                         tmp[count-1].pvu[8] = '\0';
115                                 }
116                         }
117                         node = node->next;
118                 }
119                 *cant = count;
120         } else {
121                 (*cant) = size;
122                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
123                 memset(tmp, 0, sizeof(t_Item)*size);
124
125                 count = 0;
126                 node = node->children;
127                 while (node) {
128                         if (node->type == XML_ELEMENT_NODE) {
129                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
130                                         memset(&tmp[count], 0, sizeof(t_Item));
131                                         prop = xml_get_prop(node, "NroArtĂ­culo");
132                                         tmp[count].numero = atoi(prop);
133                                         xmlFree(prop);
134                                         strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
135                                         tmp[count].cv[8] = '\0';
136                                         strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
137                                         tmp[count].pvu[8] = '\0';
138                                         count++;
139                                 }
140                         }
141                         if (count == size) break; /* No me entran mas items! */
142                         node = node->next;
143                 }
144         }
145         return tmp;
146 }
147
148 char *leer_nota(xmlNode *node, int max)
149 {
150         xmlNode *tmp;
151         char *salida;
152         tmp = node->children;
153         while (tmp) {
154                 if (tmp->type == XML_ELEMENT_NODE) {
155                         if (strcmp(tmp->name, "NOTA") == 0) {
156                                 break;
157                         }
158                 }
159                 tmp = tmp->next;
160         }
161
162         if (tmp) {
163                 if (max == -1) {
164                         salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
165                         strcpy(salida, XML_GET_CONTENT(tmp->children));
166                 } else {
167                         salida = (char *)malloc(sizeof(char)*max);
168                         strncpy(salida, XML_GET_CONTENT(tmp->children), max-1);
169                         salida[max-1] = '\0';
170                 }
171         } else {
172                 if (max == -1) {
173                         salida = (char *)malloc(sizeof(char));
174                         salida[0] = '\0';
175                 } else {
176                         salida = (char *)malloc(sizeof(char)*max);
177                         memset(salida, 0, max);
178                 }
179         }
180         return salida;
181 }
182
183
184 t_LstFacturas *fact_cargar(t_Parametros *param)
185 {
186         xmlDocPtr document;
187         xmlNode *node, *inicio;
188         int error = 0, cant_items;
189         char *prop;
190         EMUFS_REG_SIZE size;
191         t_LstFacturas *tmp;
192         t_Factura *factura;
193         EMUFS_REG_ID id;
194         
195         lst_facturas = NULL;
196
197         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
198         if (tmp == NULL) return NULL;
199         lst_facturas = tmp;
200         tmp->primero = NULL;
201
202         if (param != NULL) {
203                 PERR("Voy a cargar de un XML");
204                 PERR(param->xml_fact);
205                 document = xmlReadFile(param->xml_fact, "ISO-8859-1",0);
206                 if (document == NULL) {
207                         PERR("Error al leer documento!!");
208                         free(tmp);
209                         lst_facturas = NULL;
210                         return NULL;
211                 }
212
213                 inicio = NULL;
214                 node = xmlDocGetRootElement(document);
215                 /* Busco el TAG principal "ARTICULOS" */
216                 while (node) {
217                         if (node->type == XML_ELEMENT_NODE) {
218                                 if (strcmp(node->name, "FACTURAS") == 0) {
219                                         inicio = node->children;
220                                         break;
221                                 }
222                         }
223                         node = node->next;
224                 }
225
226                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
227                  * y los items al final del registro.
228                  */
229                 if (param->tipo_arch_fact == T3) {
230                         /* Limito a 10 items en el caso de registro constante! */
231                         cant_items = 10;
232                 } else {
233                         cant_items = 0;
234                 }
235                 tmp->fp = emufs_crear("facturas", param->tipo_arch_fact, param->tam_bloque_fact, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
236                 emufs_agregar_indice(tmp->fp, "ctacte", IND_SELECCION, param->ind_fac[4].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[4].tam_bloque, 5);
237                 emufs_agregar_indice(tmp->fp, "cheque", IND_SELECCION, param->ind_fac[3].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[3].tam_bloque, 4);
238                 emufs_agregar_indice(tmp->fp, "vto", IND_SELECCION, param->ind_fac[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[2].tam_bloque, 1);
239                 emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, param->ind_fac[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(factura, emision), param->ind_fac[1].tam_bloque, 0);
240                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, param->ind_fac[0].tipo_arbol, IDX_INT, 0, param->ind_fac[0].tam_bloque, 0);
241
242                 /* Creo el indice externo por Nro Articulo */
243                 tmp->fp->externo = emufs_indice_crear(tmp->fp, "articulo", IND_SELECCION, IND_B, IDX_INT, 0, 512, 0);
244
245                 tmp->fp_texto = emufs_crear("notas", param->tipo_arch_nota, param->tam_bloque_nota, 100);
246                 for (node=inicio ; node ; node = node->next) {
247                         if (node->type == XML_ELEMENT_NODE) {
248                                 if (strcmp(node->name, "FACTURA") == 0) {
249                                         t_Factura fact;
250                                         void *save;
251                                         memset(&fact, 0, sizeof(t_Factura));
252                                         prop = xml_get_prop(node, "NroFac");
253                                         PERR(prop);
254                                         fact.numero = atoi(prop); xmlFree(prop);
255                                         prop = xml_get_prop(node, "PorcDoI");
256                                         fact.procdoi = atof(prop); xmlFree(prop);
257                                         prop = xml_get_prop(node, "NroRemito");
258                                         fact.numero_remito = atoi(prop); xmlFree(prop);
259                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisiĂłn"), 8); xmlFree(prop);
260                                         fact.emision[8] = '\0';
261                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
262                                         fact.vencimiento[8] = '\0';
263                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
264                                         fact.estado[2] = '\0';
265                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
266                                         fact.fp[2] = '\0';
267                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
268                                         fact.ctacte[5] = '\0';
269                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
270                                         fact.cheque[18] = '\0';
271
272                                         fact.nota = leer_nota(node, ((param->tipo_arch_nota==T3)?100:-1));
273                                         fact.items = leer_items(node, &fact.cant_items, (param->tipo_arch_fact==T3)?10:-1);
274
275                                         error = 0;
276                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, (param->tipo_arch_nota==T3)?100:(strlen(fact.nota)+1), &error);
277                                         fact.reg_nota = id;
278                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
279                                         if (save != NULL) {
280                                                 int i;
281                                                 error = 0;
282                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
283                                         
284                                                 /* Agrego los Items al indice externo */
285                                                 for(i=0; i<fact.cant_items; i++) {
286                                                         if (fact.items[i].numero != 0) {
287                                                                 CLAVE _k; /* HACK Para hacer mas rapido */
288                                                                 INDICE_DATO _dato;
289                                                                 _k.i_clave = fact.items[i].numero;
290                                                                 _dato.id = id;
291                                                                 tmp->fp->externo->agregar_entrada(tmp->fp->externo, _k, _dato);
292                                                         }
293                                                 }
294                                                 
295                                                 if (fact.items) {
296                                                         free(fact.items);
297                                                         fact.items = NULL;
298                                                 }
299                                                 if (fact.nota) {
300                                                         free(fact.nota);
301                                                         fact.nota = NULL;
302                                                 }
303                                                 free(save);
304                                         }
305                                 }
306                         }
307                 }
308                 xmlFreeDoc(document);
309                 xmlCleanupParser();
310         } else {
311                 PERR("Voy a recuperar desde un archivo");
312                 tmp->fp = emufs_abrir("facturas");
313                 if (tmp->fp == NULL) {
314                         PERR("No se pudo cargar archivo de facturas!");
315                         free(tmp);
316                         lst_facturas = NULL;
317                         return NULL;
318                 }
319                 tmp->fp_texto = emufs_abrir("notas");
320                 if (tmp->fp_texto == NULL) {
321                         PERR("No se pudo cargar archivo de notas!");
322                         emufs_destruir(tmp->fp);
323                         free(tmp);
324                         lst_facturas = NULL;
325                         return NULL;
326                 }
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                                         art_actualizar_stock(atoi(entrada), atoi(cv));
653                                         its[cant-1].numero = atoi(entrada);
654                                         strcpy(its[cant-1].cv, cv);
655                                         strcpy(its[cant-1].pvu, art->pvu);
656                                 }
657                                 free(art);
658                         }
659                 }
660         } while (entrada[0] != '*');
661
662         if (lst_facturas->fp->tipo == T3) {
663                 if (cant != 10) {
664                         /* TODO Limitar en la GUI en lugar de truncar! */
665                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
666                         if (its == NULL) {
667                                 cant = 0;
668                         } else {
669                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
670                                 cant = 10;
671                         }
672                 }
673         }
674         fact.items = its;
675         fact.cant_items = cant;
676         fact.nota = form_obtener_valor_char(form_nota, "");
677
678         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
679         fact.reg_nota = id_texto;
680
681         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
682         if (entrada) {
683                 error = 0;
684                 PERR("GUARDANDO NUEVA FACTURA");
685                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
686                 PERR("DONE");
687                 free(entrada);
688         }
689                                                                         
690         if (its) free(its);
691         form_destruir(form);
692         form_destruir(form_nota);
693
694         werase(win);
695         wrefresh(win);
696         delwin(items);
697         delwin(subnota);
698         delwin(nota);
699         delwin(win);
700 }
701
702 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
703 {
704         char *tmp=NULL;
705         int i[12];
706
707         switch (lst->fp->tipo) {
708                 case T1:
709                 case T2:
710                 case T4:
711                         /* Calculo el tamaño que voy a necesitar */
712                         i[0] = sizeof(int);
713                         i[1] = sizeof(float);
714                         i[2] = sizeof(int);
715                         i[3] = sizeof(int);
716                         i[4] = sizeof(EMUFS_BLOCK_ID);
717                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
718                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
719                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
720                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
721                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
722                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
723                         i[11] = sizeof(t_Item)*f->cant_items;
724                         (*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];
725                         tmp = (char *)malloc(*size);
726                         if (tmp == NULL) return NULL;
727                         memset(tmp, 0, *size);
728                         /* Ahora copio la info */
729                         memcpy(tmp, &f->numero, i[0]);
730                         memcpy(tmp+i[0], &f->procdoi, i[1]);
731                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
732                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
733                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
734                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
735                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
736                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
737                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
738                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
739                         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]);
740                         if (i[11] != 0)
741                                 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]);
742                 break;
743                 case T3:
744                 case T5:
745                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
746                         tmp = (char *)malloc(*size);
747                         if (tmp == NULL) return NULL;
748                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
749                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
750         }
751         return tmp;
752 }
753
754 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
755 {
756         char *ini, *fin;
757         /*int dummy;*/
758
759         if (lst == NULL) {
760                 PERR("Puntero a lista NULO");
761                 return 0;
762         }
763         if (lst->fp == NULL) {
764                 PERR("EMUFS No creado!");
765                 return 0;
766         }
767
768         fprintf(stderr, "TIPO = %d\n", lst->fp->tipo);
769         switch (lst->fp->tipo) {
770                 case T1:
771                 case T2:
772                 case T4:
773                         ini = (char *)src;
774                         /* Copio los campos numericos, muy facil:-) */
775                         memcpy(&dst->numero, ini, sizeof(int));
776                         ini+=sizeof(int);
777                         
778                         memcpy(&dst->procdoi, ini, sizeof(float));
779                         ini+=sizeof(float);
780
781                         memcpy(&dst->numero_remito, ini, sizeof(int));
782                         ini+=sizeof(int);
783                         
784                         memcpy(&dst->cant_items, ini, sizeof(int));
785                         ini+=sizeof(int);
786                         
787                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
788                         ini+=sizeof(EMUFS_BLOCK_ID);
789
790                         /* Ahora empieza el juego */
791                         /* Los \0 son los delimitadores de campo! */
792                         fin = ini;
793                         while (*fin!='\0') fin++;
794                         memcpy(dst->emision, ini, fin-ini+1);
795                         
796                         ini = fin+1;
797                         fin = ini;
798                         while (*fin!='\0') fin++;
799                         memcpy(dst->vencimiento, ini, fin-ini+1);
800                         
801                         ini = fin+1;
802                         fin = ini;
803                         while (*fin!='\0') fin++;
804                         memcpy(dst->estado, ini, fin-ini+1);
805                         
806                         ini = fin+1;
807                         fin = ini;
808                         while (*fin!='\0') fin++;
809                         memcpy(dst->fp, ini, fin-ini+1);
810                         
811                         ini = fin+1;
812                         fin = ini;
813                         while (*fin!='\0') fin++;
814                         memcpy(dst->ctacte, ini, fin-ini+1);
815                         
816                         ini = fin+1;
817                         fin = ini;
818                         while (*fin!='\0') fin++;
819                         memcpy(dst->cheque, ini, fin-ini+1);
820
821                         if (dst->cant_items > 0) {
822                                 /* Ahora tengo que cargar los items */
823                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
824
825                                 ini = fin+1;
826                                 fin = (char *)src+size;
827                                 memcpy(dst->items, ini, fin-ini);
828
829                         } else {
830                                 dst->items = NULL;
831                         }
832                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
833                         return 0;
834                 break;
835                 case T3:
836                 case T5:
837                         /* Se que tengo 10 items */
838                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
839                         size = lst->fp->tam_reg;
840                         memcpy(dst, src, size-sizeof(t_Item)*10);
841                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
842                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
843                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
844         }
845         return 0;
846 }
847
848 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
849 {
850 #ifdef NO_ANDA_AUN
851         EMUFS *nuevo, *old;
852         EMUFS_REG_ID *indices, id;
853         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
854         t_Factura fact;
855         t_LstFacturas *lst_nueva;
856         int error;
857         char *save;
858
859         PERR("==== EMPIEZO ====\n");
860         old = lst_facturas->fp;
861
862         /* Creo el nuevo file */
863         PERR("Creo el archivo\n");
864         if (tipo == T3) {
865                 /* Me aseguro de que entren n items completos */
866                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
867         }
868         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
869         if (nuevo == NULL) {
870                 PERR("ARCHIVO NUEVO NO CREADO");
871                 return;
872         }
873
874         /* Creo la nueva lista */
875         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
876         lst_nueva->primero = NULL;
877         lst_nueva->fp = nuevo;
878         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
879
880         /* Leo los indices del archivo viejo */
881         PERR("Obtengo Indices\n");
882         indices = emufs_idx_get(old, &indices_total);
883         if (indices == NULL) {
884                 fact_liberar(lst_nueva);
885                 return;
886         }
887
888         PERR("Proceso datos");
889         for(i=0; i<indices_total; i++) {
890                 error = 0;
891                 PERR("Leo");
892                 save = old->leer_registro(old, indices[i], &size, &error);
893                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
894                         PERR("Procese Leer Ok");
895                         free(save);
896                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
897
898                         /* Actualizo el ID de la nota asociada */
899                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
900                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
901                         PERR("Procese Grabar Ok");
902                         if (save) {
903                                 error = 0;
904                                 PERR("Grabo el Registro");
905                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
906                                 PERR("Lo agrego");
907                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
908                                 PERR("Libero Memoria");
909                                 free(save);
910                                 if (fact.items) free(fact.items);
911                                 if (fact.nota) free(fact.nota);
912                                 PERR("Termine con este Item");
913                         }
914                 }
915         }
916
917         free(indices);
918
919         PERR("Libero lo viejo\n");
920         fact_liberar(lst_facturas);
921
922         PERR("Ahora tengo lo nuevo\n");
923         lst_facturas = lst_nueva;
924
925         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
926         free(lst_facturas->fp->nombre);
927         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
928         strcpy(lst_facturas->fp->nombre, "facturas");
929         
930         /* Tambien actualizo el nombre para notas */
931         free(lst_facturas->fp_texto->nombre);
932         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
933         strcpy(lst_facturas->fp_texto->nombre, "notas");
934         
935         /* Muevo los archivos! */
936         /* TODO : Poner en otro lugar mas generico! */
937         PERR("Renombre!!\n");
938         rename("emufs_tmp.dat", "facturas.dat");
939         rename("emufs_tmp.idx", "facturas.idx");
940         rename("emufs_tmp.fsc", "facturas.fsc");
941         rename("emufs_tmp.did", "facturas.did");
942         rename("nota_tmp.dat", "notas.dat");
943         rename("nota_tmp.idx", "notas.idx");
944         rename("nota_tmp.fsc", "notas.fsc");
945         rename("nota_tmp.did", "notas.did");
946         PERR("==== TERMINE ====\n");
947 #endif
948 }
949
950 int fact_exportar_xml(const char *filename)
951 {
952         int j;
953         t_Factura *fact;
954         EMUFS_REG_ID id, id1;
955         FILE *fp;
956         CLAVE k;
957         INDICE *idx;
958
959         idx = lst_facturas->fp->indices;
960
961         k = idx->obtener_menor_clave(idx);
962
963         if (!(fp = fopen(filename, "wt"))) return 0;
964         
965         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
966         fprintf(fp, "<FACTURAS>\n");
967         fprintf(stderr, "EXPORTAR : Menor Clave = %d\n", k.i_clave);
968         while (k.i_clave != -1) {
969                 fact = fact_buscar(lst_facturas, k.i_clave, &id, &id1);
970                 fprintf(stderr, "Lei factura numero %d y apunta a %p\n", k.i_clave, fact);
971                 if (fact != NULL) {
972                         fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", fact->numero);
973                         fprintf(fp, "FechaEmisiĂłn=\"%s\" ", fact->emision);
974                         fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
975                         fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
976                         fprintf(fp, "FP=\"%s\" ", fact->fp);
977                         fprintf(fp, "Estado=\"%s\" ", fact->estado);
978                         fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
979                         fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
980                         fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
981                         fprintf(fp, ">\n");
982                         fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
983                         for(j=0; j<fact->cant_items; j++) {
984                                 if (fact->items[j].numero != 0)
985                                         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);
986                         }
987                         fprintf(fp, "\t</FACTURA>\n");
988                         free(fact);
989                 }
990                 k = idx->obtener_sig_clave(idx, k);
991                 fprintf(stderr, "XXX Siguiente = %d\n", k.i_clave);
992         }
993         fprintf(fp, "\t</FACTURAS>\n");
994
995         fclose(fp);
996         return 1;
997 }
998
999 char *get_estado(char *s)
1000 {
1001         if (strcmp(s, "PN")==0) return "Pago Normal";
1002         if (strcmp(s, "CD")==0) return "Credito al dia";
1003         if (strcmp(s, "CM")==0) return "Credito en mora";
1004         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
1005         if (strcmp(s, "PM")==0) return "Pagada con Mora";
1006         if (strcmp(s, "NC")==0) return "No Cobrada";
1007
1008         return s;
1009 }
1010
1011 char *get_forma_pago(char *s)
1012 {
1013         if (strcmp(s, "CO") == 0) return "Contado";
1014         if (strcmp(s, "CR") == 0) return "Credito";
1015         if (strcmp(s, "CH") == 0) return "Cheque";
1016
1017         return s;
1018 }
1019
1020 void fact_consultas_codigos(char *s)
1021 {
1022         EMUFS_REG_ID dummy;
1023         int desde_codigo, hasta_codigo;
1024         t_Factura *factura;
1025         t_Lista *lista;
1026         t_Form *form;
1027         WINDOW *win, *win1;
1028         INDICE *idx;
1029         CLAVE k, menor, mayor;
1030
1031         idx = lst_facturas->fp->indices;
1032
1033         win = newwin(LINES-4, COLS-2, 2, 1);
1034         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1035         werase(win);
1036         box(win, 0, 0);
1037         wrefresh(win);
1038         
1039         /* El usuario ingresa rango a listar */
1040         form = form_crear(win1);
1041         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
1042         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
1043
1044         form_ejecutar(form, 2, 2);
1045
1046         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
1047         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
1048
1049         form_destruir(form);
1050         werase(win1);
1051         wrefresh(win1);
1052
1053         menor = idx->obtener_menor_clave(idx);
1054         mayor = idx->obtener_mayor_clave(idx);
1055
1056         if (desde_codigo < menor.i_clave)
1057                 desde_codigo = menor.i_clave;
1058         if (hasta_codigo > mayor.i_clave)
1059                 hasta_codigo = mayor.i_clave;
1060
1061         /* Creo la lista donde mostrar la consulta*/
1062         /* Muestro solo info relevante */
1063         lista = lista_crear(4, win1, COLS-4, LINES-6);
1064
1065         /* Creo las columnas */
1066         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1067         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1068         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1069         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1070
1071         /* Leo los datos desde el archivo */
1072         k.i_clave = desde_codigo;
1073         while ((k.i_clave != -1) && (k.i_clave <= hasta_codigo)) {
1074                 factura = fact_buscar(lst_facturas, k.i_clave, &dummy, &dummy);
1075                 if (factura != NULL) {
1076                         lista_agregar_fila(lista,
1077                                 factura->numero,
1078                                 factura->emision,
1079                                 get_estado(factura->estado),
1080                                 get_forma_pago(factura->fp)
1081                         );
1082                 }
1083                 k = idx->obtener_sig_clave(idx, k);
1084         }
1085
1086         curs_set(0);
1087         lista_ejecutar(lista);
1088         curs_set(1);
1089         
1090         wrefresh(win1);
1091         wrefresh(win);
1092         werase(win1);
1093         werase(win);
1094         wrefresh(win);
1095         delwin(win);
1096 }
1097
1098 float get_importe_factura(t_Item *items, int cant, float interes)
1099 {
1100         float a=0.0f;
1101         int i;
1102         for(i=0; i<cant; i++) {
1103                 a += atof(items[i].cv)*atof(items[i].pvu);
1104         }
1105         a += a*interes/100.0f;
1106         return a;
1107 }
1108
1109
1110 void fact_consultas_fechas(char *s)
1111 {
1112         char desde_fecha[10], hasta_fecha[10];
1113         char estado[6];
1114         t_Lista *lista;
1115         t_Form *form;
1116         WINDOW *win, *win1;
1117         INDICE *idx;
1118         CLAVE k_menor, k_mayor;
1119
1120         win = newwin(LINES-4, COLS-2, 2, 1);
1121         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1122         werase(win);
1123         box(win, 0, 0);
1124         wrefresh(win);
1125         
1126         /* El usuario ingresa rango a listar */
1127         form = form_crear(win1);
1128         form_agregar_widget(form, INPUT, "Desde Fecha", 8, "");
1129         form_agregar_widget(form, INPUT, "Hasta Fecha", 8, "");
1130         form_agregar_widget(form, RADIO, "Estado", 7, "Todos,PN,CD,CM,SF,PM,NC");
1131         form_ejecutar(form, 2, 2);
1132
1133         strcpy(desde_fecha, form_obtener_valor_char(form, "Desde Fecha"));
1134         strcpy(hasta_fecha, form_obtener_valor_char(form, "Hasta Fecha"));
1135         strcpy(estado, form_obtener_valor_char(form, "Estado"));
1136
1137         form_destruir(form);
1138         werase(win1);
1139         wrefresh(win1);
1140
1141         /* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
1142         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
1143         if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
1144         if (strlen(desde_fecha) == 0) {
1145                 k_menor = idx->obtener_menor_clave(idx);
1146                 emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
1147                 PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
1148                 PERR(desde_fecha);
1149         }
1150         if (strlen(hasta_fecha) == 0) {
1151                 k_mayor = idx->obtener_mayor_clave(idx);
1152                 emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
1153                 PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
1154                 PERR(hasta_fecha);
1155         }
1156         
1157         /* Creo la lista donde mostrar la consulta*/
1158         /* Muestro solo info relevante */
1159         lista = lista_crear(4, win1, COLS-4, LINES-6);
1160
1161         /* Creo las columnas */
1162         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1163         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1164         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1165         lista_agregar_columna(lista, "F. Pago", DATO_STR, 40, 9);   /* fp         */
1166         lista_agregar_columna(lista, "Importe", DATO_FLOAT, 50, 8);   /* importe         */
1167
1168         /* Leo los datos desde el archivo */
1169         while (k_menor.i_clave != -1) {
1170                 t_Factura fact;
1171                 int error, cant, i;
1172                 char *leo;
1173                 EMUFS_REG_SIZE size;
1174                 INDICE_DATO *datos;
1175                 CLAVE k1;
1176                 datos = idx->buscar_entradas(idx, k_menor, &cant);
1177                 for(i=0; i<cant; i++) {
1178                         error = 1;
1179                         k1.i_clave = datos[i].id;
1180                         leo = lst_facturas->fp->leer_registro(lst_facturas->fp, k1, &size, &error);
1181                         if (leo != NULL) {
1182                                 procesar_leer_factura(&fact, leo, size, lst_facturas);
1183                                 free(leo);
1184                                 /*k.i_clave = fact->reg_nota;
1185                                 error = 0;
1186                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
1187                                 */
1188                         }
1189                         if (strcmp(estado, "Todos") != 0) {
1190                                 if (strcmp(estado, fact.estado) == 0) {
1191                                         fprintf(stderr, "Agrego factura num=%d con %d items\n", fact.numero, fact.cant_items);
1192                                         lista_agregar_fila_ordenada(lista,
1193                                                 fact.numero,
1194                                                 fact.emision,
1195                                                 get_estado(fact.estado),
1196                                                 get_forma_pago(fact.fp),
1197                                                 get_importe_factura(fact.items, fact.cant_items, fact.procdoi)
1198                                         );
1199                                 }
1200                         }
1201                 }
1202                 if (datos) free(datos);
1203                 if (fact.items) free(fact.items);
1204                 k_menor = idx->obtener_sig_clave(idx, k_menor);
1205         }
1206
1207         curs_set(0);
1208         lista_ejecutar(lista);
1209         curs_set(1);
1210         wrefresh(win1);
1211         wrefresh(win);
1212         werase(win1);
1213         werase(win);
1214         wrefresh(win);
1215         delwin(win);
1216 }
1217
1218 void fact_consultas_varias(char *nombre_indice, char *titulo)
1219 {
1220         int i, cant, error;
1221         char *desc, *tmp;
1222         t_Factura factura;
1223         t_Lista *lista;
1224         t_Form *form;
1225         INDICE_DATO *datos;
1226         WINDOW *win, *win1;
1227         CLAVE k;
1228         EMUFS *fs;
1229         EMUFS_REG_SIZE size;
1230
1231         fs = lst_facturas->fp;
1232
1233         win = newwin(LINES-4, COLS-2, 2, 1);
1234         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1235         werase(win);
1236         box(win, 0, 0);
1237         wrefresh(win);
1238         
1239         /* El usuario ingresa rango a listar */
1240         form = form_crear(win1);
1241         form_agregar_widget(form, INPUT, titulo, 50, "");
1242
1243         form_ejecutar(form, 2, 2);
1244
1245         tmp = form_obtener_valor_char(form, titulo);
1246         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1247         strcpy(desc, tmp);
1248
1249         form_destruir(form);
1250         werase(win1);
1251         wrefresh(win1);
1252
1253         /* Creo la lista donde mostrar la consulta*/
1254         /* Muestro solo info relevante */
1255         lista = lista_crear(4, win1, COLS-4, LINES-6);
1256
1257         /* Creo las columnas */
1258         lista_agregar_columna(lista, "Numero", DATO_INT, 0, 8);    /* numero     */
1259         lista_agregar_columna(lista, "Fecha", DATO_STR, 10, 9);   /* emision    */
1260         lista_agregar_columna(lista, "Estado", DATO_STR, 20, 19);  /* estado     */
1261         lista_agregar_columna(lista, "Forma Pago", DATO_STR, 40, 19);   /* fp         */
1262
1263         /* Leo los datos desde el archivo */
1264         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1265         for(i=0; i<cant; i++) {
1266                 k.i_clave = datos[i].id;
1267                 error = 1;
1268                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1269                 if (tmp != NULL) {
1270                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1271                         lista_agregar_fila(lista,
1272                                                         factura.numero,
1273                                                         factura.emision,
1274                                                         get_estado(factura.estado),
1275                                                         get_forma_pago(factura.fp)
1276                                         );
1277                         free(tmp);
1278                 } else {
1279                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1280                 }
1281         }
1282
1283         curs_set(0);
1284         lista_ejecutar(lista);
1285         curs_set(1);
1286         
1287         wrefresh(win1);
1288         wrefresh(win);
1289         werase(win1);
1290         werase(win);
1291         wrefresh(win);
1292         delwin(win);
1293 }
1294
1295 void fact_consultas(char *s)
1296 {
1297         MENU(mi_menu) {
1298                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1299                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1300                 MENU_OPCION("por Rango de Fecha", "Consulta por rando de fecha de emision"),
1301                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1302                 MENU_OPCION("Volver", "Volver al menu anterior.")
1303         };
1304         int opt;
1305         
1306         while ((opt = menu_ejecutar(mi_menu, 5, "Consulta de Articulos")) != 4) {
1307                 switch (opt) {
1308                         case 0:
1309                                 fact_consultas_codigos(s);
1310                         break;
1311                         case 1:
1312                                 fact_consultas_varias("emision", "Fecha");
1313                         break;
1314                         case 2:
1315                                 fact_consultas_fechas(s);
1316                         break;
1317                         case 3:
1318                                 fact_consultas_varias("presentacion", "Presentacion");
1319                 }
1320         }
1321 }
1322
1323 void imprimir1(WINDOW *win, int y, int x, char *s, char *b)
1324 {
1325         wmove(win, y, x);
1326         waddstr(win, s);
1327         waddstr(win, b);
1328 }
1329
1330 void mostrar_fact(WINDOW *win, CLAVE k, char *s, INDICE *idx)
1331 {
1332         t_Factura *fact;
1333         EMUFS_REG_ID dummy;
1334         int y = 3;
1335         char numero[10];
1336         /* XXX SOLO PARA CODIGO XXX */
1337         
1338         wattron(win, COLOR_PAIR(COLOR_RED));
1339         mvwaddstr(win, 1, 5, "Recorriendo Facturas por indice ");
1340         waddstr(win, s);
1341         wattroff(win, COLOR_PAIR(COLOR_RED));
1342
1343         wattron(win, A_BOLD);
1344         mvwaddstr(win, 18, 5, "Teclas:");
1345         wattroff(win, A_BOLD);
1346         mvwaddstr(win, 19, 5, " L = Siguiente");
1347         mvwaddstr(win, 20, 5, " K = Anterior");
1348
1349         if (strcmp(s, "numero") == 0) {
1350                 fact = fact_buscar(lst_facturas, k.i_clave, &dummy, &dummy);
1351         } else {
1352                 INDICE_DATO *datos;
1353                 EMUFS_REG_SIZE size;
1354                 int cant, error;
1355                 char *tmp;
1356
1357                 fact = (t_Factura *)malloc(sizeof(t_Factura));
1358                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
1359                 PERR("Busco todos los datos que tengan esta clave");
1360                 datos = idx->buscar_entradas(idx, k, &cant);
1361                 if (datos == NULL) {
1362                         free(fact);
1363                         fact = NULL;
1364                 } else {
1365                         fprintf(stderr, "Tengo %d datos\n", cant);
1366                         k.i_clave = datos[0].id;
1367                         PERR("Leo el primer dato");
1368                         fprintf(stderr, "ID = %ld en bloque %ld\n", datos[0].id, datos[0].bloque);
1369                         error = 1;
1370                         tmp = lst_facturas->fp->leer_registro(lst_facturas->fp, k, &size, &error);
1371                         if (tmp == NULL) {
1372                                 free(fact);
1373                                 fact = NULL;
1374                         } else {
1375                                 if (procesar_leer_factura(fact, tmp, size, lst_facturas) != 0) {
1376                                         free(fact);
1377                                         free(tmp);
1378                                         fact = NULL;
1379                                 }
1380                         }
1381                         free(datos);
1382                 }
1383         }
1384
1385         if (fact != NULL) {
1386                 sprintf(numero, "%08d", fact->numero);
1387
1388                 imprimir1(win, y++, 5, "Numero      : ", numero);
1389                 imprimir1(win, y++, 5, "Fecha Emision : ", fact->emision);
1390                 imprimir1(win, y++, 5, "Fecha Vto     : ", fact->vencimiento);
1391                 imprimir1(win, y++, 5, "Estado        : ", fact->estado);
1392                 imprimir1(win, y++, 5, "Forma de Pago : ", fact->fp);
1393                 imprimir1(win, y++, 5, "Cuenta Cte    : ", fact->ctacte);
1394                 imprimir1(win, y++, 5, "Cheque Nro    : ", fact->cheque);
1395                 sprintf(numero, "%08d", fact->numero_remito);
1396                 imprimir1(win, y++, 5, "Remito        : ", numero);
1397                 sprintf(numero, "%.2f", fact->procdoi);
1398                 imprimir1(win, y++, 5, "% Descuento   : ", numero);
1399                 sprintf(numero, "%d", fact->cant_items);
1400                 imprimir1(win, y++, 5, "Cant de Items : ", numero);
1401
1402                 if (fact->items) free(fact->items);
1403                 free(fact);
1404         } else {
1405                 PERR("NO EXISTE LA FACTURA");
1406         }
1407 }
1408
1409 void fact_recorrer_con_indice(char *s)
1410 {
1411         WINDOW *win, *win1;
1412         INDICE *idx;
1413         CLAVE stack[1000]; /* shhhh */
1414         CLAVE k;
1415         int stack_pos=0, c;
1416                 
1417         PERR("Busco indice");
1418         idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, s);
1419
1420         win = newwin(LINES-4, COLS-2, 2, 1);
1421         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1422         werase(win);
1423         box(win, 0, 0);
1424         wrefresh(win);
1425
1426         PERR("Obtengo clave menor");
1427         k = idx->obtener_menor_clave(idx);
1428         
1429         PERR("Muestro el primer elemento");
1430         mostrar_fact(win1, k, s, idx);
1431         wrefresh(win1);
1432         PERR("Sigue el usuario");
1433         curs_set(0);
1434         stack[0] = k;
1435         while ((c=wgetch(win)) != 13) {
1436                 switch (c) {
1437                         case 'L':
1438                         case 'l':
1439                                 stack[stack_pos++] = k; /* Guardo la clave para poder volver */
1440                                 k = idx->obtener_sig_clave(idx, k);
1441                                 /* TODO Verificar que no me pase del fin */
1442                                 break;
1443                         case 'K':
1444                         case 'k':
1445                                 /* recupero la anterior */
1446                                 stack_pos--;
1447                                 if (stack_pos < 0) stack_pos = 0;
1448                                 k = stack[stack_pos];
1449                                 break;
1450                         default:
1451                                 continue;
1452                 }
1453                 werase(win1);
1454                 mostrar_fact(win1, k, s, idx);
1455                 wrefresh(win1);
1456         }
1457         curs_set(1);
1458
1459         werase(win1);
1460         werase(win);
1461         wrefresh(win);
1462         delwin(win);
1463 }
1464
1465 void fact_recorrer()
1466 {
1467         char *ind[5] = {"numero", "emision", "vto", "cheque", "ctacte"};
1468         MENU(mi_menu) {
1469                 MENU_OPCION("Numero", "Recorrer por Indice Numero Factura"),
1470                 MENU_OPCION("Emision", "Recorrer por Indice Fecha Emision"),
1471                 MENU_OPCION("Vencimiento", "Recorrer por Indice Fecha Vencimiento"),
1472                 MENU_OPCION("Cheque", "Recorrer por Indice Cheque"),
1473                 MENU_OPCION("Cuenta Cte", "Recorrer por Indice Cuenta Cte"),
1474                 MENU_OPCION("Volver", "Volver al menu anterior.")
1475         };
1476         int opt;
1477         while ((opt = menu_ejecutar(mi_menu, 6, "Recorrer Facturas")) != 5) {
1478                 fact_recorrer_con_indice(ind[opt]);
1479         }
1480 }
1481
1482 int fact_hay_con_item(int numero)
1483 {
1484         INDICE *idx;
1485         CLAVE k;
1486         INDICE_DATO dato;
1487         /* Busco si existe alguna factura que contenga al articulo "numero" */
1488         idx = lst_facturas->fp->externo;
1489
1490         k.i_clave = numero;
1491         dato = idx->existe_entrada(idx, k);
1492
1493         if (dato.id == -1)
1494                 return 0; /* No existe factura que contenga este articulo!! */
1495
1496         return 1; /* Hay alguna factura que contiene el articulo */
1497 }
1498