]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
e728bec135512bf7afa7a415237c31c4da7bd301
[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, int tipo_nota, int bloque_nota)
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 #ifdef DEBUG
209                 fprintf(stderr, "Facturas : Tipo=%d  Tam Bloque = %d\n", tipo-1, tam_bloque);
210                 fprintf(stderr, "Notas : Tipo=%d  Tam Bloque = %d\n", tipo_nota-1, bloque_nota);
211 #endif
212                 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
213                 for (node=inicio ; node ; node = node->next) {
214                         if (node->type == XML_ELEMENT_NODE) {
215                                 if (strcmp(node->name, "FACTURA") == 0) {
216                                         t_Factura fact;
217                                         void *save;
218                                         memset(&fact, 0, sizeof(t_Factura));
219                                         prop = xml_get_prop(node, "NroFac");
220                                         fact.numero = atoi(prop); xmlFree(prop);
221                                         prop = xml_get_prop(node, "PorcDoI");
222                                         fact.procdoi = atof(prop); xmlFree(prop);
223                                         prop = xml_get_prop(node, "NroRemito");
224                                         fact.numero_remito = atoi(prop); xmlFree(prop);
225                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
226                                         fact.emision[8] = '\0';
227                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
228                                         fact.vencimiento[8] = '\0';
229                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
230                                         fact.estado[2] = '\0';
231                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
232                                         fact.fp[2] = '\0';
233                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
234                                         fact.ctacte[5] = '\0';
235                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
236                                         fact.cheque[18] = '\0';
237
238                                         fact.nota = leer_nota(node);
239                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
240
241                                         error = 0;
242                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
243                                         fact.reg_nota = id;
244                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
245                                         if (save != NULL) {
246                                                 error = 0;
247                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
248                                                 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
249                                                 if (fact.items) free(fact.items);
250                                                 if (fact.nota) free(fact.nota);
251                                                 free(save);
252                                         }
253                                 }
254                         }
255                 }
256                 xmlFreeDoc(document);
257                 xmlCleanupParser();
258         } else {
259                 PERR("Voy a recuperar desde un archivo");
260                 tmp->fp = emufs_abrir("facturas");
261                 if (tmp->fp == NULL) {
262                         PERR("No se pudo cargar archivo de facturas!");
263                         free(tmp);
264                         lst_facturas = NULL;
265                         return NULL;
266                 }
267                 tmp->fp_texto = emufs_abrir("notas");
268                 if (tmp->fp_texto == NULL) {
269                         PERR("No se pudo cargar archivo de notas!");
270                         emufs_destruir(tmp->fp);
271                         free(tmp);
272                         lst_facturas = NULL;
273                         return NULL;
274                 }
275
276                 /* Ahora trato de recuperar la info */
277                 indices = emufs_idx_get(tmp->fp, &indices_cant);
278                 for(i=0; i<indices_cant; i++) {
279                         t_Factura art;
280                         void *save;
281                         /* Leo el registro */
282                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
283                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
284                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
285                                 free(save);
286                         }
287                 }
288                 free(indices);
289         }
290
291         PERR("Facturas todo Ok");
292         return lst_facturas;
293 }
294
295 int fact_liberar(t_LstFacturas *l)
296 {
297         t_Reg_Factura *del;
298         if (l == NULL) l = lst_facturas;
299         if (l == NULL) return 1;
300
301         emufs_destruir(l->fp);
302         emufs_destruir(l->fp_texto);
303         while (l->primero) {
304                 del = l->primero;
305                 l->primero = l->primero->sig;
306                 free(del);
307         }
308         free(l);
309
310         lst_facturas = NULL;
311         return 0;
312 }
313
314 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
315 {
316         t_Factura *fact;
317         t_Reg_Factura *reg;
318         char *leo;
319         EMUFS_REG_SIZE size;
320         int error;
321         if (lst == NULL) return NULL;
322
323         fact = NULL;
324         reg = lst->primero;
325         while (reg) {
326                 if (reg->numero == numero) {
327                         size = 0;
328                         error = 0;
329                         leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
330                         if (leo != NULL) {
331                                 fact = (t_Factura *)malloc(sizeof(t_Factura));
332                                 if (fact == NULL) {
333                                         free(leo);
334                                         return NULL;
335                                 }
336                                 procesar_leer_factura(fact, leo, size, lst);
337                                 (*id) = reg->num_reg;
338                                 (*id_texto) = reg->texto_reg;
339                                 free(leo);
340                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
341                         }
342                         break;
343                 }
344                 reg = reg->sig;
345         }
346         return fact;
347 }
348
349 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
350 {
351         t_Form *form;
352         t_Factura *fact;
353
354         form = form_crear(win);
355         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
356         form_ejecutar(form, 1,1);
357         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
358         form_destruir(form);
359
360         return fact;
361 }
362
363 void fact_eliminar(char *s)
364 {
365         WINDOW *win;
366         t_Factura *fact;
367         t_Reg_Factura *nodo;
368         EMUFS_REG_ID id;
369                                                                         
370         win = newwin(LINES-4, COLS-2, 2, 1);
371         box(win, 0, 0);
372         
373         fact = fact_form_buscar(win, &id, &id);
374
375         if (fact == NULL) {
376                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
377                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
378                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
379                 wrefresh(win);
380                 getch();
381                 werase(win);
382                 wrefresh(win);
383                 delwin(win);
384                 return;
385         }
386
387         nodo = lst_facturas->primero;
388         while (nodo) {
389                 if (nodo->numero == fact->numero) {
390                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
391                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
392                         eliminar_nodo_factura(lst_facturas, nodo);
393                         break;
394                 }
395                 nodo = nodo->sig;
396         }
397
398         free(fact->items);
399         free(fact);
400 }
401
402 void fact_modificar(char *s)
403 {
404         WINDOW *win, *items, *nota, *subnota;
405         t_Form *form, *form_nota;
406         t_Factura *fact;
407         EMUFS_REG_SIZE size;
408         EMUFS_REG_ID id, id_texto;
409         int error;
410         char tmp_str[10];
411         void *entrada;
412
413                                                                         
414         win = newwin(LINES-4, COLS-2, 2, 1);
415         box(win, 0, 0);
416         
417         fact = fact_form_buscar(win, &id, &id_texto);
418
419         if (fact == NULL) {
420                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
421                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
422                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
423                 wrefresh(win);
424                 getch();
425                 werase(win);
426                 wrefresh(win);
427                 delwin(win);
428                 return;
429         }
430
431         mvwaddch(win, 10, 0, ACS_LTEE);
432         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
433         mvwaddch(win, 10, COLS-3, ACS_RTEE);
434         wrefresh(win);
435
436         items = derwin(win, LINES-20, COLS-4, 15, 1);
437         nota = derwin(win, 9, COLS-62, 1, 56);
438         subnota = derwin(nota, 7, COLS-64, 1, 1);
439         box(nota, 0, 0);
440         mvwaddstr(nota, 0, 1, "Nota :");
441         wrefresh(nota);
442         wrefresh(items);
443
444         form = form_crear(win);
445         sprintf(tmp_str, "%08d", fact->numero);
446         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
447         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
448         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
449         sprintf(tmp_str, "%08d", fact->numero_remito);
450         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
451         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
452         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
453         sprintf(tmp_str, "%02.2f", fact->procdoi);
454         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
455         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
456         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
457
458         mvwaddstr(subnota, 0, 0, fact->nota);
459         wrefresh(subnota);
460         form_ejecutar(form, 1,1);
461
462         form_nota = form_crear(subnota);
463         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
464         form_ejecutar(form_nota, 0, 0);
465
466         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
467         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
468         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
469         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
470         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
471         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
472         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
473         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
474         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
475
476         form_destruir(form);
477
478         free(fact->nota);
479         fact->nota = form_obtener_valor_char(form_nota, "");
480
481         form_destruir(form_nota);
482
483         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
484         if (entrada) {
485                 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
486                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
487                 free(entrada);
488         }
489
490         free(fact->items);
491         free(fact);
492
493         werase(win);
494         wrefresh(win);
495         delwin(subnota);
496         delwin(nota);
497         delwin(items);
498         delwin(win);
499 }
500
501 void fact_agregar(char *s)
502 {
503         WINDOW *win, *items, *nota, *subnota;
504         t_Form *form, *form_nota;
505         t_Item *its = NULL;
506         t_Factura fact;
507         EMUFS_REG_SIZE size;
508         EMUFS_REG_ID id, id_texto;
509         int y_actual, cant, error;
510         char *entrada;
511
512         win = newwin(LINES-4, COLS-2, 2, 1);
513         box(win, 0, 0);
514         mvwaddch(win, 10, 0, ACS_LTEE);
515         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
516         mvwaddch(win, 10, COLS-3, ACS_RTEE);
517         wrefresh(win);
518
519         items = derwin(win, LINES-20, COLS-4, 15, 1);
520         nota = derwin(win, 9, COLS-62, 1, 56);
521         subnota = derwin(nota, 7, COLS-64, 1, 1);
522         box(nota, 0, 0);
523         mvwaddstr(nota, 0, 1, "Nota :");
524         wrefresh(nota);
525         wrefresh(items);
526
527         form = form_crear(win);
528         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
529         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
530         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
531         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
532         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
533         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
534         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
535         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
536         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
537
538         form_ejecutar(form, 1,1);
539
540         form_nota = form_crear(subnota);
541         form_agregar_widget(form_nota, INPUT, "", 255, "");
542         form_ejecutar(form_nota, 0, 0);
543
544         /* XXX No destruir form_nota hasta el final !!!!! XXX */
545
546         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
547         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
548         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
549         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
550         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
551         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
552         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
553         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
554         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
555
556         form_destruir(form);
557
558         form = form_crear(win);
559         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
560         form_agregar_widget(form, INPUT, "CV", 8, "");
561         form_agregar_widget(form, INPUT, "PVU", 8, "");
562         y_actual = 0;
563         scrollok(items, 1);
564         mvwaddstr(win, 15, 2, "Numero");
565         mvwaddstr(win, 15, 11, "CV");
566         mvwaddstr(win, 15, 21, "PVU");
567         cant = 0;
568         do {
569                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
570                 form_set_valor(form, "CV", "");
571                 form_set_valor(form, "PVU", "");
572                 form_ejecutar(form, 2, 11);
573
574                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
575
576                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
577                         y_actual++;
578                         if (y_actual > LINES-22) {
579                                 y_actual = LINES-22;
580                                 wscrl(items, 1);
581                         }
582                         mvwaddstr(items, y_actual, 1, entrada);
583                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
584                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
585                         wrefresh(items);
586                         /* Agrego el Item */
587                         cant++;
588                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
589                         if (its != NULL) {
590                                 its[cant-1].numero = atoi(entrada);
591                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
592                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
593                         }
594                 }
595         } while (entrada[0] != '*');
596
597         if (lst_facturas->fp->tipo == T3) {
598                 if (cant != 10) {
599                         /* TODO Limitar en la GUI en lugar de truncar! */
600                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
601                         if (its == NULL) {
602                                 cant = 0;
603                         } else {
604                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
605                                 cant = 10;
606                         }
607                 }
608         }
609         fact.items = its;
610         fact.cant_items = cant;
611         fact.nota = form_obtener_valor_char(form_nota, "");
612
613         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
614         if (entrada) {
615                 error = 0;
616                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
617                 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
618                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
619                 free(entrada);
620         }
621                                                                         
622         if (its) free(its);
623         form_destruir(form);
624         form_destruir(form_nota);
625
626         werase(win);
627         wrefresh(win);
628         delwin(items);
629         delwin(subnota);
630         delwin(nota);
631         delwin(win);
632 }
633
634 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
635 {
636         char *tmp=NULL;
637         int i[12];
638
639         switch (lst->fp->tipo) {
640                 case T1:
641                 case T2:
642                         /* Calculo el tamaño que voy a necesitar */
643                         i[0] = sizeof(int);
644                         i[1] = sizeof(float);
645                         i[2] = sizeof(int);
646                         i[3] = sizeof(int);
647                         i[4] = sizeof(EMUFS_BLOCK_ID);
648                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
649                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
650                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
651                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
652                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
653                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
654                         i[11] = sizeof(t_Item)*f->cant_items;
655                         (*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];
656                         tmp = (char *)malloc(*size);
657                         if (tmp == NULL) return NULL;
658                         memset(tmp, 0, *size);
659                         /* Ahora copio la info */
660                         memcpy(tmp, &f->numero, i[0]);
661                         memcpy(tmp+i[0], &f->procdoi, i[1]);
662                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
663                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
664                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
665                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
666                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
667                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
668                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
669                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
670                         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]);
671                         if (i[11] != 0)
672                                 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]);
673                 break;
674                 case T3:
675                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
676                         tmp = (char *)malloc(*size);
677                         if (tmp == NULL) return NULL;
678                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
679                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
680         }
681         return tmp;
682 }
683
684 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
685 {
686         char *ini, *fin;
687         int dummy;
688
689         if (lst == NULL) {
690                 PERR("Puntero a lista NULO");
691                 return 0;
692         }
693         if (lst->fp == NULL) {
694                 PERR("EMUFS No creado!");
695                 return 0;
696         }
697
698         switch (lst->fp->tipo) {
699                 case T1:
700                 case T2:
701                         ini = (char *)src;
702                         /* Copio los campos numericos, muy facil:-) */
703                         memcpy(&dst->numero, ini, sizeof(int));
704                         ini+=sizeof(int);
705                         
706                         memcpy(&dst->procdoi, ini, sizeof(float));
707                         ini+=sizeof(float);
708
709                         memcpy(&dst->numero_remito, ini, sizeof(int));
710                         ini+=sizeof(int);
711                         
712                         memcpy(&dst->cant_items, ini, sizeof(int));
713                         ini+=sizeof(int);
714                         
715                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
716                         ini+=sizeof(EMUFS_BLOCK_ID);
717
718                         /* Ahora empieza el juego */
719                         /* Los \0 son los delimitadores de campo! */
720                         fin = ini;
721                         while (*fin!='\0') fin++;
722                         memcpy(dst->emision, ini, fin-ini+1);
723                         
724                         ini = fin+1;
725                         fin = ini;
726                         while (*fin!='\0') fin++;
727                         memcpy(dst->vencimiento, ini, fin-ini+1);
728                         
729                         ini = fin+1;
730                         fin = ini;
731                         while (*fin!='\0') fin++;
732                         memcpy(dst->estado, ini, fin-ini+1);
733                         
734                         ini = fin+1;
735                         fin = ini;
736                         while (*fin!='\0') fin++;
737                         memcpy(dst->fp, ini, fin-ini+1);
738                         
739                         ini = fin+1;
740                         fin = ini;
741                         while (*fin!='\0') fin++;
742                         memcpy(dst->ctacte, ini, fin-ini+1);
743                         
744                         ini = fin+1;
745                         fin = ini;
746                         while (*fin!='\0') fin++;
747                         memcpy(dst->cheque, ini, fin-ini+1);
748
749                         if (dst->cant_items > 0) {
750                                 /* Ahora tengo que cargar los items */
751                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
752
753                                 ini = fin+1;
754                                 fin = (char *)src+size;
755                                 memcpy(dst->items, ini, fin-ini);
756
757                         } else {
758                                 dst->items = NULL;
759                         }
760                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
761                         return 0;
762                 break;
763                 case T3:
764                         /* Se que tengo 10 items */
765                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
766                         size = lst->fp->tam_reg;
767                         memcpy(dst, src, size-sizeof(t_Item)*10);
768                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
769                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
770                         dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
771         }
772         return 0;
773 }
774
775 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
776 {
777         EMUFS *nuevo, *old;
778         EMUFS_REG_ID *indices, id;
779         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
780         t_Factura fact;
781         t_LstFacturas *lst_nueva;
782         int error;
783         char *save;
784
785         PERR("==== EMPIEZO ====\n");
786         old = lst_facturas->fp;
787
788         /* Creo el nuevo file */
789         PERR("Creo el archivo\n");
790         if (tipo == T3) {
791                 /* Me aseguro de que entren n items completos */
792                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
793         }
794         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
795         if (nuevo == NULL) {
796                 PERR("ARCHIVO NUEVO NO CREADO");
797                 return;
798         }
799
800         /* Creo la nueva lista */
801         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
802         lst_nueva->primero = NULL;
803         lst_nueva->fp = nuevo;
804         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
805
806         /* Leo los indices del archivo viejo */
807         PERR("Obtengo Indices\n");
808         indices = emufs_idx_get(old, &indices_total);
809         if (indices == NULL) {
810                 fact_liberar(lst_nueva);
811                 return;
812         }
813
814         PERR("Proceso datos");
815         for(i=0; i<indices_total; i++) {
816                 error = 0;
817                 PERR("Leo");
818                 save = old->leer_registro(old, indices[i], &size, &error);
819                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
820                         PERR("Procese Leer Ok");
821                         free(save);
822                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
823
824                         /* Actualizo el ID de la nota asociada */
825                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
826                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
827                         PERR("Procese Grabar Ok");
828                         if (save) {
829                                 error = 0;
830                                 PERR("Grabo el Registro");
831                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
832                                 PERR("Lo agrego");
833                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
834                                 PERR("Libero Memoria");
835                                 free(save);
836                                 if (fact.items) free(fact.items);
837                                 if (fact.nota) free(fact.nota);
838                                 PERR("Termine con este Item");
839                         }
840                 }
841         }
842
843         free(indices);
844
845         PERR("Libero lo viejo\n");
846         fact_liberar(lst_facturas);
847
848         PERR("Ahora tengo lo nuevo\n");
849         lst_facturas = lst_nueva;
850
851         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
852         free(lst_facturas->fp->nombre);
853         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
854         strcpy(lst_facturas->fp->nombre, "facturas");
855         
856         /* Tambien actualizo el nombre para notas */
857         free(lst_facturas->fp_texto->nombre);
858         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
859         strcpy(lst_facturas->fp_texto->nombre, "notas");
860         
861         /* Muevo los archivos! */
862         /* TODO : Poner en otro lugar mas generico! */
863         PERR("Renombre!!\n");
864         rename("emufs_tmp.dat", "facturas.dat");
865         rename("emufs_tmp.idx", "facturas.idx");
866         rename("emufs_tmp.fsc", "facturas.fsc");
867         rename("emufs_tmp.did", "facturas.did");
868         rename("nota_tmp.dat", "notas.dat");
869         rename("nota_tmp.idx", "notas.idx");
870         rename("nota_tmp.fsc", "notas.fsc");
871         rename("nota_tmp.did", "notas.did");
872         PERR("==== TERMINE ====\n");
873 }
874
875 int fact_exportar_xml(const char *filename)
876 {
877         int j;
878         t_Reg_Factura *nodo;
879         t_Factura *fact;
880         EMUFS_REG_ID id, id1;
881         FILE *fp;
882
883         if (lst_facturas->primero == NULL) return 0;
884
885         nodo = lst_facturas->primero;
886
887         if (!(fp = fopen(filename, "wt"))) return 0;
888         
889         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
890         fprintf(fp, "<FACTURAS>\n");
891         while (nodo) {
892                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
893                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
894                 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
895                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
896                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
897                 fprintf(fp, "FP=\"%s\" ", fact->fp);
898                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
899                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
900                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
901                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
902                 fprintf(fp, ">\n");
903                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
904                 for(j=0; j<fact->cant_items; j++) {
905                         if (fact->items[j].numero != 0)
906                                 fprintf(fp, "\t\t<ITEMVENTA NroArtículo=\"%08d\" CV=\"%s\" PVU=\"%s\" />\n", fact->items[j].numero, fact->items[j].cv, fact->items[j].pvu);
907                 }
908                 fprintf(fp, "\t</FACTURA>\n");
909                 nodo = nodo->sig;
910         }
911         fprintf(fp, "\t</FACTURAS>\n");
912
913         fclose(fp);
914         return 1;
915 }
916