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