]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* Mas manejo de la nota de una factura. Ahora realmente ya quedo (espero :-)
[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                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
336                         }
337                         break;
338                 }
339                 reg = reg->sig;
340         }
341         return fact;
342 }
343
344 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
345 {
346         t_Form *form;
347         t_Factura *fact;
348
349         form = form_crear(win);
350         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
351         form_ejecutar(form, 1,1);
352         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
353         form_destruir(form);
354
355         return fact;
356 }
357
358 void fact_eliminar(char *s)
359 {
360         WINDOW *win;
361         t_Factura *fact;
362         t_Reg_Factura *nodo;
363         EMUFS_REG_ID id;
364                                                                         
365         win = newwin(LINES-4, COLS-2, 2, 1);
366         box(win, 0, 0);
367         
368         fact = fact_form_buscar(win, &id, &id);
369
370         if (fact == NULL) {
371                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
372                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
373                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
374                 wrefresh(win);
375                 getch();
376                 werase(win);
377                 wrefresh(win);
378                 delwin(win);
379                 return;
380         }
381
382         nodo = lst_facturas->primero;
383         while (nodo) {
384                 if (nodo->numero == fact->numero) {
385                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
386                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
387                         eliminar_nodo_factura(lst_facturas, nodo);
388                         break;
389                 }
390                 nodo = nodo->sig;
391         }
392
393         free(fact->items);
394         free(fact);
395 }
396
397 void fact_modificar(char *s)
398 {
399         WINDOW *win, *items, *nota, *subnota;
400         t_Form *form, *form_nota;
401         t_Factura *fact;
402         EMUFS_REG_SIZE size;
403         EMUFS_REG_ID id, id_texto;
404         int error;
405         char tmp_str[10];
406         void *entrada;
407
408                                                                         
409         win = newwin(LINES-4, COLS-2, 2, 1);
410         box(win, 0, 0);
411         
412         fact = fact_form_buscar(win, &id, &id_texto);
413
414         if (fact == NULL) {
415                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
416                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
417                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
418                 wrefresh(win);
419                 getch();
420                 werase(win);
421                 wrefresh(win);
422                 delwin(win);
423                 return;
424         }
425
426         mvwaddch(win, 10, 0, ACS_LTEE);
427         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
428         mvwaddch(win, 10, COLS-3, ACS_RTEE);
429         wrefresh(win);
430
431         items = derwin(win, LINES-20, COLS-4, 15, 1);
432         nota = derwin(win, 9, COLS-62, 1, 56);
433         subnota = derwin(nota, 7, COLS-64, 1, 1);
434         box(nota, 0, 0);
435         mvwaddstr(nota, 0, 1, "Nota :");
436         wrefresh(nota);
437         wrefresh(items);
438
439         form = form_crear(win);
440         sprintf(tmp_str, "%08d", fact->numero);
441         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
442         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
443         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
444         sprintf(tmp_str, "%08d", fact->numero_remito);
445         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
446         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
447         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
448         sprintf(tmp_str, "%02.2f", fact->procdoi);
449         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
450         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
451         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
452
453         mvwaddstr(subnota, 0, 0, fact->nota);
454         wrefresh(subnota);
455         form_ejecutar(form, 1,1);
456
457         form_nota = form_crear(subnota);
458         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
459         form_ejecutar(form_nota, 0, 0);
460
461         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
462         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
463         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
464         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
465         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
466         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
467         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
468         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
469         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
470
471         form_destruir(form);
472
473         free(fact->nota);
474         fact->nota = form_obtener_valor_char(form_nota, "");
475
476         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
477         if (entrada) {
478                 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
479                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
480                 free(entrada);
481         }
482
483         free(fact->items);
484         free(fact);
485
486         werase(win);
487         wrefresh(win);
488         delwin(subnota);
489         delwin(nota);
490         delwin(items);
491         delwin(win);
492 }
493
494 void fact_agregar(char *s)
495 {
496         WINDOW *win, *items, *nota, *subnota;
497         t_Form *form, *form_nota;
498         t_Item *its = NULL;
499         t_Factura fact;
500         EMUFS_REG_SIZE size;
501         EMUFS_REG_ID id, id_texto;
502         int y_actual, cant, error;
503         char *entrada;
504
505         win = newwin(LINES-4, COLS-2, 2, 1);
506         box(win, 0, 0);
507         mvwaddch(win, 10, 0, ACS_LTEE);
508         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
509         mvwaddch(win, 10, COLS-3, ACS_RTEE);
510         wrefresh(win);
511
512         items = derwin(win, LINES-20, COLS-4, 15, 1);
513         nota = derwin(win, 9, COLS-62, 1, 56);
514         subnota = derwin(nota, 7, COLS-64, 1, 1);
515         box(nota, 0, 0);
516         mvwaddstr(nota, 0, 1, "Nota :");
517         wrefresh(nota);
518         wrefresh(items);
519
520         form = form_crear(win);
521         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
522         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
523         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
524         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
525         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
526         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
527         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
528         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
529         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
530
531         form_ejecutar(form, 1,1);
532
533         form_nota = form_crear(subnota);
534         form_agregar_widget(form_nota, INPUT, "", 255, "");
535         form_ejecutar(form_nota, 0, 0);
536
537         /* XXX No destruir form_nota hasta el final !!!!! XXX */
538
539         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
540         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
541         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
542         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
543         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
544         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
545         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
546         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
547         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
548
549         form_destruir(form);
550
551         form = form_crear(win);
552         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
553         form_agregar_widget(form, INPUT, "CV", 8, "");
554         form_agregar_widget(form, INPUT, "PVU", 8, "");
555         y_actual = 0;
556         scrollok(items, 1);
557         mvwaddstr(win, 15, 2, "Numero");
558         mvwaddstr(win, 15, 11, "CV");
559         mvwaddstr(win, 15, 21, "PVU");
560         cant = 0;
561         do {
562                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
563                 form_set_valor(form, "CV", "");
564                 form_set_valor(form, "PVU", "");
565                 form_ejecutar(form, 2, 11);
566
567                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
568
569                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
570                         y_actual++;
571                         if (y_actual > LINES-22) {
572                                 y_actual = LINES-22;
573                                 wscrl(items, 1);
574                         }
575                         mvwaddstr(items, y_actual, 1, entrada);
576                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
577                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
578                         wrefresh(items);
579                         /* Agrego el Item */
580                         cant++;
581                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
582                         if (its != NULL) {
583                                 its[cant-1].numero = atoi(entrada);
584                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
585                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
586                         }
587                 }
588         } while (entrada[0] != '*');
589
590         if (lst_facturas->fp->tipo == T3) {
591                 if (cant != 10) {
592                         /* TODO Limitar en la GUI en lugar de truncar! */
593                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
594                         if (its == NULL) {
595                                 cant = 0;
596                         } else {
597                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
598                                 cant = 10;
599                         }
600                 }
601         }
602         fact.items = its;
603         fact.cant_items = cant;
604         fact.nota = form_obtener_valor_char(form_nota, "");
605
606         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
607         if (entrada) {
608                 error = 0;
609                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
610                 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
611                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
612                 free(entrada);
613         }
614                                                                         
615         if (its) free(its);
616         form_destruir(form);
617         form_destruir(form_nota);
618
619         werase(win);
620         wrefresh(win);
621         delwin(items);
622         delwin(subnota);
623         delwin(nota);
624         delwin(win);
625 }
626
627 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
628 {
629         char *tmp=NULL;
630         int i[12];
631
632         switch (lst->fp->tipo) {
633                 case T1:
634                 case T2:
635                         /* Calculo el tamaño que voy a necesitar */
636                         i[0] = sizeof(int);
637                         i[1] = sizeof(float);
638                         i[2] = sizeof(int);
639                         i[3] = sizeof(int);
640                         i[4] = sizeof(EMUFS_BLOCK_ID);
641                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
642                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
643                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
644                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
645                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
646                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
647                         i[11] = sizeof(t_Item)*f->cant_items;
648                         (*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];
649                         tmp = (char *)malloc(*size);
650                         if (tmp == NULL) return NULL;
651                         memset(tmp, 0, *size);
652                         /* Ahora copio la info */
653                         memcpy(tmp, &f->numero, i[0]);
654                         memcpy(tmp+i[0], &f->procdoi, i[1]);
655                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
656                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
657                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
658                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
659                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
660                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
661                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
662                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
663                         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]);
664                         if (i[11] != 0)
665                                 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]);
666                 break;
667                 case T3:
668                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
669                         tmp = (char *)malloc(*size);
670                         if (tmp == NULL) return NULL;
671                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
672                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
673         }
674         return tmp;
675 }
676
677 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
678 {
679         char *ini, *fin;
680         int dummy;
681
682         switch (lst->fp->tipo) {
683                 case T1:
684                 case T2:
685                         ini = (char *)src;
686                         /* Copio los campos numericos, muy facil:-) */
687                         memcpy(&dst->numero, ini, sizeof(int));
688                         ini+=sizeof(int);
689                         
690                         memcpy(&dst->procdoi, ini, sizeof(float));
691                         ini+=sizeof(float);
692
693                         memcpy(&dst->numero_remito, ini, sizeof(int));
694                         ini+=sizeof(int);
695                         
696                         memcpy(&dst->cant_items, ini, sizeof(int));
697                         ini+=sizeof(int);
698                         
699                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
700                         ini+=sizeof(EMUFS_BLOCK_ID);
701
702                         /* Ahora empieza el juego */
703                         /* Los \0 son los delimitadores de campo! */
704                         fin = ini;
705                         while (*fin!='\0') fin++;
706                         memcpy(dst->emision, ini, fin-ini+1);
707                         
708                         ini = fin+1;
709                         fin = ini;
710                         while (*fin!='\0') fin++;
711                         memcpy(dst->vencimiento, ini, fin-ini+1);
712                         
713                         ini = fin+1;
714                         fin = ini;
715                         while (*fin!='\0') fin++;
716                         memcpy(dst->estado, ini, fin-ini+1);
717                         
718                         ini = fin+1;
719                         fin = ini;
720                         while (*fin!='\0') fin++;
721                         memcpy(dst->fp, ini, fin-ini+1);
722                         
723                         ini = fin+1;
724                         fin = ini;
725                         while (*fin!='\0') fin++;
726                         memcpy(dst->ctacte, ini, fin-ini+1);
727                         
728                         ini = fin+1;
729                         fin = ini;
730                         while (*fin!='\0') fin++;
731                         memcpy(dst->cheque, ini, fin-ini+1);
732
733                         if (dst->cant_items > 0) {
734                                 /* Ahora tengo que cargar los items */
735                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
736
737                                 ini = fin+1;
738                                 fin = (char *)src+size;
739                                 memcpy(dst->items, ini, fin-ini);
740
741                                 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
742                         } else {
743                                 dst->items = NULL;
744                         }
745
746                         return 0;
747                 case T3:
748                         /* Se que tengo 10 items */
749                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
750                         size = lst->fp->tam_reg;
751                         memcpy(dst, src, size-sizeof(t_Item)*10);
752                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
753                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
754         }
755         return 0;
756 }
757