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