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