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