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