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