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