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