]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
b9b798a0be1c80167b00d6854606c38372f149f1
[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 == 3) {
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                                         strcpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión")); xmlFree(prop);
219                                         strcpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto")); xmlFree(prop);
220                                         strcpy(fact.estado, prop = xml_get_prop(node, "Estado")); xmlFree(prop);
221                                         strcpy(fact.fp, prop = xml_get_prop(node, "FP")); xmlFree(prop);
222                                         strcpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte")); xmlFree(prop);
223                                         strcpy(fact.cheque, prop = xml_get_prop(node, "NroCheque")); xmlFree(prop);
224
225                                         fact.nota = leer_nota(node);
226                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
227
228                                         error = 0;
229                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
230                                         fact.reg_nota = id;
231                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
232                                         if (save != NULL) {
233                                                 error = 0;
234                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
235                                                 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
236                                                 if (fact.items) free(fact.items);
237                                                 if (fact.nota) free(fact.nota);
238                                                 free(save);
239                                         }
240                                 }
241                         }
242                 }
243                 xmlFreeDoc(document);
244                 xmlCleanupParser();
245         } else {
246                 PERR("Voy a recuperar desde un archivo");
247                 tmp->fp = emufs_abrir("facturas");
248                 if (tmp->fp == NULL) {
249                         PERR("No se pudo cargar archivo de facturas!");
250                         free(tmp);
251                         lst_facturas = NULL;
252                         return NULL;
253                 }
254                 tmp->fp_texto = emufs_abrir("notas");
255                 if (tmp->fp_texto == NULL) {
256                         PERR("No se pudo cargar archivo de notas!");
257                         emufs_destruir(tmp->fp);
258                         free(tmp);
259                         lst_facturas = NULL;
260                         return NULL;
261                 }
262
263                 /* Ahora trato de recuperar la info */
264                 indices = emufs_idx_get(tmp->fp, &indices_cant);
265                 for(i=0; i<indices_cant; i++) {
266                         t_Factura art;
267                         void *save;
268                         /* Leo el registro */
269                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
270                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
271                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
272                                 free(save);
273                         }
274                 }
275                 free(indices);
276         }
277
278         PERR("Facturas todo Ok");
279         return lst_facturas;
280 }
281
282 int fact_liberar(t_LstFacturas *l)
283 {
284         if (l == NULL) l = lst_facturas;
285         if (l == NULL) return 1;
286
287         emufs_destruir(l->fp);
288         free(l);
289
290         lst_facturas = NULL;
291         return 0;
292 }
293
294 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
295 {
296         t_Factura *fact;
297         t_Reg_Factura *reg;
298         char *leo;
299         EMUFS_REG_SIZE size;
300         int error;
301         if (lst == NULL) return NULL;
302
303         fact = NULL;
304         reg = lst->primero;
305         while (reg) {
306                 if (reg->numero == numero) {
307                         size = 0;
308                         error = 0;
309                         leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
310                         if (leo != NULL) {
311                                 fact = (t_Factura *)malloc(sizeof(t_Factura));
312                                 if (fact == NULL) {
313                                         free(leo);
314                                         return NULL;
315                                 }
316                                 procesar_leer_factura(fact, leo, size, lst);
317                                 (*id) = reg->num_reg;
318                                 (*id_texto) = reg->texto_reg;
319                                 free(leo);
320                         }
321                         break;
322                 }
323                 reg = reg->sig;
324         }
325         return fact;
326 }
327
328 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
329 {
330         t_Form *form;
331         t_Factura *fact;
332
333         form = form_crear(win);
334         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
335         form_ejecutar(form, 1,1);
336         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
337         form_destruir(form);
338
339         return fact;
340 }
341
342 void fact_eliminar(char *s)
343 {
344         WINDOW *win;
345         t_Factura *fact;
346         t_Reg_Factura *nodo;
347         EMUFS_REG_ID id;
348                                                                         
349         win = newwin(LINES-4, COLS-2, 2, 1);
350         box(win, 0, 0);
351         
352         fact = fact_form_buscar(win, &id, &id);
353
354         if (fact == NULL) {
355                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
356                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
357                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
358                 wrefresh(win);
359                 getch();
360                 werase(win);
361                 wrefresh(win);
362                 delwin(win);
363                 return;
364         }
365
366         nodo = lst_facturas->primero;
367         while (nodo) {
368                 if (nodo->numero == fact->numero) {
369                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
370                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
371                         eliminar_nodo_factura(lst_facturas, nodo);
372                         break;
373                 }
374                 nodo = nodo->sig;
375         }
376
377         free(fact->items);
378         free(fact);
379 }
380
381 void fact_modificar(char *s)
382 {
383         WINDOW *win, *items;
384         t_Form *form;
385         t_Factura *fact;
386         /*EMUFS_REG_SIZE size;*/
387         EMUFS_REG_ID id, id_texto;
388 /*      int y_actual, cant, error;*/
389         char tmp_str[10];
390
391                                                                         
392         win = newwin(LINES-4, COLS-2, 2, 1);
393         box(win, 0, 0);
394         
395         fact = fact_form_buscar(win, &id, &id_texto);
396
397         if (fact == NULL) {
398                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
399                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
400                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
401                 wrefresh(win);
402                 getch();
403                 werase(win);
404                 wrefresh(win);
405                 delwin(win);
406                 return;
407         }
408
409         mvwaddch(win, 10, 0, ACS_LTEE);
410         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
411         mvwaddch(win, 10, COLS-3, ACS_RTEE);
412         wrefresh(win);
413
414         items = derwin(win, LINES-20, COLS-4, 15, 1);
415         wrefresh(items);
416
417         form = form_crear(win);
418         sprintf(tmp_str, "%08d", fact->numero);
419         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
420         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
421         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
422         sprintf(tmp_str, "%08d", fact->numero_remito);
423         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
424         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
425         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
426         sprintf(tmp_str, "%02.2f", fact->procdoi);
427         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
428         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
429         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
430
431         form_ejecutar(form, 1,1);
432
433         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
434         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
435         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
436         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
437         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
438         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
439         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
440         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
441         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
442
443         form_destruir(form);
444
445         /* TODO MODIFICAR */
446         
447 /*      entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
448         if (entrada) {
449                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);*/
450                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
451                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
452                 /*agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
453                 free(entrada);
454         }
455         */                                                              
456 /*      form_destruir(form); */
457
458         free(fact->items);
459         free(fact);
460
461         werase(win);
462         wrefresh(win);
463         delwin(items);
464         delwin(win);
465 }
466
467 void fact_agregar(char *s)
468 {
469         WINDOW *win, *items;
470         t_Form *form;
471         t_Item *its = NULL;
472         t_Factura fact;
473         EMUFS_REG_SIZE size;
474         EMUFS_REG_ID id; /*, id_texto;*/
475         int y_actual, cant, error;
476         char *entrada;
477
478         win = newwin(LINES-4, COLS-2, 2, 1);
479         box(win, 0, 0);
480         mvwaddch(win, 10, 0, ACS_LTEE);
481         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
482         mvwaddch(win, 10, COLS-3, ACS_RTEE);
483         wrefresh(win);
484
485         items = derwin(win, LINES-20, COLS-4, 15, 1);
486         wrefresh(items);
487
488         form = form_crear(win);
489         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
490         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
491         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
492         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
493         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
494         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
495         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
496         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
497         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
498
499         form_ejecutar(form, 1,1);
500
501         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
502         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
503         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
504         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
505         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
506         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
507         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
508         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
509         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
510
511         form_destruir(form);
512
513         form = form_crear(win);
514         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
515         form_agregar_widget(form, INPUT, "CV", 8, "");
516         form_agregar_widget(form, INPUT, "PVU", 8, "");
517         y_actual = 0;
518         scrollok(items, 1);
519         mvwaddstr(win, 15, 2, "Numero");
520         mvwaddstr(win, 15, 11, "CV");
521         mvwaddstr(win, 15, 21, "PVU");
522         do {
523                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
524                 form_set_valor(form, "CV", "");
525                 form_set_valor(form, "PVU", "");
526                 form_ejecutar(form, 2, 11);
527
528                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
529
530                 if (entrada[0] != '\0') {
531                         y_actual++;
532                         if (y_actual > LINES-22) {
533                                 y_actual = LINES-22;
534                                 wscrl(items, 1);
535                         }
536                         mvwaddstr(items, y_actual, 1, entrada);
537                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
538                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
539                         wrefresh(items);
540                         /* Agrego el Item */
541                         cant++;
542                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
543                         its[cant-1].numero = form_obtener_valor_int(form, entrada);
544                         strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
545                         strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
546                 }
547         } while (strcmp(entrada, "*") != 0);
548
549         if (lst_facturas->fp->tipo == 3) {
550                 if (cant != 10) {
551                         /* TODO Limitar en la GUI en lugar de truncar! */
552                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
553                         cant = 10;
554                 }
555         }
556         fact.items = its;
557         fact.cant_items = cant;
558
559         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
560         if (entrada) {
561                 error = 0;
562                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
563                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
564                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
565                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
566                 free(entrada);
567         }
568                                                                         
569         if (its) free(its);
570         form_destruir(form);
571
572         werase(win);
573         wrefresh(win);
574         delwin(items);
575         delwin(win);
576 }
577
578 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
579 {
580         char *tmp=NULL;
581         int i[12];
582
583         switch (lst->fp->tipo) {
584                 case T1:
585                 case T2:
586                         /* Calculo el tamaño que voy a necesitar */
587                         i[0] = sizeof(int);
588                         i[1] = sizeof(float);
589                         i[2] = sizeof(int);
590                         i[3] = sizeof(int);
591                         i[4] = sizeof(EMUFS_BLOCK_ID);
592                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
593                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
594                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
595                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
596                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
597                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
598                         i[11] = sizeof(t_Item)*f->cant_items;
599                         (*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];
600                         tmp = (char *)malloc(*size);
601                         if (tmp == NULL) return NULL;
602                         memset(tmp, 0, *size);
603                         /* Ahora copio la info */
604                         memcpy(tmp, &f->numero, i[0]);
605                         memcpy(tmp+i[0], &f->procdoi, i[1]);
606                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
607                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
608                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
609                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
610                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
611                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
612                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
613                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
614                         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]);
615                         if (i[11] != 0)
616                                 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]);
617                 break;
618                 case T3:
619                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
620                         tmp = (char *)malloc(*size);
621                         if (tmp == NULL) return NULL;
622                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
623                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
624         }
625         return tmp;
626 }
627
628 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
629 {
630         char *ini, *fin;
631         int dummy;
632
633         switch (lst->fp->tipo) {
634                 case T1:
635                 case T2:
636                         ini = (char *)src;
637                         /* Copio los campos numericos, muy facil:-) */
638                         memcpy(&dst->numero, ini, sizeof(int));
639                         ini+=sizeof(int);
640                         
641                         memcpy(&dst->procdoi, ini, sizeof(float));
642                         ini+=sizeof(float);
643
644                         memcpy(&dst->numero_remito, ini, sizeof(int));
645                         ini+=sizeof(int);
646                         
647                         memcpy(&dst->cant_items, ini, sizeof(int));
648                         ini+=sizeof(int);
649                         
650                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
651                         ini+=sizeof(EMUFS_BLOCK_ID);
652
653                         /* Ahora empieza el juego */
654                         /* Los \0 son los delimitadores de campo! */
655                         fin = ini;
656                         while (*fin!='\0') fin++;
657                         memcpy(dst->emision, ini, fin-ini+1);
658                         
659                         ini = fin+1;
660                         fin = ini;
661                         while (*fin!='\0') fin++;
662                         memcpy(dst->vencimiento, ini, fin-ini+1);
663                         
664                         ini = fin+1;
665                         fin = ini;
666                         while (*fin!='\0') fin++;
667                         memcpy(dst->estado, ini, fin-ini+1);
668                         
669                         ini = fin+1;
670                         fin = ini;
671                         while (*fin!='\0') fin++;
672                         memcpy(dst->fp, ini, fin-ini+1);
673                         
674                         ini = fin+1;
675                         fin = ini;
676                         while (*fin!='\0') fin++;
677                         memcpy(dst->ctacte, ini, fin-ini+1);
678                         
679                         ini = fin+1;
680                         fin = ini;
681                         while (*fin!='\0') fin++;
682                         memcpy(dst->cheque, ini, fin-ini+1);
683
684                         if (dst->cant_items > 0) {
685                                 /* Ahora tengo que cargar los items */
686                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
687
688                                 ini = fin+1;
689                                 fin = (char *)src+size;
690                                 memcpy(dst->items, ini, fin-ini);
691
692                                 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
693                         } else {
694                                 dst->items = NULL;
695                         }
696
697                         return 0;
698                 case T3:
699                         /* Se que tengo 10 items */
700                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
701                         size = lst->fp->tam_reg;
702                         memcpy(dst, src, size-sizeof(t_Item)*10);
703                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
704                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
705         }
706         return 0;
707 }
708