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