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