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