]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* ADDED : TreeView para ver en pantalla el arbol B para debug personal
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4 #include "common.h"
5 #include "menu.h"
6 #include "lista.h"
7
8 static t_LstFacturas *lst_facturas;
9
10 /* Procesa una factura antes de enviarla al archivo para guardarla */
11 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
12 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
13
14 /* Manejo de la lista en memoria */
15 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
16 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
17 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
18
19 /* Funciones para carga desde el XML */
20 static t_Item *leer_items(xmlNode *, int *cant, int size);
21 static char *leer_nota(xmlNode *, int max);
22
23 t_LstFacturas *fact_get_lst()
24 {
25         return lst_facturas;
26 }
27
28 /* Hack! ... Si no existe propiedad retorna "" */
29 char *xml_get_prop(xmlNode *node, char *nombre)
30 {
31         char *s;
32         s = xmlGetProp(node, nombre);
33         if (s == NULL) {
34                 s = malloc(1);
35                 s[0] = '\0';
36                 return s;
37         }
38         return s;
39 }
40
41 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
42 {
43         if (nodo == NULL) return 0;
44         if (nodo->ant == NULL) {
45                 /* Me piden borrar el primer nodo */
46                 if (nodo->sig) {
47                         nodo->sig->ant = NULL;
48                 }
49                 lst->primero = nodo->sig;
50         } else {
51                 if (nodo->sig) {
52                         nodo->sig->ant = nodo->ant;
53                 }
54                 nodo->ant->sig = nodo->sig;
55         }
56         free(nodo);
57         return 1;
58 }
59
60 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
61 {
62         t_Reg_Factura *tmp;
63         if (reg == EMUFS_NOT_FOUND) return NULL;
64         tmp = malloc(sizeof(t_Reg_Factura));
65         if (tmp == NULL) return NULL;
66         tmp->sig = tmp->ant = NULL;
67         tmp->num_reg = reg;
68         tmp->texto_reg = texto;
69         tmp->numero = num;
70
71         return tmp;
72 }
73
74 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
75 {
76         if (nodo == NULL) return 0;
77
78         if (lst->primero) {
79                 lst->primero->ant = nodo;
80                 nodo->sig = lst->primero;
81                 lst->primero = nodo;
82         } else {
83                 lst->primero = nodo;
84         }
85         return 1;
86 }
87
88 t_Item *leer_items(xmlNode *node, int *cant, int size)
89 {
90         t_Item *tmp;
91         int count;
92         char *prop;
93         if (size == -1) {
94                 tmp = NULL;
95                 count = 0;
96                 node = node->children;
97                 while (node) {
98                         if (node->type == XML_ELEMENT_NODE) {
99                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
100                                         count++;
101                                         tmp = realloc(tmp, sizeof(t_Item)*count);
102                                         memset(&tmp[count-1], 0, sizeof(t_Item));
103                                         prop = xml_get_prop(node, "NroArtículo");
104                                         tmp[count-1].numero = atoi(prop);
105                                         xmlFree(prop);
106                                         strncpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
107                                         tmp[count-1].cv[8] = '\0';
108                                         strncpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
109                                         tmp[count-1].pvu[8] = '\0';
110                                 }
111                         }
112                         node = node->next;
113                 }
114                 *cant = count;
115         } else {
116                 (*cant) = size;
117                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
118                 memset(tmp, 0, sizeof(t_Item)*size);
119
120                 count = 0;
121                 node = node->children;
122                 while (node) {
123                         if (node->type == XML_ELEMENT_NODE) {
124                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
125                                         memset(&tmp[count], 0, sizeof(t_Item));
126                                         prop = xml_get_prop(node, "NroArtículo");
127                                         tmp[count].numero = atoi(prop);
128                                         xmlFree(prop);
129                                         strncpy(tmp[count].cv, prop = xml_get_prop(node, "CV"), 8); xmlFree(prop);
130                                         tmp[count].cv[8] = '\0';
131                                         strncpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU"), 8); xmlFree(prop);
132                                         tmp[count].pvu[8] = '\0';
133                                         count++;
134                                 }
135                         }
136                         if (count == 10) break; /* No me entran mas items! */
137                         node = node->next;
138                 }
139         }
140         return tmp;
141 }
142
143 char *leer_nota(xmlNode *node, int max)
144 {
145         xmlNode *tmp;
146         char *salida;
147         tmp = node->children;
148         while (tmp) {
149                 if (tmp->type == XML_ELEMENT_NODE) {
150                         if (strcmp(tmp->name, "NOTA") == 0) {
151                                 break;
152                         }
153                 }
154                 tmp = tmp->next;
155         }
156
157         if (tmp) {
158                 if (max == -1) {
159                         salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
160                         strcpy(salida, XML_GET_CONTENT(tmp->children));
161                 } else {
162                         salida = (char *)malloc(sizeof(char)*max);
163                         strncpy(salida, XML_GET_CONTENT(tmp->children), max-1);
164                         salida[max-1] = '\0';
165                 }
166         } else {
167                 if (max == -1) {
168                         salida = (char *)malloc(sizeof(char));
169                         salida[0] = '\0';
170                 } else {
171                         salida = (char *)malloc(sizeof(char)*max);
172                         memset(salida, 0, max);
173                 }
174         }
175         return salida;
176 }
177
178
179 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque, int tipo_nota, int bloque_nota)
180 {
181         xmlDocPtr document;
182         xmlNode *node, *inicio;
183         int error = 0, cant_items;
184         char *prop;
185         EMUFS_REG_SIZE size;
186         t_LstFacturas *tmp;
187         t_Factura *factura;
188         EMUFS_REG_ID id;
189         
190         lst_facturas = NULL;
191
192         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
193         if (tmp == NULL) return NULL;
194         lst_facturas = tmp;
195         tmp->primero = NULL;
196
197         if (filename != NULL) {
198                 PERR("Voy a cargar de un XML");
199                 document = xmlReadFile(filename, "ISO-8859-1",0);
200                 if (document == NULL) {
201                         PERR("Error al leer documento!!");
202                         free(tmp);
203                         lst_facturas = NULL;
204                         return NULL;
205                 }
206
207                 inicio = NULL;
208                 node = xmlDocGetRootElement(document);
209                 /* Busco el TAG principal "ARTICULOS" */
210                 while (node) {
211                         if (node->type == XML_ELEMENT_NODE) {
212                                 if (strcmp(node->name, "FACTURAS") == 0) {
213                                         inicio = node->children;
214                                         break;
215                                 }
216                         }
217                         node = node->next;
218                 }
219
220                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
221                  * y los items al final del registro.
222                  */
223                 if ((tipo-1) == T3) {
224                         /* Limito a 10 items en el caso de registro constante! */
225                         cant_items = 10;
226                 } else {
227                         cant_items = 0;
228                 }
229                 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
230                 emufs_agregar_indice(tmp->fp, "emision", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(factura, emision), 512);
231                 emufs_agregar_indice(tmp->fp, "numero", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
232                 tmp->fp_texto = emufs_crear("notas", tipo_nota-1, bloque_nota, 100);
233                 for (node=inicio ; node ; node = node->next) {
234                         if (node->type == XML_ELEMENT_NODE) {
235                                 if (strcmp(node->name, "FACTURA") == 0) {
236                                         t_Factura fact;
237                                         void *save;
238                                         memset(&fact, 0, sizeof(t_Factura));
239                                         prop = xml_get_prop(node, "NroFac");
240                                         PERR(prop);
241                                         fact.numero = atoi(prop); xmlFree(prop);
242                                         prop = xml_get_prop(node, "PorcDoI");
243                                         fact.procdoi = atof(prop); xmlFree(prop);
244                                         prop = xml_get_prop(node, "NroRemito");
245                                         fact.numero_remito = atoi(prop); xmlFree(prop);
246                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
247                                         fact.emision[8] = '\0';
248                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
249                                         fact.vencimiento[8] = '\0';
250                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
251                                         fact.estado[2] = '\0';
252                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
253                                         fact.fp[2] = '\0';
254                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
255                                         fact.ctacte[5] = '\0';
256                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
257                                         fact.cheque[18] = '\0';
258
259                                         fact.nota = leer_nota(node, (((tipo-1)==T3)?100:-1));
260                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
261
262                                         error = 0;
263                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, ((tipo-1)==T3)?100:(strlen(fact.nota)+1), &error);
264                                         fact.reg_nota = id;
265                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
266                                         if (save != NULL) {
267                                                 error = 0;
268                                                 tmp->fp->grabar_registro(tmp->fp, save, size, &error);
269                                                 if (fact.items) {
270                                                         free(fact.items);
271                                                         fact.items = NULL;
272                                                 }
273                                                 if (fact.nota) {
274                                                         free(fact.nota);
275                                                         fact.nota = NULL;
276                                                 }
277                                                 free(save);
278                                         }
279                                 }
280                         }
281                 }
282                 xmlFreeDoc(document);
283                 xmlCleanupParser();
284         } else {
285 #ifdef NO_SE_USA_MAS
286                 /* TODO RECUPERAR INDICES DESDE EL ARCHIVO */
287                 PERR("Voy a recuperar desde un archivo");
288                 tmp->fp = emufs_abrir("facturas");
289                 if (tmp->fp == NULL) {
290                         PERR("No se pudo cargar archivo de facturas!");
291                         free(tmp);
292                         lst_facturas = NULL;
293                         return NULL;
294                 }
295                 tmp->fp_texto = emufs_abrir("notas");
296                 if (tmp->fp_texto == NULL) {
297                         PERR("No se pudo cargar archivo de notas!");
298                         emufs_destruir(tmp->fp);
299                         free(tmp);
300                         lst_facturas = NULL;
301                         return NULL;
302                 }
303
304                 /* Ahora trato de recuperar la info */
305                 indices = emufs_idx_get(tmp->fp, &indices_cant);
306                 for(i=0; i<indices_cant; i++) {
307                         t_Factura art;
308                         void *save;
309                         /* Leo el registro */
310                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
311                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
312                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
313                                 free(save);
314                         }
315                 }
316                 free(indices);
317 #endif
318         }
319
320         PERR("Facturas todo Ok");
321         return lst_facturas;
322 }
323
324 int fact_liberar(t_LstFacturas *l)
325 {
326         t_Reg_Factura *del;
327         if (l == NULL) l = lst_facturas;
328         if (l == NULL) return 1;
329
330         emufs_destruir(l->fp);
331         emufs_destruir(l->fp_texto);
332         while (l->primero) {
333                 del = l->primero;
334                 l->primero = l->primero->sig;
335                 free(del);
336         }
337         free(l);
338
339         lst_facturas = NULL;
340         return 0;
341 }
342
343 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
344 {
345         t_Factura *fact;
346         char *leo;
347         EMUFS_REG_SIZE size;
348         int error;
349         CLAVE k;
350         if (lst == NULL) return NULL;
351
352         fact = NULL;
353         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char*)&numero);
354         error = 0;
355         leo = lst->fp->leer_registro(lst->fp, k, &size, &error);
356         if (leo != NULL) {
357                 fact = (t_Factura *)malloc(sizeof(t_Factura));
358                 if (fact == NULL) {
359                         free(leo);
360                         return NULL;
361                 }
362                 procesar_leer_factura(fact, leo, size, lst);
363                 /* y esto ??!
364                 (*id) = reg->num_reg;
365                 (*id_texto) = reg->texto_reg;
366                 */
367                 free(leo);
368                 k.i_clave = fact->reg_nota;
369                 error = 0;
370                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
371         }
372         
373         return fact;
374 }
375
376 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
377 {
378         t_Form *form;
379         t_Factura *fact;
380
381         form = form_crear(win);
382         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
383         form_ejecutar(form, 1,1);
384         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
385         form_destruir(form);
386
387         return fact;
388 }
389
390 void fact_eliminar(char *s)
391 {
392         WINDOW *win;
393         t_Factura *fact;
394         EMUFS_REG_ID id;
395         CLAVE k;
396                                                                         
397         win = newwin(LINES-4, COLS-2, 2, 1);
398         box(win, 0, 0);
399         
400         fact = fact_form_buscar(win, &id, &id);
401
402         if (fact == NULL) {
403                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
404                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
405                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
406                 wrefresh(win);
407                 getch();
408                 werase(win);
409                 wrefresh(win);
410                 delwin(win);
411                 return;
412         }
413
414         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
415         lst_facturas->fp->borrar_registro(lst_facturas->fp, k);
416         k.i_clave = fact->reg_nota;
417         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k);
418
419         if (fact->items) free(fact->items);
420         if (fact->nota) free(fact->nota);
421         free(fact);
422 }
423
424 void fact_modificar(char *s)
425 {
426         WINDOW *win, *items, *nota, *subnota;
427         t_Form *form, *form_nota;
428         t_Reg_Factura *nodo;
429         t_Factura *fact;
430         EMUFS_REG_SIZE size;
431         EMUFS_REG_ID id, id_texto;
432         int error;
433         char tmp_str[10];
434         void *entrada;
435
436         win = newwin(LINES-4, COLS-2, 2, 1);
437         box(win, 0, 0);
438         
439         if (s == NULL) {
440                 fact = fact_form_buscar(win, &id, &id_texto);
441         } else {
442                 fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
443         }
444
445         if (fact == NULL) {
446                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
447                 mvwaddstr(win, 2, 1, "No existe factura con ese código. Abortando!");
448                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
449                 wrefresh(win);
450                 getch();
451                 werase(win);
452                 wrefresh(win);
453                 delwin(win);
454                 return;
455         }
456
457         mvwaddch(win, 10, 0, ACS_LTEE);
458         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
459         mvwaddch(win, 10, COLS-3, ACS_RTEE);
460         wrefresh(win);
461
462         items = derwin(win, LINES-20, COLS-4, 15, 1);
463         nota = derwin(win, 9, COLS-62, 1, 56);
464         subnota = derwin(nota, 7, COLS-64, 1, 1);
465         box(nota, 0, 0);
466         mvwaddstr(nota, 0, 1, "Nota :");
467         wrefresh(nota);
468         wrefresh(items);
469
470         form = form_crear(win);
471         sprintf(tmp_str, "%08d", fact->numero);
472         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
473         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
474         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
475         sprintf(tmp_str, "%08d", fact->numero_remito);
476         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
477         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
478         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
479         sprintf(tmp_str, "%02.2f", fact->procdoi);
480         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
481         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
482         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
483
484         mvwaddstr(subnota, 0, 0, fact->nota);
485         wrefresh(subnota);
486         form_ejecutar(form, 1,1);
487
488         form_nota = form_crear(subnota);
489         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
490         form_ejecutar(form_nota, 0, 0);
491
492         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
493         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
494         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
495         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
496         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
497         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
498         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
499         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
500         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
501
502         form_destruir(form);
503
504         free(fact->nota);
505         fact->nota = form_obtener_valor_char(form_nota, "");
506
507         form_destruir(form_nota);
508
509         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
510         if (entrada) {
511                 CLAVE k;
512                 k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
513                 lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error);
514                 k.i_clave = id_texto;
515                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error);
516                 free(entrada);
517         }
518
519         free(fact->items);
520         free(fact);
521
522         werase(win);
523         wrefresh(win);
524         delwin(subnota);
525         delwin(nota);
526         delwin(items);
527         delwin(win);
528 }
529
530 void fact_agregar(char *s)
531 {
532         WINDOW *win, *items, *nota, *subnota;
533         t_Form *form, *form_nota;
534         t_Item *its = NULL;
535         t_Factura fact;
536         EMUFS_REG_SIZE size;
537         EMUFS_REG_ID id, id_texto;
538         int y_actual, cant, error;
539         char *entrada;
540
541         win = newwin(LINES-4, COLS-2, 2, 1);
542         box(win, 0, 0);
543         mvwaddch(win, 10, 0, ACS_LTEE);
544         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
545         mvwaddch(win, 10, COLS-3, ACS_RTEE);
546         wrefresh(win);
547
548         items = derwin(win, LINES-20, COLS-4, 15, 1);
549         nota = derwin(win, 9, COLS-62, 1, 56);
550         subnota = derwin(nota, 7, COLS-64, 1, 1);
551         box(nota, 0, 0);
552         mvwaddstr(nota, 0, 1, "Nota :");
553         wrefresh(nota);
554         wrefresh(items);
555
556         form = form_crear(win);
557         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
558         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
559         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
560         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
561         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
562         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
563         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
564         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
565         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
566
567         form_ejecutar(form, 1,1);
568
569         form_nota = form_crear(subnota);
570         form_agregar_widget(form_nota, INPUT, "", 255, "");
571         form_ejecutar(form_nota, 0, 0);
572
573         /* XXX No destruir form_nota hasta el final !!!!! XXX */
574
575         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
576         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
577         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
578         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
579         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
580         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
581         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
582         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
583         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
584
585         form_destruir(form);
586
587         form = form_crear(win);
588         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
589         form_agregar_widget(form, INPUT, "CV", 8, "");
590         form_agregar_widget(form, INPUT, "PVU", 8, "");
591         y_actual = 0;
592         scrollok(items, 1);
593         mvwaddstr(win, 15, 2, "Numero");
594         mvwaddstr(win, 15, 11, "CV");
595         mvwaddstr(win, 15, 21, "PVU");
596         cant = 0;
597         do {
598                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
599                 form_set_valor(form, "CV", "");
600                 form_set_valor(form, "PVU", "");
601                 form_ejecutar(form, 2, 11);
602
603                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
604
605                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
606                         y_actual++;
607                         if (y_actual > LINES-22) {
608                                 y_actual = LINES-22;
609                                 wscrl(items, 1);
610                         }
611                         mvwaddstr(items, y_actual, 1, entrada);
612                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
613                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
614                         wrefresh(items);
615                         /* Agrego el Item */
616                         cant++;
617                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
618                         if (its != NULL) {
619                                 its[cant-1].numero = atoi(entrada);
620                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
621                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
622                         }
623                 }
624         } while (entrada[0] != '*');
625
626         if (lst_facturas->fp->tipo == T3) {
627                 if (cant != 10) {
628                         /* TODO Limitar en la GUI en lugar de truncar! */
629                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
630                         if (its == NULL) {
631                                 cant = 0;
632                         } else {
633                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
634                                 cant = 10;
635                         }
636                 }
637         }
638         fact.items = its;
639         fact.cant_items = cant;
640         fact.nota = form_obtener_valor_char(form_nota, "");
641
642         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
643         fact.reg_nota = id_texto;
644
645         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
646         if (entrada) {
647                 error = 0;
648                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
649                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
650                 free(entrada);
651         }
652                                                                         
653         if (its) free(its);
654         form_destruir(form);
655         form_destruir(form_nota);
656
657         werase(win);
658         wrefresh(win);
659         delwin(items);
660         delwin(subnota);
661         delwin(nota);
662         delwin(win);
663 }
664
665 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
666 {
667         char *tmp=NULL;
668         int i[12];
669
670         switch (lst->fp->tipo) {
671                 case T1:
672                 case T2:
673                         /* Calculo el tamaño que voy a necesitar */
674                         i[0] = sizeof(int);
675                         i[1] = sizeof(float);
676                         i[2] = sizeof(int);
677                         i[3] = sizeof(int);
678                         i[4] = sizeof(EMUFS_BLOCK_ID);
679                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
680                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
681                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
682                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
683                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
684                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
685                         i[11] = sizeof(t_Item)*f->cant_items;
686                         (*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];
687                         tmp = (char *)malloc(*size);
688                         if (tmp == NULL) return NULL;
689                         memset(tmp, 0, *size);
690                         /* Ahora copio la info */
691                         memcpy(tmp, &f->numero, i[0]);
692                         memcpy(tmp+i[0], &f->procdoi, i[1]);
693                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
694                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
695                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
696                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
697                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
698                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
699                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
700                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
701                         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]);
702                         if (i[11] != 0)
703                                 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]);
704                 break;
705                 case T3:
706                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
707                         tmp = (char *)malloc(*size);
708                         if (tmp == NULL) return NULL;
709                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
710                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
711         }
712         return tmp;
713 }
714
715 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
716 {
717         char *ini, *fin;
718         /*int dummy;*/
719
720         if (lst == NULL) {
721                 PERR("Puntero a lista NULO");
722                 return 0;
723         }
724         if (lst->fp == NULL) {
725                 PERR("EMUFS No creado!");
726                 return 0;
727         }
728
729         switch (lst->fp->tipo) {
730                 case T1:
731                 case T2:
732                         ini = (char *)src;
733                         /* Copio los campos numericos, muy facil:-) */
734                         memcpy(&dst->numero, ini, sizeof(int));
735                         ini+=sizeof(int);
736                         
737                         memcpy(&dst->procdoi, ini, sizeof(float));
738                         ini+=sizeof(float);
739
740                         memcpy(&dst->numero_remito, ini, sizeof(int));
741                         ini+=sizeof(int);
742                         
743                         memcpy(&dst->cant_items, ini, sizeof(int));
744                         ini+=sizeof(int);
745                         
746                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
747                         ini+=sizeof(EMUFS_BLOCK_ID);
748
749                         /* Ahora empieza el juego */
750                         /* Los \0 son los delimitadores de campo! */
751                         fin = ini;
752                         while (*fin!='\0') fin++;
753                         memcpy(dst->emision, ini, fin-ini+1);
754                         
755                         ini = fin+1;
756                         fin = ini;
757                         while (*fin!='\0') fin++;
758                         memcpy(dst->vencimiento, ini, fin-ini+1);
759                         
760                         ini = fin+1;
761                         fin = ini;
762                         while (*fin!='\0') fin++;
763                         memcpy(dst->estado, ini, fin-ini+1);
764                         
765                         ini = fin+1;
766                         fin = ini;
767                         while (*fin!='\0') fin++;
768                         memcpy(dst->fp, ini, fin-ini+1);
769                         
770                         ini = fin+1;
771                         fin = ini;
772                         while (*fin!='\0') fin++;
773                         memcpy(dst->ctacte, ini, fin-ini+1);
774                         
775                         ini = fin+1;
776                         fin = ini;
777                         while (*fin!='\0') fin++;
778                         memcpy(dst->cheque, ini, fin-ini+1);
779
780                         if (dst->cant_items > 0) {
781                                 /* Ahora tengo que cargar los items */
782                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
783
784                                 ini = fin+1;
785                                 fin = (char *)src+size;
786                                 memcpy(dst->items, ini, fin-ini);
787
788                         } else {
789                                 dst->items = NULL;
790                         }
791                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
792                         return 0;
793                 break;
794                 case T3:
795                         /* Se que tengo 10 items */
796                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
797                         size = lst->fp->tam_reg;
798                         memcpy(dst, src, size-sizeof(t_Item)*10);
799                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
800                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
801                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
802         }
803         return 0;
804 }
805
806 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
807 {
808 #ifdef NO_ANDA_AUN
809         EMUFS *nuevo, *old;
810         EMUFS_REG_ID *indices, id;
811         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
812         t_Factura fact;
813         t_LstFacturas *lst_nueva;
814         int error;
815         char *save;
816
817         PERR("==== EMPIEZO ====\n");
818         old = lst_facturas->fp;
819
820         /* Creo el nuevo file */
821         PERR("Creo el archivo\n");
822         if (tipo == T3) {
823                 /* Me aseguro de que entren n items completos */
824                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
825         }
826         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
827         if (nuevo == NULL) {
828                 PERR("ARCHIVO NUEVO NO CREADO");
829                 return;
830         }
831
832         /* Creo la nueva lista */
833         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
834         lst_nueva->primero = NULL;
835         lst_nueva->fp = nuevo;
836         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
837
838         /* Leo los indices del archivo viejo */
839         PERR("Obtengo Indices\n");
840         indices = emufs_idx_get(old, &indices_total);
841         if (indices == NULL) {
842                 fact_liberar(lst_nueva);
843                 return;
844         }
845
846         PERR("Proceso datos");
847         for(i=0; i<indices_total; i++) {
848                 error = 0;
849                 PERR("Leo");
850                 save = old->leer_registro(old, indices[i], &size, &error);
851                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
852                         PERR("Procese Leer Ok");
853                         free(save);
854                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
855
856                         /* Actualizo el ID de la nota asociada */
857                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
858                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
859                         PERR("Procese Grabar Ok");
860                         if (save) {
861                                 error = 0;
862                                 PERR("Grabo el Registro");
863                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
864                                 PERR("Lo agrego");
865                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
866                                 PERR("Libero Memoria");
867                                 free(save);
868                                 if (fact.items) free(fact.items);
869                                 if (fact.nota) free(fact.nota);
870                                 PERR("Termine con este Item");
871                         }
872                 }
873         }
874
875         free(indices);
876
877         PERR("Libero lo viejo\n");
878         fact_liberar(lst_facturas);
879
880         PERR("Ahora tengo lo nuevo\n");
881         lst_facturas = lst_nueva;
882
883         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
884         free(lst_facturas->fp->nombre);
885         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
886         strcpy(lst_facturas->fp->nombre, "facturas");
887         
888         /* Tambien actualizo el nombre para notas */
889         free(lst_facturas->fp_texto->nombre);
890         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
891         strcpy(lst_facturas->fp_texto->nombre, "notas");
892         
893         /* Muevo los archivos! */
894         /* TODO : Poner en otro lugar mas generico! */
895         PERR("Renombre!!\n");
896         rename("emufs_tmp.dat", "facturas.dat");
897         rename("emufs_tmp.idx", "facturas.idx");
898         rename("emufs_tmp.fsc", "facturas.fsc");
899         rename("emufs_tmp.did", "facturas.did");
900         rename("nota_tmp.dat", "notas.dat");
901         rename("nota_tmp.idx", "notas.idx");
902         rename("nota_tmp.fsc", "notas.fsc");
903         rename("nota_tmp.did", "notas.did");
904         PERR("==== TERMINE ====\n");
905 #endif
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
950 char *get_estado(char *s)
951 {
952         if (strcmp(s, "PN")==0) return "Pago Normal";
953         if (strcmp(s, "CD")==0) return "Credito al dia";
954         if (strcmp(s, "CM")==0) return "Credito en mora";
955         if (strcmp(s, "SF")==0) return "Cheque sin fondos";
956         if (strcmp(s, "PM")==0) return "Pagada con Mora";
957         if (strcmp(s, "NC")==0) return "No Cobrada";
958
959         return s;
960 }
961
962 char *get_forma_pago(char *s)
963 {
964         if (strcmp(s, "CO") == 0) return "Contado";
965         if (strcmp(s, "CR") == 0) return "Credito";
966         if (strcmp(s, "CH") == 0) return "Cheque";
967
968         return s;
969 }
970
971 void fact_consultas_codigos(char *s)
972 {
973         EMUFS_REG_ID dummy;
974         int desde_codigo, hasta_codigo;
975         int i;
976         t_Factura *factura;
977         t_Lista *lista;
978         t_Form *form;
979         WINDOW *win, *win1;
980
981         win = newwin(LINES-4, COLS-2, 2, 1);
982         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
983         werase(win);
984         box(win, 0, 0);
985         wrefresh(win);
986         
987         /* El usuario ingresa rango a listar */
988         form = form_crear(win1);
989         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
990         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
991
992         form_ejecutar(form, 2, 2);
993
994         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
995         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
996
997         form_destruir(form);
998         werase(win1);
999         wrefresh(win1);
1000
1001         /* Creo la lista donde mostrar la consulta*/
1002         /* Muestro solo info relevante */
1003         lista = lista_crear(4, win1, COLS-4, LINES-6);
1004
1005         /* Creo las columnas */
1006         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
1007         lista_agregar_columna(lista, DATO_STR, 10, 9);   /* emision    */
1008         lista_agregar_columna(lista, DATO_STR, 20, 19);  /* estado     */
1009         lista_agregar_columna(lista, DATO_STR, 40, 9);   /* fp         */
1010
1011         /* Leo los datos desde el archivo */
1012         for(i=desde_codigo; i<=hasta_codigo; i++) {
1013                 factura = fact_buscar(lst_facturas, i, &dummy, &dummy);
1014                 if (factura != NULL) {
1015                         lista_agregar_fila(lista,
1016                                 factura->numero,
1017                                 factura->emision,
1018                                 get_estado(factura->estado),
1019                                 get_forma_pago(factura->fp)
1020                         );
1021                 }
1022         }
1023
1024         curs_set(0);
1025         lista_ejecutar(lista);
1026         curs_set(1);
1027         
1028         wrefresh(win1);
1029         wrefresh(win);
1030         werase(win1);
1031         werase(win);
1032         wrefresh(win);
1033         delwin(win);
1034 }
1035
1036 void fact_consultas_varias(char *nombre_indice, char *titulo)
1037 {
1038         int i, cant, error;
1039         char *desc, *tmp;
1040         t_Factura factura;
1041         t_Lista *lista;
1042         t_Form *form;
1043         INDICE_DATO *datos;
1044         WINDOW *win, *win1;
1045         CLAVE k;
1046         EMUFS *fs;
1047         EMUFS_REG_SIZE size;
1048
1049         fs = lst_facturas->fp;
1050
1051         win = newwin(LINES-4, COLS-2, 2, 1);
1052         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1053         werase(win);
1054         box(win, 0, 0);
1055         wrefresh(win);
1056         
1057         /* El usuario ingresa rango a listar */
1058         form = form_crear(win1);
1059         form_agregar_widget(form, INPUT, titulo, 50, "");
1060
1061         form_ejecutar(form, 2, 2);
1062
1063         tmp = form_obtener_valor_char(form, titulo);
1064         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1065         strcpy(desc, tmp);
1066
1067         form_destruir(form);
1068         werase(win1);
1069         wrefresh(win1);
1070
1071         /* Creo la lista donde mostrar la consulta*/
1072         /* Muestro solo info relevante */
1073         lista = lista_crear(4, win1, COLS-4, LINES-6);
1074
1075         /* Creo las columnas */
1076         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
1077         lista_agregar_columna(lista, DATO_STR, 10, 9);   /* emision    */
1078         lista_agregar_columna(lista, DATO_STR, 20, 19);  /* estado     */
1079         lista_agregar_columna(lista, DATO_STR, 40, 9);   /* fp         */
1080
1081         /* Leo los datos desde el archivo */
1082         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1083         for(i=0; i<cant; i++) {
1084                 k.i_clave = datos[i].id;
1085                 error = 1;
1086                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1087                 if (tmp != NULL) {
1088                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1089                         lista_agregar_fila(lista,
1090                                                         factura.numero,
1091                                                         factura.emision,
1092                                                         get_estado(factura.estado),
1093                                                         get_forma_pago(factura.fp)
1094                                         );
1095                         free(tmp);
1096                 } else {
1097                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1098                 }
1099         }
1100
1101         curs_set(0);
1102         lista_ejecutar(lista);
1103         curs_set(1);
1104         
1105         wrefresh(win1);
1106         wrefresh(win);
1107         werase(win1);
1108         werase(win);
1109         wrefresh(win);
1110         delwin(win);
1111 }
1112
1113 void fact_consultas(char *s)
1114 {
1115         MENU(mi_menu) {
1116                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1117                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1118                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1119                 MENU_OPCION("Volver", "Volver al menu anterior.")
1120         };
1121         int opt;
1122         
1123         while ((opt = menu_ejecutar(mi_menu, 4, "Consulta de Articulos")) != 3) {
1124                 switch (opt) {
1125                         case 0:
1126                                 fact_consultas_codigos(s);
1127                         break;
1128                         case 1:
1129                                 fact_consultas_varias("emision", "Fecha");
1130                         break;
1131                         case 2:
1132                                 fact_consultas_varias("presentacion", "Presentacion");
1133                 }
1134         }
1135 }
1136