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