]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* reordeno las estadisticas
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4 #include "common.h"
5
6 static t_LstFacturas *lst_facturas;
7
8 /* Procesa una factura antes de enviarla al archivo para guardarla */
9 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
10 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
11 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
12 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
13 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
14 static t_Item *leer_items(xmlNode *, int *cant, int size);
15 static char *leer_nota(xmlNode *);
16
17 t_LstFacturas *fact_get_lst()
18 {
19         return lst_facturas;
20 }
21
22 /* Hack! ... Si no existe propiedad retorna "" */
23 char *xml_get_prop(xmlNode *node, char *nombre)
24 {
25         char *s;
26         s = xmlGetProp(node, nombre);
27         if (s == NULL) {
28                 s = malloc(1);
29                 s[0] = '\0';
30                 return s;
31         }
32         return s;
33 }
34
35 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
36 {
37         if (nodo == NULL) return 0;
38         if (nodo->ant == NULL) {
39                 /* Me piden borrar el primer nodo */
40                 if (nodo->sig) {
41                         nodo->sig->ant = NULL;
42                 }
43                 lst->primero = nodo->sig;
44         } else {
45                 if (nodo->sig) {
46                         nodo->sig->ant = nodo->ant;
47                 }
48                 nodo->ant->sig = nodo->sig;
49         }
50         free(nodo);
51         return 1;
52 }
53
54 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
55 {
56         t_Reg_Factura *tmp;
57         if (reg == EMUFS_NOT_FOUND) return NULL;
58         tmp = malloc(sizeof(t_Reg_Factura));
59         if (tmp == NULL) return NULL;
60         tmp->sig = tmp->ant = NULL;
61         tmp->num_reg = reg;
62         tmp->texto_reg = texto;
63         tmp->numero = num;
64
65         return tmp;
66 }
67
68 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
69 {
70         if (nodo == NULL) return 0;
71
72         if (lst->primero) {
73                 lst->primero->ant = nodo;
74                 nodo->sig = lst->primero;
75                 lst->primero = nodo;
76         } else {
77                 lst->primero = nodo;
78         }
79         return 1;
80 }
81
82 t_Item *leer_items(xmlNode *node, int *cant, int size)
83 {
84         t_Item *tmp;
85         int count;
86         char *prop;
87         if (size == -1) {
88                 tmp = NULL;
89                 count = 0;
90                 node = node->children;
91                 while (node) {
92                         if (node->type == XML_ELEMENT_NODE) {
93                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
94                                         count++;
95                                         tmp = realloc(tmp, sizeof(t_Item)*count);
96                                         memset(&tmp[count-1], 0, sizeof(t_Item));
97                                         prop = xml_get_prop(node, "NroArtículo");
98                                         tmp[count-1].numero = atoi(prop);
99                                         xmlFree(prop);
100                                         strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
101                                         tmp[count-1].cv[8] = '\0';
102                                         strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
103                                         tmp[count-1].pvu[8] = '\0';
104                                 }
105                         }
106                         node = node->next;
107                 }
108                 *cant = count;
109         } else {
110                 (*cant) = size;
111                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
112                 memset(tmp, 0, sizeof(t_Item)*size);
113
114                 count = 0;
115                 node = node->children;
116                 while (node) {
117                         if (node->type == XML_ELEMENT_NODE) {
118                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
119                                         memset(&tmp[count], '*', sizeof(t_Item));
120                                         prop = xml_get_prop(node, "NroArtículo");
121                                         tmp[count].numero = atoi(prop);
122                                         xmlFree(prop);
123                                         strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
124                                         tmp[count-1].cv[8] = '\0';
125                                         strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
126                                         tmp[count-1].pvu[8] = '\0';
127                                         count++;
128                                 }
129                         }
130                         if (count == 10) break; /* No me entran mas items! */
131                         node = node->next;
132                 }
133         }
134         return tmp;
135 }
136
137 char *leer_nota(xmlNode *node)
138 {
139         xmlNode *tmp;
140         char *salida;
141         tmp = node->children;
142         while (tmp) {
143                 if (tmp->type == XML_ELEMENT_NODE) {
144                         if (strcmp(tmp->name, "NOTA") == 0) {
145                                 break;
146                         }
147                 }
148                 tmp = tmp->next;
149         }
150
151         if (tmp) {
152                 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
153                 strcpy(salida, XML_GET_CONTENT(tmp->children));
154         } else {
155                 salida = (char *)malloc(sizeof(char));
156                 salida[0] = '\0';
157         }
158         return salida;
159 }
160
161
162 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
163 {
164         xmlDocPtr document;
165         xmlNode *node, *inicio;
166         int error = 0, cant_items, i;
167         char *prop;
168         EMUFS_REG_SIZE size;
169         t_LstFacturas *tmp;
170         EMUFS_REG_ID id, *indices, indices_cant;
171         
172         lst_facturas = NULL;
173
174         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
175         if (tmp == NULL) return NULL;
176         lst_facturas = tmp;
177         tmp->primero = NULL;
178
179         if (filename != NULL) {
180                 PERR("Voy a cargar de un XML");
181                 document = xmlReadFile(filename, "ISO-8859-1",0);
182                 if (document == NULL) {
183                         PERR("Error al leer documento!!");
184                         free(tmp);
185                         lst_facturas = NULL;
186                         return NULL;
187                 }
188
189                 inicio = NULL;
190                 node = xmlDocGetRootElement(document);
191                 /* Busco el TAG principal "ARTICULOS" */
192                 while (node) {
193                         if (node->type == XML_ELEMENT_NODE) {
194                                 if (strcmp(node->name, "FACTURAS") == 0) {
195                                         inicio = node->children;
196                                         break;
197                                 }
198                         }
199                         node = node->next;
200                 }
201
202                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
203                  * y los items al final del registro.
204                  */
205                 if ((tipo-1) == T3) {
206                         /* Limito a 10 items en el caso de registro constante! */
207                         cant_items = 10;
208                 } else {
209                         cant_items = 0;
210                 }
211                 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
212 #ifdef DEBUG
213                 fprintf(stderr, "Facturas : Tipo=%d  Tam Bloque = %d\n", tipo-1, tam_bloque);
214                 fprintf(stderr, "Notas : Tipo=%d  Tam Bloque = %d\n", tipo_nota-1, bloque_nota);
215 #endif
216                 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
217                 for (node=inicio ; node ; node = node->next) {
218                         if (node->type == XML_ELEMENT_NODE) {
219                                 if (strcmp(node->name, "FACTURA") == 0) {
220                                         t_Factura fact;
221                                         void *save;
222                                         memset(&fact, 0, sizeof(t_Factura));
223                                         prop = xml_get_prop(node, "NroFac");
224                                         fact.numero = atoi(prop); xmlFree(prop);
225                                         prop = xml_get_prop(node, "PorcDoI");
226                                         fact.procdoi = atof(prop); xmlFree(prop);
227                                         prop = xml_get_prop(node, "NroRemito");
228                                         fact.numero_remito = atoi(prop); xmlFree(prop);
229                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
230                                         fact.emision[8] = '\0';
231                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
232                                         fact.vencimiento[8] = '\0';
233                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
234                                         fact.estado[2] = '\0';
235                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
236                                         fact.fp[2] = '\0';
237                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
238                                         fact.ctacte[5] = '\0';
239                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
240                                         fact.cheque[18] = '\0';
241
242                                         fact.nota = leer_nota(node);
243                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
244
245                                         error = 0;
246                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
247                                         fact.reg_nota = id;
248                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
249                                         if (save != NULL) {
250                                                 error = 0;
251                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
252                                                 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
253                                                 if (fact.items) free(fact.items);
254                                                 if (fact.nota) free(fact.nota);
255                                                 free(save);
256                                         }
257                                 }
258                         }
259                 }
260                 xmlFreeDoc(document);
261                 xmlCleanupParser();
262         } else {
263                 PERR("Voy a recuperar desde un archivo");
264                 tmp->fp = emufs_abrir("facturas");
265                 if (tmp->fp == NULL) {
266                         PERR("No se pudo cargar archivo de facturas!");
267                         free(tmp);
268                         lst_facturas = NULL;
269                         return NULL;
270                 }
271                 tmp->fp_texto = emufs_abrir("notas");
272                 if (tmp->fp_texto == NULL) {
273                         PERR("No se pudo cargar archivo de notas!");
274                         emufs_destruir(tmp->fp);
275                         free(tmp);
276                         lst_facturas = NULL;
277                         return NULL;
278                 }
279
280                 /* Ahora trato de recuperar la info */
281                 indices = emufs_idx_get(tmp->fp, &indices_cant);
282                 for(i=0; i<indices_cant; i++) {
283                         t_Factura art;
284                         void *save;
285                         /* Leo el registro */
286                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
287                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
288                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
289                                 free(save);
290                         }
291                 }
292                 free(indices);
293         }
294
295         PERR("Facturas todo Ok");
296         return lst_facturas;
297 }
298
299 int fact_liberar(t_LstFacturas *l)
300 {
301         t_Reg_Factura *del;
302         if (l == NULL) l = lst_facturas;
303         if (l == NULL) return 1;
304
305         emufs_destruir(l->fp);
306         emufs_destruir(l->fp_texto);
307         while (l->primero) {
308                 del = l->primero;
309                 l->primero = l->primero->sig;
310                 free(del);
311         }
312         free(l);
313
314         lst_facturas = NULL;
315         return 0;
316 }
317
318 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
319 {
320         t_Factura *fact;
321         t_Reg_Factura *reg;
322         char *leo;
323         EMUFS_REG_SIZE size;
324         int error;
325         if (lst == NULL) return NULL;
326
327         fact = NULL;
328         reg = lst->primero;
329         while (reg) {
330                 if (reg->numero == numero) {
331                         size = 0;
332                         error = 0;
333                         leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
334                         if (leo != NULL) {
335                                 fact = (t_Factura *)malloc(sizeof(t_Factura));
336                                 if (fact == NULL) {
337                                         free(leo);
338                                         return NULL;
339                                 }
340                                 procesar_leer_factura(fact, leo, size, lst);
341                                 (*id) = reg->num_reg;
342                                 (*id_texto) = reg->texto_reg;
343                                 free(leo);
344                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
345                         }
346                         break;
347                 }
348                 reg = reg->sig;
349         }
350         return fact;
351 }
352
353 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
354 {
355         t_Form *form;
356         t_Factura *fact;
357
358         form = form_crear(win);
359         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
360         form_ejecutar(form, 1,1);
361         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
362         form_destruir(form);
363
364         return fact;
365 }
366
367 void fact_eliminar(char *s)
368 {
369         WINDOW *win;
370         t_Factura *fact;
371         t_Reg_Factura *nodo;
372         EMUFS_REG_ID id;
373                                                                         
374         win = newwin(LINES-4, COLS-2, 2, 1);
375         box(win, 0, 0);
376         
377         fact = fact_form_buscar(win, &id, &id);
378
379         if (fact == NULL) {
380                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
381                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
382                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
383                 wrefresh(win);
384                 getch();
385                 werase(win);
386                 wrefresh(win);
387                 delwin(win);
388                 return;
389         }
390
391         nodo = lst_facturas->primero;
392         while (nodo) {
393                 if (nodo->numero == fact->numero) {
394                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
395                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
396                         eliminar_nodo_factura(lst_facturas, nodo);
397                         break;
398                 }
399                 nodo = nodo->sig;
400         }
401
402         free(fact->items);
403         free(fact);
404 }
405
406 void fact_modificar(char *s)
407 {
408         WINDOW *win, *items, *nota, *subnota;
409         t_Form *form, *form_nota;
410         t_Factura *fact;
411         EMUFS_REG_SIZE size;
412         EMUFS_REG_ID id, id_texto;
413         int error;
414         char tmp_str[10];
415         void *entrada;
416
417                                                                         
418         win = newwin(LINES-4, COLS-2, 2, 1);
419         box(win, 0, 0);
420         
421         fact = fact_form_buscar(win, &id, &id_texto);
422
423         if (fact == NULL) {
424                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
425                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
426                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
427                 wrefresh(win);
428                 getch();
429                 werase(win);
430                 wrefresh(win);
431                 delwin(win);
432                 return;
433         }
434
435         mvwaddch(win, 10, 0, ACS_LTEE);
436         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
437         mvwaddch(win, 10, COLS-3, ACS_RTEE);
438         wrefresh(win);
439
440         items = derwin(win, LINES-20, COLS-4, 15, 1);
441         nota = derwin(win, 9, COLS-62, 1, 56);
442         subnota = derwin(nota, 7, COLS-64, 1, 1);
443         box(nota, 0, 0);
444         mvwaddstr(nota, 0, 1, "Nota :");
445         wrefresh(nota);
446         wrefresh(items);
447
448         form = form_crear(win);
449         sprintf(tmp_str, "%08d", fact->numero);
450         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
451         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
452         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
453         sprintf(tmp_str, "%08d", fact->numero_remito);
454         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
455         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
456         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
457         sprintf(tmp_str, "%02.2f", fact->procdoi);
458         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
459         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
460         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
461
462         mvwaddstr(subnota, 0, 0, fact->nota);
463         wrefresh(subnota);
464         form_ejecutar(form, 1,1);
465
466         form_nota = form_crear(subnota);
467         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
468         form_ejecutar(form_nota, 0, 0);
469
470         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
471         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
472         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
473         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
474         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
475         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
476         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
477         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
478         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
479
480         form_destruir(form);
481
482         free(fact->nota);
483         fact->nota = form_obtener_valor_char(form_nota, "");
484
485         form_destruir(form_nota);
486
487         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
488         if (entrada) {
489                 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
490                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
491                 free(entrada);
492         }
493
494         free(fact->items);
495         free(fact);
496
497         werase(win);
498         wrefresh(win);
499         delwin(subnota);
500         delwin(nota);
501         delwin(items);
502         delwin(win);
503 }
504
505 void fact_agregar(char *s)
506 {
507         WINDOW *win, *items, *nota, *subnota;
508         t_Form *form, *form_nota;
509         t_Item *its = NULL;
510         t_Factura fact;
511         EMUFS_REG_SIZE size;
512         EMUFS_REG_ID id, id_texto;
513         int y_actual, cant, error;
514         char *entrada;
515
516         win = newwin(LINES-4, COLS-2, 2, 1);
517         box(win, 0, 0);
518         mvwaddch(win, 10, 0, ACS_LTEE);
519         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
520         mvwaddch(win, 10, COLS-3, ACS_RTEE);
521         wrefresh(win);
522
523         items = derwin(win, LINES-20, COLS-4, 15, 1);
524         nota = derwin(win, 9, COLS-62, 1, 56);
525         subnota = derwin(nota, 7, COLS-64, 1, 1);
526         box(nota, 0, 0);
527         mvwaddstr(nota, 0, 1, "Nota :");
528         wrefresh(nota);
529         wrefresh(items);
530
531         form = form_crear(win);
532         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
533         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
534         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
535         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
536         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
537         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
538         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
539         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
540         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
541
542         form_ejecutar(form, 1,1);
543
544         form_nota = form_crear(subnota);
545         form_agregar_widget(form_nota, INPUT, "", 255, "");
546         form_ejecutar(form_nota, 0, 0);
547
548         /* XXX No destruir form_nota hasta el final !!!!! XXX */
549
550         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
551         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
552         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
553         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
554         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
555         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
556         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
557         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
558         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
559
560         form_destruir(form);
561
562         form = form_crear(win);
563         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
564         form_agregar_widget(form, INPUT, "CV", 8, "");
565         form_agregar_widget(form, INPUT, "PVU", 8, "");
566         y_actual = 0;
567         scrollok(items, 1);
568         mvwaddstr(win, 15, 2, "Numero");
569         mvwaddstr(win, 15, 11, "CV");
570         mvwaddstr(win, 15, 21, "PVU");
571         cant = 0;
572         do {
573                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
574                 form_set_valor(form, "CV", "");
575                 form_set_valor(form, "PVU", "");
576                 form_ejecutar(form, 2, 11);
577
578                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
579
580                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
581                         y_actual++;
582                         if (y_actual > LINES-22) {
583                                 y_actual = LINES-22;
584                                 wscrl(items, 1);
585                         }
586                         mvwaddstr(items, y_actual, 1, entrada);
587                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
588                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
589                         wrefresh(items);
590                         /* Agrego el Item */
591                         cant++;
592                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
593                         if (its != NULL) {
594                                 its[cant-1].numero = atoi(entrada);
595                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
596                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
597                         }
598                 }
599         } while (entrada[0] != '*');
600
601         if (lst_facturas->fp->tipo == T3) {
602                 if (cant != 10) {
603                         /* TODO Limitar en la GUI en lugar de truncar! */
604                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
605                         if (its == NULL) {
606                                 cant = 0;
607                         } else {
608                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
609                                 cant = 10;
610                         }
611                 }
612         }
613         fact.items = its;
614         fact.cant_items = cant;
615         fact.nota = form_obtener_valor_char(form_nota, "");
616
617         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
618         if (entrada) {
619                 error = 0;
620                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
621                 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
622                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
623                 free(entrada);
624         }
625                                                                         
626         if (its) free(its);
627         form_destruir(form);
628         form_destruir(form_nota);
629
630         werase(win);
631         wrefresh(win);
632         delwin(items);
633         delwin(subnota);
634         delwin(nota);
635         delwin(win);
636 }
637
638 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
639 {
640         char *tmp=NULL;
641         int i[12];
642
643         switch (lst->fp->tipo) {
644                 case T1:
645                 case T2:
646                         /* Calculo el tamaño que voy a necesitar */
647                         i[0] = sizeof(int);
648                         i[1] = sizeof(float);
649                         i[2] = sizeof(int);
650                         i[3] = sizeof(int);
651                         i[4] = sizeof(EMUFS_BLOCK_ID);
652                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
653                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
654                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
655                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
656                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
657                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
658                         i[11] = sizeof(t_Item)*f->cant_items;
659                         (*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];
660                         tmp = (char *)malloc(*size);
661                         if (tmp == NULL) return NULL;
662                         memset(tmp, 0, *size);
663                         /* Ahora copio la info */
664                         memcpy(tmp, &f->numero, i[0]);
665                         memcpy(tmp+i[0], &f->procdoi, i[1]);
666                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
667                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
668                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
669                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
670                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
671                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
672                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
673                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
674                         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]);
675                         if (i[11] != 0)
676                                 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]);
677                 break;
678                 case T3:
679                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
680                         tmp = (char *)malloc(*size);
681                         if (tmp == NULL) return NULL;
682                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
683                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
684         }
685         return tmp;
686 }
687
688 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
689 {
690         char *ini, *fin;
691         int dummy;
692
693         if (lst == NULL) {
694                 PERR("Puntero a lista NULO");
695                 return 0;
696         }
697         if (lst->fp == NULL) {
698                 PERR("EMUFS No creado!");
699                 return 0;
700         }
701
702         switch (lst->fp->tipo) {
703                 case T1:
704                 case T2:
705                         ini = (char *)src;
706                         /* Copio los campos numericos, muy facil:-) */
707                         memcpy(&dst->numero, ini, sizeof(int));
708                         ini+=sizeof(int);
709                         
710                         memcpy(&dst->procdoi, ini, sizeof(float));
711                         ini+=sizeof(float);
712
713                         memcpy(&dst->numero_remito, ini, sizeof(int));
714                         ini+=sizeof(int);
715                         
716                         memcpy(&dst->cant_items, ini, sizeof(int));
717                         ini+=sizeof(int);
718                         
719                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
720                         ini+=sizeof(EMUFS_BLOCK_ID);
721
722                         /* Ahora empieza el juego */
723                         /* Los \0 son los delimitadores de campo! */
724                         fin = ini;
725                         while (*fin!='\0') fin++;
726                         memcpy(dst->emision, ini, fin-ini+1);
727                         
728                         ini = fin+1;
729                         fin = ini;
730                         while (*fin!='\0') fin++;
731                         memcpy(dst->vencimiento, ini, fin-ini+1);
732                         
733                         ini = fin+1;
734                         fin = ini;
735                         while (*fin!='\0') fin++;
736                         memcpy(dst->estado, ini, fin-ini+1);
737                         
738                         ini = fin+1;
739                         fin = ini;
740                         while (*fin!='\0') fin++;
741                         memcpy(dst->fp, ini, fin-ini+1);
742                         
743                         ini = fin+1;
744                         fin = ini;
745                         while (*fin!='\0') fin++;
746                         memcpy(dst->ctacte, ini, fin-ini+1);
747                         
748                         ini = fin+1;
749                         fin = ini;
750                         while (*fin!='\0') fin++;
751                         memcpy(dst->cheque, ini, fin-ini+1);
752
753                         if (dst->cant_items > 0) {
754                                 /* Ahora tengo que cargar los items */
755                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
756
757                                 ini = fin+1;
758                                 fin = (char *)src+size;
759                                 memcpy(dst->items, ini, fin-ini);
760
761                         } else {
762                                 dst->items = NULL;
763                         }
764                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
765                         return 0;
766                 break;
767                 case T3:
768                         /* Se que tengo 10 items */
769                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
770                         size = lst->fp->tam_reg;
771                         memcpy(dst, src, size-sizeof(t_Item)*10);
772                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
773                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
774                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
775         }
776         return 0;
777 }
778
779 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
780 {
781         EMUFS *nuevo, *old;
782         EMUFS_REG_ID *indices, id;
783         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
784         t_Factura fact;
785         t_LstFacturas *lst_nueva;
786         int error;
787         char *save;
788
789         PERR("==== EMPIEZO ====\n");
790         old = lst_facturas->fp;
791
792         /* Creo el nuevo file */
793         PERR("Creo el archivo\n");
794         if (tipo == T3) {
795                 /* Me aseguro de que entren n items completos */
796                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
797         }
798         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
799         if (nuevo == NULL) {
800                 PERR("ARCHIVO NUEVO NO CREADO");
801                 return;
802         }
803
804         /* Creo la nueva lista */
805         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
806         lst_nueva->primero = NULL;
807         lst_nueva->fp = nuevo;
808         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
809
810         /* Leo los indices del archivo viejo */
811         PERR("Obtengo Indices\n");
812         indices = emufs_idx_get(old, &indices_total);
813         if (indices == NULL) {
814                 fact_liberar(lst_nueva);
815                 return;
816         }
817
818         PERR("Proceso datos");
819         for(i=0; i<indices_total; i++) {
820                 error = 0;
821                 PERR("Leo");
822                 save = old->leer_registro(old, indices[i], &size, &error);
823                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
824                         PERR("Procese Leer Ok");
825                         free(save);
826                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
827
828                         /* Actualizo el ID de la nota asociada */
829                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
830                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
831                         PERR("Procese Grabar Ok");
832                         if (save) {
833                                 error = 0;
834                                 PERR("Grabo el Registro");
835                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
836                                 PERR("Lo agrego");
837                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
838                                 PERR("Libero Memoria");
839                                 free(save);
840                                 if (fact.items) free(fact.items);
841                                 if (fact.nota) free(fact.nota);
842                                 PERR("Termine con este Item");
843                         }
844                 }
845         }
846
847         free(indices);
848
849         PERR("Libero lo viejo\n");
850         fact_liberar(lst_facturas);
851
852         PERR("Ahora tengo lo nuevo\n");
853         lst_facturas = lst_nueva;
854
855         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
856         free(lst_facturas->fp->nombre);
857         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
858         strcpy(lst_facturas->fp->nombre, "facturas");
859         
860         /* Tambien actualizo el nombre para notas */
861         free(lst_facturas->fp_texto->nombre);
862         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
863         strcpy(lst_facturas->fp_texto->nombre, "notas");
864         
865         /* Muevo los archivos! */
866         /* TODO : Poner en otro lugar mas generico! */
867         PERR("Renombre!!\n");
868         rename("emufs_tmp.dat", "facturas.dat");
869         rename("emufs_tmp.idx", "facturas.idx");
870         rename("emufs_tmp.fsc", "facturas.fsc");
871         rename("emufs_tmp.did", "facturas.did");
872         rename("nota_tmp.dat", "notas.dat");
873         rename("nota_tmp.idx", "notas.idx");
874         rename("nota_tmp.fsc", "notas.fsc");
875         rename("nota_tmp.did", "notas.did");
876         PERR("==== TERMINE ====\n");
877 }
878
879 int fact_exportar_xml(const char *filename)
880 {
881         int j;
882         t_Reg_Factura *nodo;
883         t_Factura *fact;
884         EMUFS_REG_ID id, id1;
885         FILE *fp;
886
887         if (lst_facturas->primero == NULL) return 0;
888
889         nodo = lst_facturas->primero;
890
891         if (!(fp = fopen(filename, "wt"))) return 0;
892         
893         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
894         fprintf(fp, "<FACTURAS>\n");
895         while (nodo) {
896                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
897                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
898                 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
899                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
900                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
901                 fprintf(fp, "FP=\"%s\" ", fact->fp);
902                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
903                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
904                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
905                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
906                 fprintf(fp, ">\n");
907                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
908                 for(j=0; j<fact->cant_items; j++) {
909                         if (fact->items[j].numero != 0)
910                                 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);
911                 }
912                 fprintf(fp, "\t</FACTURA>\n");
913                 nodo = nodo->sig;
914         }
915         fprintf(fp, "\t</FACTURAS>\n");
916
917         fclose(fp);
918         return 1;
919 }
920