]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* agrego doc
[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-1) == 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", T2, 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, 0, 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         form_destruir(form_nota);
478
479         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
480         if (entrada) {
481                 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
482                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
483                 free(entrada);
484         }
485
486         free(fact->items);
487         free(fact);
488
489         werase(win);
490         wrefresh(win);
491         delwin(subnota);
492         delwin(nota);
493         delwin(items);
494         delwin(win);
495 }
496
497 void fact_agregar(char *s)
498 {
499         WINDOW *win, *items, *nota, *subnota;
500         t_Form *form, *form_nota;
501         t_Item *its = NULL;
502         t_Factura fact;
503         EMUFS_REG_SIZE size;
504         EMUFS_REG_ID id, id_texto;
505         int y_actual, cant, error;
506         char *entrada;
507
508         win = newwin(LINES-4, COLS-2, 2, 1);
509         box(win, 0, 0);
510         mvwaddch(win, 10, 0, ACS_LTEE);
511         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
512         mvwaddch(win, 10, COLS-3, ACS_RTEE);
513         wrefresh(win);
514
515         items = derwin(win, LINES-20, COLS-4, 15, 1);
516         nota = derwin(win, 9, COLS-62, 1, 56);
517         subnota = derwin(nota, 7, COLS-64, 1, 1);
518         box(nota, 0, 0);
519         mvwaddstr(nota, 0, 1, "Nota :");
520         wrefresh(nota);
521         wrefresh(items);
522
523         form = form_crear(win);
524         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
525         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
526         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
527         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
528         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
529         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
530         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
531         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
532         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
533
534         form_ejecutar(form, 1,1);
535
536         form_nota = form_crear(subnota);
537         form_agregar_widget(form_nota, INPUT, "", 255, "");
538         form_ejecutar(form_nota, 0, 0);
539
540         /* XXX No destruir form_nota hasta el final !!!!! XXX */
541
542         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
543         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
544         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
545         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
546         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
547         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
548         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
549         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
550         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
551
552         form_destruir(form);
553
554         form = form_crear(win);
555         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
556         form_agregar_widget(form, INPUT, "CV", 8, "");
557         form_agregar_widget(form, INPUT, "PVU", 8, "");
558         y_actual = 0;
559         scrollok(items, 1);
560         mvwaddstr(win, 15, 2, "Numero");
561         mvwaddstr(win, 15, 11, "CV");
562         mvwaddstr(win, 15, 21, "PVU");
563         cant = 0;
564         do {
565                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
566                 form_set_valor(form, "CV", "");
567                 form_set_valor(form, "PVU", "");
568                 form_ejecutar(form, 2, 11);
569
570                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
571
572                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
573                         y_actual++;
574                         if (y_actual > LINES-22) {
575                                 y_actual = LINES-22;
576                                 wscrl(items, 1);
577                         }
578                         mvwaddstr(items, y_actual, 1, entrada);
579                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
580                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
581                         wrefresh(items);
582                         /* Agrego el Item */
583                         cant++;
584                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
585                         if (its != NULL) {
586                                 its[cant-1].numero = atoi(entrada);
587                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
588                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
589                         }
590                 }
591         } while (entrada[0] != '*');
592
593         if (lst_facturas->fp->tipo == T3) {
594                 if (cant != 10) {
595                         /* TODO Limitar en la GUI en lugar de truncar! */
596                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
597                         if (its == NULL) {
598                                 cant = 0;
599                         } else {
600                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
601                                 cant = 10;
602                         }
603                 }
604         }
605         fact.items = its;
606         fact.cant_items = cant;
607         fact.nota = form_obtener_valor_char(form_nota, "");
608
609         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
610         if (entrada) {
611                 error = 0;
612                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
613                 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
614                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
615                 free(entrada);
616         }
617                                                                         
618         if (its) free(its);
619         form_destruir(form);
620         form_destruir(form_nota);
621
622         werase(win);
623         wrefresh(win);
624         delwin(items);
625         delwin(subnota);
626         delwin(nota);
627         delwin(win);
628 }
629
630 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
631 {
632         char *tmp=NULL;
633         int i[12];
634
635         switch (lst->fp->tipo) {
636                 case T1:
637                 case T2:
638                         /* Calculo el tamaño que voy a necesitar */
639                         i[0] = sizeof(int);
640                         i[1] = sizeof(float);
641                         i[2] = sizeof(int);
642                         i[3] = sizeof(int);
643                         i[4] = sizeof(EMUFS_BLOCK_ID);
644                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
645                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
646                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
647                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
648                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
649                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
650                         i[11] = sizeof(t_Item)*f->cant_items;
651                         (*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];
652                         tmp = (char *)malloc(*size);
653                         if (tmp == NULL) return NULL;
654                         memset(tmp, 0, *size);
655                         /* Ahora copio la info */
656                         memcpy(tmp, &f->numero, i[0]);
657                         memcpy(tmp+i[0], &f->procdoi, i[1]);
658                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
659                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
660                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
661                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
662                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
663                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
664                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
665                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
666                         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]);
667                         if (i[11] != 0)
668                                 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]);
669                 break;
670                 case T3:
671                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
672                         tmp = (char *)malloc(*size);
673                         if (tmp == NULL) return NULL;
674                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
675                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
676         }
677         return tmp;
678 }
679
680 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
681 {
682         char *ini, *fin;
683         int dummy;
684
685         if (lst == NULL) {
686                 PERR("Puntero a lista NULO");
687                 return 0;
688         }
689         if (lst->fp == NULL) {
690                 PERR("EMUFS No creado!");
691                 return 0;
692         }
693
694         switch (lst->fp->tipo) {
695                 case T1:
696                 case T2:
697                         ini = (char *)src;
698                         /* Copio los campos numericos, muy facil:-) */
699                         memcpy(&dst->numero, ini, sizeof(int));
700                         ini+=sizeof(int);
701                         
702                         memcpy(&dst->procdoi, ini, sizeof(float));
703                         ini+=sizeof(float);
704
705                         memcpy(&dst->numero_remito, ini, sizeof(int));
706                         ini+=sizeof(int);
707                         
708                         memcpy(&dst->cant_items, ini, sizeof(int));
709                         ini+=sizeof(int);
710                         
711                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
712                         ini+=sizeof(EMUFS_BLOCK_ID);
713
714                         /* Ahora empieza el juego */
715                         /* Los \0 son los delimitadores de campo! */
716                         fin = ini;
717                         while (*fin!='\0') fin++;
718                         memcpy(dst->emision, ini, fin-ini+1);
719                         
720                         ini = fin+1;
721                         fin = ini;
722                         while (*fin!='\0') fin++;
723                         memcpy(dst->vencimiento, ini, fin-ini+1);
724                         
725                         ini = fin+1;
726                         fin = ini;
727                         while (*fin!='\0') fin++;
728                         memcpy(dst->estado, ini, fin-ini+1);
729                         
730                         ini = fin+1;
731                         fin = ini;
732                         while (*fin!='\0') fin++;
733                         memcpy(dst->fp, ini, fin-ini+1);
734                         
735                         ini = fin+1;
736                         fin = ini;
737                         while (*fin!='\0') fin++;
738                         memcpy(dst->ctacte, ini, fin-ini+1);
739                         
740                         ini = fin+1;
741                         fin = ini;
742                         while (*fin!='\0') fin++;
743                         memcpy(dst->cheque, ini, fin-ini+1);
744
745                         if (dst->cant_items > 0) {
746                                 /* Ahora tengo que cargar los items */
747                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
748
749                                 ini = fin+1;
750                                 fin = (char *)src+size;
751                                 memcpy(dst->items, ini, fin-ini);
752
753                         } else {
754                                 dst->items = NULL;
755                         }
756                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
757                         return 0;
758                 break;
759                 case T3:
760                         /* Se que tengo 10 items */
761                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
762                         size = lst->fp->tam_reg;
763                         memcpy(dst, src, size-sizeof(t_Item)*10);
764                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
765                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
766                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
767         }
768         return 0;
769 }
770
771 void fact_reformatear(int tipo, int tam_bloque, int tam_reg)
772 {
773         EMUFS *nuevo, *old;
774         EMUFS_REG_ID *indices, id;
775         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
776         t_Factura fact;
777         t_LstFacturas *lst_nueva;
778         int error;
779         char *save;
780
781         PERR("==== EMPIEZO ====\n");
782         old = lst_facturas->fp;
783
784         /* Creo el nuevo file */
785         PERR("Creo el archivo\n");
786         if (tipo == T3) {
787                 /* Me aseguro de que entren n items completos */
788                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
789         }
790         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
791         if (nuevo == NULL) {
792                 PERR("ARCHIVO NUEVO NO CREADO");
793                 return;
794         }
795
796         /* Creo la nueva lista */
797         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
798         lst_nueva->primero = NULL;
799         lst_nueva->fp = nuevo;
800
801         /* Leo los indices del archivo viejo */
802         PERR("Obtengo Indices\n");
803         indices = emufs_idx_get(old, &indices_total);
804         if (indices == NULL) {
805                 fact_liberar(lst_nueva);
806                 return;
807         }
808
809         PERR("Proceso datos");
810         for(i=0; i<indices_total; i++) {
811                 error = 0;
812                 PERR("Leo");
813                 save = old->leer_registro(old, indices[i], &size, &error);
814                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
815                         PERR("Procese Leer Ok");
816                         free(save);
817                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
818                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
819                         PERR("Procese Grabar Ok");
820                         if (save) {
821                                 error = 0;
822                                 PERR("Grabo el Registro");
823                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
824                                 PERR("Lo agrego");
825                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
826                                 PERR("Libero Memoria");
827                                 free(save);
828                                 if (fact.items) free(fact.items);
829                                 if (fact.nota) free(fact.nota);
830                                 PERR("Termine con este Item");
831                         }
832                 }
833         }
834
835         free(indices);
836
837         PERR("Libero lo viejo\n");
838         fact_liberar(lst_facturas);
839
840         PERR("Ahora tengo lo nuevo\n");
841         lst_facturas = lst_nueva;
842
843         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
844         free(lst_facturas->fp->nombre);
845         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
846         strcpy(lst_facturas->fp->nombre, "facturas");
847         
848         /* Muevo los archivos! */
849         /* TODO : Poner en otro lugar mas generico! */
850         PERR("Renombre!!\n");
851         rename("emufs_tmp.dat", "facturas.dat");
852         rename("emufs_tmp.idx", "facturas.idx");
853         rename("emufs_tmp.fsc", "facturas.fsc");
854         rename("emufs_tmp.did", "facturas.did");
855         PERR("==== TERMINE ====\n");
856 }
857