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