]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* BUGFIX : tenia ciertos lugares donde hacia tipo==3 o similares
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4
5 static t_LstFacturas *lst_facturas;
6
7 /* Procesa una factura antes de enviarla al archivo para guardarla */
8 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
9 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
10 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
11 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
12 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
13 static t_Item *leer_items(xmlNode *, int *cant, int size);
14 static char *leer_nota(xmlNode *);
15
16 t_LstFacturas *fact_get_lst()
17 {
18         return lst_facturas;
19 }
20
21 /* Hack! ... Si no existe propiedad retorna "" */
22 char *xml_get_prop(xmlNode *node, char *nombre)
23 {
24         char *s;
25         if (xmlGetProp(node, nombre) == NULL) {
26                 s = malloc(1);
27                 s[0] = '\0';
28                 return s;
29         }
30         return xmlGetProp(node, nombre);
31 }
32
33 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
34 {
35         if (nodo == NULL) return 0;
36         if (nodo->ant == NULL) {
37                 /* Me piden borrar el primer nodo */
38                 if (nodo->sig) {
39                         nodo->sig->ant = NULL;
40                 }
41                 lst->primero = nodo->sig;
42         } else {
43                 if (nodo->sig) {
44                         nodo->sig->ant = nodo->ant;
45                 }
46                 nodo->ant->sig = nodo->sig;
47         }
48         free(nodo);
49         return 1;
50 }
51
52 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
53 {
54         t_Reg_Factura *tmp;
55         if (reg == EMUFS_NOT_FOUND) return NULL;
56         tmp = malloc(sizeof(t_Reg_Factura));
57         if (tmp == NULL) return NULL;
58         tmp->sig = tmp->ant = NULL;
59         tmp->num_reg = reg;
60         tmp->texto_reg = texto;
61         tmp->numero = num;
62
63         return tmp;
64 }
65
66 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
67 {
68         if (nodo == NULL) return 0;
69
70         if (lst->primero) {
71                 lst->primero->ant = nodo;
72                 nodo->sig = lst->primero;
73                 lst->primero = nodo;
74         } else {
75                 lst->primero = nodo;
76         }
77         return 1;
78 }
79
80 t_Item *leer_items(xmlNode *node, int *cant, int size)
81 {
82         t_Item *tmp;
83         int count;
84         char *prop;
85         if (size == -1) {
86                 tmp = NULL;
87                 count = 0;
88                 node = node->children;
89                 while (node) {
90                         if (node->type == XML_ELEMENT_NODE) {
91                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
92                                         count++;
93                                         tmp = realloc(tmp, sizeof(t_Item)*count);
94                                         memset(&tmp[count-1], '*', sizeof(t_Item));
95                                         prop = xml_get_prop(node, "NroArtículo");
96                                         tmp[count-1].numero = atoi(prop);
97                                         xmlFree(prop);
98                                         strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
99                                         strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
100                                 }
101                         }
102                         node = node->next;
103                 }
104                 *cant = count;
105         } else {
106                 (*cant) = size;
107                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
108                 memset(tmp, 0, sizeof(t_Item)*size);
109
110                 count = 0;
111                 node = node->children;
112                 while (node) {
113                         if (node->type == XML_ELEMENT_NODE) {
114                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
115                                         memset(&tmp[count], '*', sizeof(t_Item));
116                                         prop = xml_get_prop(node, "NroArtículo");
117                                         tmp[count].numero = atoi(prop);
118                                         xmlFree(prop);
119                                         strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
120                                         strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
121                                         count++;
122                                 }
123                         }
124                         if (count == 10) break; /* No me entran mas items! */
125                         node = node->next;
126                 }
127         }
128         return tmp;
129 }
130
131 char *leer_nota(xmlNode *node)
132 {
133         xmlNode *tmp;
134         char *salida;
135         tmp = node->children;
136         while (tmp) {
137                 if (tmp->type == XML_ELEMENT_NODE) {
138                         if (strcmp(tmp->name, "NOTA") == 0) {
139                                 break;
140                         }
141                 }
142                 tmp = tmp->next;
143         }
144
145         if (tmp) {
146                 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
147                 strcpy(salida, XML_GET_CONTENT(tmp->children));
148         } else {
149                 salida = (char *)malloc(sizeof(char));
150                 salida[0] = '\0';
151         }
152         return salida;
153 }
154
155
156 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
157 {
158         xmlDocPtr document;
159         xmlNode *node, *inicio;
160         int error = 0, cant_items, i;
161         char *prop;
162         EMUFS_REG_SIZE size;
163         t_LstFacturas *tmp;
164         EMUFS_REG_ID id, *indices, indices_cant;
165         
166         lst_facturas = NULL;
167
168         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
169         if (tmp == NULL) return NULL;
170         lst_facturas = tmp;
171         tmp->primero = NULL;
172
173         if (filename != NULL) {
174                 PERR("Voy a cargar de un XML");
175                 document = xmlReadFile(filename, "ISO-8859-1",0);
176                 if (document == NULL) {
177                         free(tmp);
178                         lst_facturas = NULL;
179                         return NULL;
180                 }
181
182                 inicio = NULL;
183                 node = xmlDocGetRootElement(document);
184                 /* Busco el TAG principal "ARTICULOS" */
185                 while (node) {
186                         if (node->type == XML_ELEMENT_NODE) {
187                                 if (strcmp(node->name, "FACTURAS") == 0) {
188                                         inicio = node->children;
189                                         break;
190                                 }
191                         }
192                         node = node->next;
193                 }
194
195                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
196                  * y los items al final del registro.
197                  */
198                 if (tipo == T3) {
199                         /* Limito a 10 items en el caso de registro constante! */
200                         cant_items = 10;
201                 } else {
202                         cant_items = 0;
203                 }
204                 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
205                 tmp->fp_texto = emufs_crear("notas", 1, 100, 0);
206                 for (node=inicio ; node ; node = node->next) {
207                         if (node->type == XML_ELEMENT_NODE) {
208                                 if (strcmp(node->name, "FACTURA") == 0) {
209                                         t_Factura fact;
210                                         void *save;
211                                         memset(&fact, '*', sizeof(t_Factura));
212                                         prop = xml_get_prop(node, "NroFac");
213                                         fact.numero = atoi(prop); xmlFree(prop);
214                                         prop = xml_get_prop(node, "PorcDoI");
215                                         fact.procdoi = atof(prop); xmlFree(prop);
216                                         prop = xml_get_prop(node, "NroRemito");
217                                         fact.numero_remito = atoi(prop); xmlFree(prop);
218                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
219                                         fact.emision[8] = '\0';
220                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
221                                         fact.vencimiento[8] = '\0';
222                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
223                                         fact.estado[2] = '\0';
224                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
225                                         fact.fp[2] = '\0';
226                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
227                                         fact.ctacte[5] = '\0';
228                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
229                                         fact.cheque[18] = '\0';
230
231                                         fact.nota = leer_nota(node);
232                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
233
234                                         error = 0;
235                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
236                                         fact.reg_nota = id;
237                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
238                                         if (save != NULL) {
239                                                 error = 0;
240                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
241                                                 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
242                                                 if (fact.items) free(fact.items);
243                                                 if (fact.nota) free(fact.nota);
244                                                 free(save);
245                                         }
246                                 }
247                         }
248                 }
249                 xmlFreeDoc(document);
250                 xmlCleanupParser();
251         } else {
252                 PERR("Voy a recuperar desde un archivo");
253                 tmp->fp = emufs_abrir("facturas");
254                 if (tmp->fp == NULL) {
255                         PERR("No se pudo cargar archivo de facturas!");
256                         free(tmp);
257                         lst_facturas = NULL;
258                         return NULL;
259                 }
260                 tmp->fp_texto = emufs_abrir("notas");
261                 if (tmp->fp_texto == NULL) {
262                         PERR("No se pudo cargar archivo de notas!");
263                         emufs_destruir(tmp->fp);
264                         free(tmp);
265                         lst_facturas = NULL;
266                         return NULL;
267                 }
268
269                 /* Ahora trato de recuperar la info */
270                 indices = emufs_idx_get(tmp->fp, &indices_cant);
271                 for(i=0; i<indices_cant; i++) {
272                         t_Factura art;
273                         void *save;
274                         /* Leo el registro */
275                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
276                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
277                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
278                                 free(save);
279                         }
280                 }
281                 free(indices);
282         }
283
284         PERR("Facturas todo Ok");
285         return lst_facturas;
286 }
287
288 int fact_liberar(t_LstFacturas *l)
289 {
290         t_Reg_Factura *del;
291         if (l == NULL) l = lst_facturas;
292         if (l == NULL) return 1;
293
294         emufs_destruir(l->fp);
295         while (l->primero) {
296                 del = l->primero;
297                 l->primero = l->primero->sig;
298                 free(del);
299         }
300         free(l);
301
302         lst_facturas = NULL;
303         return 0;
304 }
305
306 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
307 {
308         t_Factura *fact;
309         t_Reg_Factura *reg;
310         char *leo;
311         EMUFS_REG_SIZE size;
312         int error;
313         if (lst == NULL) return NULL;
314
315         fact = NULL;
316         reg = lst->primero;
317         while (reg) {
318                 if (reg->numero == numero) {
319                         size = 0;
320                         error = 0;
321                         leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
322                         if (leo != NULL) {
323                                 fact = (t_Factura *)malloc(sizeof(t_Factura));
324                                 if (fact == NULL) {
325                                         free(leo);
326                                         return NULL;
327                                 }
328                                 procesar_leer_factura(fact, leo, size, lst);
329                                 (*id) = reg->num_reg;
330                                 (*id_texto) = reg->texto_reg;
331                                 free(leo);
332                         }
333                         break;
334                 }
335                 reg = reg->sig;
336         }
337         return fact;
338 }
339
340 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
341 {
342         t_Form *form;
343         t_Factura *fact;
344
345         form = form_crear(win);
346         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
347         form_ejecutar(form, 1,1);
348         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
349         form_destruir(form);
350
351         return fact;
352 }
353
354 void fact_eliminar(char *s)
355 {
356         WINDOW *win;
357         t_Factura *fact;
358         t_Reg_Factura *nodo;
359         EMUFS_REG_ID id;
360                                                                         
361         win = newwin(LINES-4, COLS-2, 2, 1);
362         box(win, 0, 0);
363         
364         fact = fact_form_buscar(win, &id, &id);
365
366         if (fact == NULL) {
367                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
368                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
369                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
370                 wrefresh(win);
371                 getch();
372                 werase(win);
373                 wrefresh(win);
374                 delwin(win);
375                 return;
376         }
377
378         nodo = lst_facturas->primero;
379         while (nodo) {
380                 if (nodo->numero == fact->numero) {
381                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
382                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
383                         eliminar_nodo_factura(lst_facturas, nodo);
384                         break;
385                 }
386                 nodo = nodo->sig;
387         }
388
389         free(fact->items);
390         free(fact);
391 }
392
393 void fact_modificar(char *s)
394 {
395         WINDOW *win, *items;
396         t_Form *form;
397         t_Factura *fact;
398         /*EMUFS_REG_SIZE size;*/
399         EMUFS_REG_ID id, id_texto;
400 /*      int y_actual, cant, error;*/
401         char tmp_str[10];
402
403                                                                         
404         win = newwin(LINES-4, COLS-2, 2, 1);
405         box(win, 0, 0);
406         
407         fact = fact_form_buscar(win, &id, &id_texto);
408
409         if (fact == NULL) {
410                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
411                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
412                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
413                 wrefresh(win);
414                 getch();
415                 werase(win);
416                 wrefresh(win);
417                 delwin(win);
418                 return;
419         }
420
421         mvwaddch(win, 10, 0, ACS_LTEE);
422         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
423         mvwaddch(win, 10, COLS-3, ACS_RTEE);
424         wrefresh(win);
425
426         items = derwin(win, LINES-20, COLS-4, 15, 1);
427         wrefresh(items);
428
429         form = form_crear(win);
430         sprintf(tmp_str, "%08d", fact->numero);
431         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
432         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
433         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
434         sprintf(tmp_str, "%08d", fact->numero_remito);
435         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
436         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
437         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
438         sprintf(tmp_str, "%02.2f", fact->procdoi);
439         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
440         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
441         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
442
443         form_ejecutar(form, 1,1);
444
445         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
446         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
447         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
448         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
449         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
450         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
451         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
452         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
453         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
454
455         form_destruir(form);
456
457         /* TODO MODIFICAR */
458         
459 /*      entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
460         if (entrada) {
461                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);*/
462                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
463                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
464                 /*agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
465                 free(entrada);
466         }
467         */                                                              
468 /*      form_destruir(form); */
469
470         free(fact->items);
471         free(fact);
472
473         werase(win);
474         wrefresh(win);
475         delwin(items);
476         delwin(win);
477 }
478
479 void fact_agregar(char *s)
480 {
481         WINDOW *win, *items, *nota, *subnota;
482         t_Form *form, *form_nota;
483         t_Item *its = NULL;
484         t_Factura fact;
485         EMUFS_REG_SIZE size;
486         EMUFS_REG_ID id; /*, id_texto;*/
487         int y_actual, cant, error;
488         char *entrada;
489
490         win = newwin(LINES-4, COLS-2, 2, 1);
491         box(win, 0, 0);
492         mvwaddch(win, 10, 0, ACS_LTEE);
493         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
494         mvwaddch(win, 10, COLS-3, ACS_RTEE);
495         wrefresh(win);
496
497         items = derwin(win, LINES-20, COLS-4, 15, 1);
498         nota = derwin(win, 9, COLS-62, 1, 56);
499         subnota = derwin(nota, 7, COLS-64, 1, 1);
500         box(nota, 0, 0);
501         mvwaddstr(nota, 0, 1, "Nota :");
502         wrefresh(nota);
503         wrefresh(items);
504
505         form = form_crear(win);
506         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
507         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
508         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
509         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
510         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
511         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
512         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
513         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
514         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
515
516         form_ejecutar(form, 1,1);
517
518         form_nota = form_crear(subnota);
519         form_agregar_widget(form_nota, INPUT, "", 255, "");
520         form_ejecutar(form_nota, 0, 0);
521
522         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
523         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
524         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
525         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
526         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
527         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
528         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
529         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
530         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
531
532         form_destruir(form);
533         form_destruir(form_nota);
534
535         form = form_crear(win);
536         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
537         form_agregar_widget(form, INPUT, "CV", 8, "");
538         form_agregar_widget(form, INPUT, "PVU", 8, "");
539         y_actual = 0;
540         scrollok(items, 1);
541         mvwaddstr(win, 15, 2, "Numero");
542         mvwaddstr(win, 15, 11, "CV");
543         mvwaddstr(win, 15, 21, "PVU");
544         do {
545                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
546                 form_set_valor(form, "CV", "");
547                 form_set_valor(form, "PVU", "");
548                 form_ejecutar(form, 2, 11);
549
550                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
551
552                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
553                         y_actual++;
554                         if (y_actual > LINES-22) {
555                                 y_actual = LINES-22;
556                                 wscrl(items, 1);
557                         }
558                         mvwaddstr(items, y_actual, 1, entrada);
559                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
560                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
561                         wrefresh(items);
562                         /* Agrego el Item */
563                         cant++;
564                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
565                         its[cant-1].numero = atoi(entrada);
566                         strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
567                         strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
568                 }
569         } while (entrada[0] != '*');
570
571         if (lst_facturas->fp->tipo == T3) {
572                 if (cant != 10) {
573                         /* TODO Limitar en la GUI en lugar de truncar! */
574                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
575                         if (its == NULL) {
576                                 cant = 0;
577                         } else {
578                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
579                                 cant = 10;
580                         }
581                 }
582         }
583         fact.items = its;
584         fact.cant_items = cant;
585
586         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
587         if (entrada) {
588                 error = 0;
589                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
590                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
591                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
592                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
593                 free(entrada);
594         }
595                                                                         
596         if (its) free(its);
597         form_destruir(form);
598
599         werase(win);
600         wrefresh(win);
601         delwin(items);
602         delwin(subnota);
603         delwin(nota);
604         delwin(win);
605 }
606
607 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
608 {
609         char *tmp=NULL;
610         int i[12];
611
612         switch (lst->fp->tipo) {
613                 case T1:
614                 case T2:
615                         /* Calculo el tamaño que voy a necesitar */
616                         i[0] = sizeof(int);
617                         i[1] = sizeof(float);
618                         i[2] = sizeof(int);
619                         i[3] = sizeof(int);
620                         i[4] = sizeof(EMUFS_BLOCK_ID);
621                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
622                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
623                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
624                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
625                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
626                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
627                         i[11] = sizeof(t_Item)*f->cant_items;
628                         (*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];
629                         tmp = (char *)malloc(*size);
630                         if (tmp == NULL) return NULL;
631                         memset(tmp, 0, *size);
632                         /* Ahora copio la info */
633                         memcpy(tmp, &f->numero, i[0]);
634                         memcpy(tmp+i[0], &f->procdoi, i[1]);
635                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
636                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
637                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
638                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
639                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
640                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
641                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
642                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
643                         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]);
644                         if (i[11] != 0)
645                                 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]);
646                 break;
647                 case T3:
648                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
649                         tmp = (char *)malloc(*size);
650                         if (tmp == NULL) return NULL;
651                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
652                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
653         }
654         return tmp;
655 }
656
657 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
658 {
659         char *ini, *fin;
660         int dummy;
661
662         switch (lst->fp->tipo) {
663                 case T1:
664                 case T2:
665                         ini = (char *)src;
666                         /* Copio los campos numericos, muy facil:-) */
667                         memcpy(&dst->numero, ini, sizeof(int));
668                         ini+=sizeof(int);
669                         
670                         memcpy(&dst->procdoi, ini, sizeof(float));
671                         ini+=sizeof(float);
672
673                         memcpy(&dst->numero_remito, ini, sizeof(int));
674                         ini+=sizeof(int);
675                         
676                         memcpy(&dst->cant_items, ini, sizeof(int));
677                         ini+=sizeof(int);
678                         
679                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
680                         ini+=sizeof(EMUFS_BLOCK_ID);
681
682                         /* Ahora empieza el juego */
683                         /* Los \0 son los delimitadores de campo! */
684                         fin = ini;
685                         while (*fin!='\0') fin++;
686                         memcpy(dst->emision, ini, fin-ini+1);
687                         
688                         ini = fin+1;
689                         fin = ini;
690                         while (*fin!='\0') fin++;
691                         memcpy(dst->vencimiento, ini, fin-ini+1);
692                         
693                         ini = fin+1;
694                         fin = ini;
695                         while (*fin!='\0') fin++;
696                         memcpy(dst->estado, ini, fin-ini+1);
697                         
698                         ini = fin+1;
699                         fin = ini;
700                         while (*fin!='\0') fin++;
701                         memcpy(dst->fp, ini, fin-ini+1);
702                         
703                         ini = fin+1;
704                         fin = ini;
705                         while (*fin!='\0') fin++;
706                         memcpy(dst->ctacte, ini, fin-ini+1);
707                         
708                         ini = fin+1;
709                         fin = ini;
710                         while (*fin!='\0') fin++;
711                         memcpy(dst->cheque, ini, fin-ini+1);
712
713                         if (dst->cant_items > 0) {
714                                 /* Ahora tengo que cargar los items */
715                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
716
717                                 ini = fin+1;
718                                 fin = (char *)src+size;
719                                 memcpy(dst->items, ini, fin-ini);
720
721                                 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
722                         } else {
723                                 dst->items = NULL;
724                         }
725
726                         return 0;
727                 case T3:
728                         /* Se que tengo 10 items */
729                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
730                         size = lst->fp->tam_reg;
731                         memcpy(dst, src, size-sizeof(t_Item)*10);
732                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
733                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
734         }
735         return 0;
736 }
737