]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
f5bde1d538b357765acd6268fd453001faccaa2a
[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                                         fact.numero = atoi(prop); xmlFree(prop);
241                                         prop = xml_get_prop(node, "PorcDoI");
242                                         fact.procdoi = atof(prop); xmlFree(prop);
243                                         prop = xml_get_prop(node, "NroRemito");
244                                         fact.numero_remito = atoi(prop); xmlFree(prop);
245                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
246                                         fact.emision[8] = '\0';
247                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
248                                         fact.vencimiento[8] = '\0';
249                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
250                                         fact.estado[2] = '\0';
251                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
252                                         fact.fp[2] = '\0';
253                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
254                                         fact.ctacte[5] = '\0';
255                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
256                                         fact.cheque[18] = '\0';
257
258                                         fact.nota = leer_nota(node, (((tipo-1)==T3)?100:-1));
259                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
260
261                                         error = 0;
262                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, ((tipo-1)==T3)?100:(strlen(fact.nota)+1), &error);
263                                         fact.reg_nota = id;
264                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
265                                         if (save != NULL) {
266                                                 error = 0;
267                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
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 #ifdef NO_SE_USA_MAS
279                 /* TODO RECUPERAR INDICES DESDE EL ARCHIVO */
280                 PERR("Voy a recuperar desde un archivo");
281                 tmp->fp = emufs_abrir("facturas");
282                 if (tmp->fp == NULL) {
283                         PERR("No se pudo cargar archivo de facturas!");
284                         free(tmp);
285                         lst_facturas = NULL;
286                         return NULL;
287                 }
288                 tmp->fp_texto = emufs_abrir("notas");
289                 if (tmp->fp_texto == NULL) {
290                         PERR("No se pudo cargar archivo de notas!");
291                         emufs_destruir(tmp->fp);
292                         free(tmp);
293                         lst_facturas = NULL;
294                         return NULL;
295                 }
296
297                 /* Ahora trato de recuperar la info */
298                 indices = emufs_idx_get(tmp->fp, &indices_cant);
299                 for(i=0; i<indices_cant; i++) {
300                         t_Factura art;
301                         void *save;
302                         /* Leo el registro */
303                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
304                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
305                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
306                                 free(save);
307                         }
308                 }
309                 free(indices);
310 #endif
311         }
312
313         PERR("Facturas todo Ok");
314         return lst_facturas;
315 }
316
317 int fact_liberar(t_LstFacturas *l)
318 {
319         t_Reg_Factura *del;
320         if (l == NULL) l = lst_facturas;
321         if (l == NULL) return 1;
322
323         emufs_destruir(l->fp);
324         emufs_destruir(l->fp_texto);
325         while (l->primero) {
326                 del = l->primero;
327                 l->primero = l->primero->sig;
328                 free(del);
329         }
330         free(l);
331
332         lst_facturas = NULL;
333         return 0;
334 }
335
336 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
337 {
338         t_Factura *fact;
339         char *leo;
340         EMUFS_REG_SIZE size;
341         int error;
342         CLAVE k;
343         if (lst == NULL) return NULL;
344
345         fact = NULL;
346         k = emufs_indice_generar_clave_desde_valor(lst->fp->indices, (char*)&numero);
347         leo = lst->fp->leer_registro(lst->fp, k, &size, &error);
348         if (leo != NULL) {
349                 fact = (t_Factura *)malloc(sizeof(t_Factura));
350                 if (fact == NULL) {
351                         free(leo);
352                         return NULL;
353                 }
354                 procesar_leer_factura(fact, leo, size, lst);
355                 /* y esto ??!
356                 (*id) = reg->num_reg;
357                 (*id_texto) = reg->texto_reg;
358                 */
359                 free(leo);
360                 k.i_clave = fact->reg_nota;
361                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, k, &size, &error);
362         }
363         
364         return fact;
365 }
366
367 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
368 {
369         t_Form *form;
370         t_Factura *fact;
371
372         form = form_crear(win);
373         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
374         form_ejecutar(form, 1,1);
375         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
376         form_destruir(form);
377
378         return fact;
379 }
380
381 void fact_eliminar(char *s)
382 {
383         WINDOW *win;
384         t_Factura *fact;
385         EMUFS_REG_ID id;
386         CLAVE k;
387                                                                         
388         win = newwin(LINES-4, COLS-2, 2, 1);
389         box(win, 0, 0);
390         
391         fact = fact_form_buscar(win, &id, &id);
392
393         if (fact == NULL) {
394                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
395                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
396                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
397                 wrefresh(win);
398                 getch();
399                 werase(win);
400                 wrefresh(win);
401                 delwin(win);
402                 return;
403         }
404
405         k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)(&fact->numero));
406         lst_facturas->fp->borrar_registro(lst_facturas->fp, k);
407         k.i_clave = fact->reg_nota;
408         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k);
409
410         free(fact->items);
411         free(fact);
412 }
413
414 void fact_modificar(char *s)
415 {
416         WINDOW *win, *items, *nota, *subnota;
417         t_Form *form, *form_nota;
418         t_Reg_Factura *nodo;
419         t_Factura *fact;
420         EMUFS_REG_SIZE size;
421         EMUFS_REG_ID id, id_texto;
422         int error;
423         char tmp_str[10];
424         void *entrada;
425
426         /* XXX XXX XXX TODO */
427         return;
428         
429         win = newwin(LINES-4, COLS-2, 2, 1);
430         box(win, 0, 0);
431         
432         if (s == NULL) {
433                 fact = fact_form_buscar(win, &id, &id_texto);
434         } else {
435                 id = atoi(s);
436                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id_texto);
437         }
438
439         if (fact == NULL) {
440                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
441                 mvwaddstr(win, 2, 1, "No existe factura con ese código. Abortando!");
442                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
443                 wrefresh(win);
444                 getch();
445                 werase(win);
446                 wrefresh(win);
447                 delwin(win);
448                 return;
449         }
450
451         mvwaddch(win, 10, 0, ACS_LTEE);
452         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
453         mvwaddch(win, 10, COLS-3, ACS_RTEE);
454         wrefresh(win);
455
456         items = derwin(win, LINES-20, COLS-4, 15, 1);
457         nota = derwin(win, 9, COLS-62, 1, 56);
458         subnota = derwin(nota, 7, COLS-64, 1, 1);
459         box(nota, 0, 0);
460         mvwaddstr(nota, 0, 1, "Nota :");
461         wrefresh(nota);
462         wrefresh(items);
463
464         form = form_crear(win);
465         sprintf(tmp_str, "%08d", fact->numero);
466         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
467         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
468         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
469         sprintf(tmp_str, "%08d", fact->numero_remito);
470         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
471         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
472         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
473         sprintf(tmp_str, "%02.2f", fact->procdoi);
474         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
475         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
476         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
477
478         mvwaddstr(subnota, 0, 0, fact->nota);
479         wrefresh(subnota);
480         form_ejecutar(form, 1,1);
481
482         form_nota = form_crear(subnota);
483         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
484         form_ejecutar(form_nota, 0, 0);
485
486         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
487         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
488         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
489         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
490         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
491         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
492         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
493         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
494         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
495
496         form_destruir(form);
497
498         free(fact->nota);
499         fact->nota = form_obtener_valor_char(form_nota, "");
500
501         form_destruir(form_nota);
502
503         entrada = procesar_guardar_factura(fact, lst_facturas, &size);
504         if (entrada) {
505                 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
506                 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
507                 free(entrada);
508         }
509
510         free(fact->items);
511         free(fact);
512
513         werase(win);
514         wrefresh(win);
515         delwin(subnota);
516         delwin(nota);
517         delwin(items);
518         delwin(win);
519 }
520
521 void fact_agregar(char *s)
522 {
523         WINDOW *win, *items, *nota, *subnota;
524         t_Form *form, *form_nota;
525         t_Item *its = NULL;
526         t_Factura fact;
527         EMUFS_REG_SIZE size;
528         EMUFS_REG_ID id, id_texto;
529         int y_actual, cant, error;
530         char *entrada;
531
532         win = newwin(LINES-4, COLS-2, 2, 1);
533         box(win, 0, 0);
534         mvwaddch(win, 10, 0, ACS_LTEE);
535         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
536         mvwaddch(win, 10, COLS-3, ACS_RTEE);
537         wrefresh(win);
538
539         items = derwin(win, LINES-20, COLS-4, 15, 1);
540         nota = derwin(win, 9, COLS-62, 1, 56);
541         subnota = derwin(nota, 7, COLS-64, 1, 1);
542         box(nota, 0, 0);
543         mvwaddstr(nota, 0, 1, "Nota :");
544         wrefresh(nota);
545         wrefresh(items);
546
547         form = form_crear(win);
548         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
549         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
550         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
551         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
552         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
553         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
554         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
555         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
556         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
557
558         form_ejecutar(form, 1,1);
559
560         form_nota = form_crear(subnota);
561         form_agregar_widget(form_nota, INPUT, "", 255, "");
562         form_ejecutar(form_nota, 0, 0);
563
564         /* XXX No destruir form_nota hasta el final !!!!! XXX */
565
566         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
567         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
568         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
569         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
570         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
571         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
572         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
573         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
574         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
575
576         form_destruir(form);
577
578         form = form_crear(win);
579         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
580         form_agregar_widget(form, INPUT, "CV", 8, "");
581         form_agregar_widget(form, INPUT, "PVU", 8, "");
582         y_actual = 0;
583         scrollok(items, 1);
584         mvwaddstr(win, 15, 2, "Numero");
585         mvwaddstr(win, 15, 11, "CV");
586         mvwaddstr(win, 15, 21, "PVU");
587         cant = 0;
588         do {
589                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
590                 form_set_valor(form, "CV", "");
591                 form_set_valor(form, "PVU", "");
592                 form_ejecutar(form, 2, 11);
593
594                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
595
596                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
597                         y_actual++;
598                         if (y_actual > LINES-22) {
599                                 y_actual = LINES-22;
600                                 wscrl(items, 1);
601                         }
602                         mvwaddstr(items, y_actual, 1, entrada);
603                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
604                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
605                         wrefresh(items);
606                         /* Agrego el Item */
607                         cant++;
608                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
609                         if (its != NULL) {
610                                 its[cant-1].numero = atoi(entrada);
611                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
612                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
613                         }
614                 }
615         } while (entrada[0] != '*');
616
617         if (lst_facturas->fp->tipo == T3) {
618                 if (cant != 10) {
619                         /* TODO Limitar en la GUI en lugar de truncar! */
620                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
621                         if (its == NULL) {
622                                 cant = 0;
623                         } else {
624                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
625                                 cant = 10;
626                         }
627                 }
628         }
629         fact.items = its;
630         fact.cant_items = cant;
631         fact.nota = form_obtener_valor_char(form_nota, "");
632
633         id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
634         fact.reg_nota = id_texto;
635
636         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
637         if (entrada) {
638                 error = 0;
639                 lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
640                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
641                 free(entrada);
642         }
643                                                                         
644         if (its) free(its);
645         form_destruir(form);
646         form_destruir(form_nota);
647
648         werase(win);
649         wrefresh(win);
650         delwin(items);
651         delwin(subnota);
652         delwin(nota);
653         delwin(win);
654 }
655
656 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
657 {
658         char *tmp=NULL;
659         int i[12];
660
661         switch (lst->fp->tipo) {
662                 case T1:
663                 case T2:
664                         /* Calculo el tamaño que voy a necesitar */
665                         i[0] = sizeof(int);
666                         i[1] = sizeof(float);
667                         i[2] = sizeof(int);
668                         i[3] = sizeof(int);
669                         i[4] = sizeof(EMUFS_BLOCK_ID);
670                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
671                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
672                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
673                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
674                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
675                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
676                         i[11] = sizeof(t_Item)*f->cant_items;
677                         (*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];
678                         tmp = (char *)malloc(*size);
679                         if (tmp == NULL) return NULL;
680                         memset(tmp, 0, *size);
681                         /* Ahora copio la info */
682                         memcpy(tmp, &f->numero, i[0]);
683                         memcpy(tmp+i[0], &f->procdoi, i[1]);
684                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
685                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
686                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
687                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
688                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
689                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
690                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
691                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
692                         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]);
693                         if (i[11] != 0)
694                                 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]);
695                 break;
696                 case T3:
697                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
698                         tmp = (char *)malloc(*size);
699                         if (tmp == NULL) return NULL;
700                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
701                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
702         }
703         return tmp;
704 }
705
706 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
707 {
708         char *ini, *fin;
709         /*int dummy;*/
710
711         if (lst == NULL) {
712                 PERR("Puntero a lista NULO");
713                 return 0;
714         }
715         if (lst->fp == NULL) {
716                 PERR("EMUFS No creado!");
717                 return 0;
718         }
719
720         switch (lst->fp->tipo) {
721                 case T1:
722                 case T2:
723                         ini = (char *)src;
724                         /* Copio los campos numericos, muy facil:-) */
725                         memcpy(&dst->numero, ini, sizeof(int));
726                         ini+=sizeof(int);
727                         
728                         memcpy(&dst->procdoi, ini, sizeof(float));
729                         ini+=sizeof(float);
730
731                         memcpy(&dst->numero_remito, ini, sizeof(int));
732                         ini+=sizeof(int);
733                         
734                         memcpy(&dst->cant_items, ini, sizeof(int));
735                         ini+=sizeof(int);
736                         
737                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
738                         ini+=sizeof(EMUFS_BLOCK_ID);
739
740                         /* Ahora empieza el juego */
741                         /* Los \0 son los delimitadores de campo! */
742                         fin = ini;
743                         while (*fin!='\0') fin++;
744                         memcpy(dst->emision, ini, fin-ini+1);
745                         
746                         ini = fin+1;
747                         fin = ini;
748                         while (*fin!='\0') fin++;
749                         memcpy(dst->vencimiento, ini, fin-ini+1);
750                         
751                         ini = fin+1;
752                         fin = ini;
753                         while (*fin!='\0') fin++;
754                         memcpy(dst->estado, ini, fin-ini+1);
755                         
756                         ini = fin+1;
757                         fin = ini;
758                         while (*fin!='\0') fin++;
759                         memcpy(dst->fp, ini, fin-ini+1);
760                         
761                         ini = fin+1;
762                         fin = ini;
763                         while (*fin!='\0') fin++;
764                         memcpy(dst->ctacte, ini, fin-ini+1);
765                         
766                         ini = fin+1;
767                         fin = ini;
768                         while (*fin!='\0') fin++;
769                         memcpy(dst->cheque, ini, fin-ini+1);
770
771                         if (dst->cant_items > 0) {
772                                 /* Ahora tengo que cargar los items */
773                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
774
775                                 ini = fin+1;
776                                 fin = (char *)src+size;
777                                 memcpy(dst->items, ini, fin-ini);
778
779                         } else {
780                                 dst->items = NULL;
781                         }
782                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
783                         return 0;
784                 break;
785                 case T3:
786                         /* Se que tengo 10 items */
787                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
788                         size = lst->fp->tam_reg;
789                         memcpy(dst, src, size-sizeof(t_Item)*10);
790                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
791                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
792                         /*dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);*/
793         }
794         return 0;
795 }
796
797 void fact_reformatear(int tipo, int tam_bloque, int tam_reg, int nota_tipo, int nota_tam_bloque, int nota_tam_registro)
798 {
799 #ifdef NO_ANDA_AUN
800         EMUFS *nuevo, *old;
801         EMUFS_REG_ID *indices, id;
802         EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
803         t_Factura fact;
804         t_LstFacturas *lst_nueva;
805         int error;
806         char *save;
807
808         PERR("==== EMPIEZO ====\n");
809         old = lst_facturas->fp;
810
811         /* Creo el nuevo file */
812         PERR("Creo el archivo\n");
813         if (tipo == T3) {
814                 /* Me aseguro de que entren n items completos */
815                 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
816         }
817         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
818         if (nuevo == NULL) {
819                 PERR("ARCHIVO NUEVO NO CREADO");
820                 return;
821         }
822
823         /* Creo la nueva lista */
824         lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
825         lst_nueva->primero = NULL;
826         lst_nueva->fp = nuevo;
827         lst_nueva->fp_texto = emufs_crear("nota_tmp", nota_tipo, nota_tam_bloque, nota_tam_registro);
828
829         /* Leo los indices del archivo viejo */
830         PERR("Obtengo Indices\n");
831         indices = emufs_idx_get(old, &indices_total);
832         if (indices == NULL) {
833                 fact_liberar(lst_nueva);
834                 return;
835         }
836
837         PERR("Proceso datos");
838         for(i=0; i<indices_total; i++) {
839                 error = 0;
840                 PERR("Leo");
841                 save = old->leer_registro(old, indices[i], &size, &error);
842                 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
843                         PERR("Procese Leer Ok");
844                         free(save);
845                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
846
847                         /* Actualizo el ID de la nota asociada */
848                         fact.reg_nota = lst_nueva->fp_texto->grabar_registro(lst_nueva->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
849                         save = procesar_guardar_factura(&fact, lst_nueva, &size);
850                         PERR("Procese Grabar Ok");
851                         if (save) {
852                                 error = 0;
853                                 PERR("Grabo el Registro");
854                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
855                                 PERR("Lo agrego");
856                                 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
857                                 PERR("Libero Memoria");
858                                 free(save);
859                                 if (fact.items) free(fact.items);
860                                 if (fact.nota) free(fact.nota);
861                                 PERR("Termine con este Item");
862                         }
863                 }
864         }
865
866         free(indices);
867
868         PERR("Libero lo viejo\n");
869         fact_liberar(lst_facturas);
870
871         PERR("Ahora tengo lo nuevo\n");
872         lst_facturas = lst_nueva;
873
874         /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
875         free(lst_facturas->fp->nombre);
876         lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
877         strcpy(lst_facturas->fp->nombre, "facturas");
878         
879         /* Tambien actualizo el nombre para notas */
880         free(lst_facturas->fp_texto->nombre);
881         lst_facturas->fp_texto->nombre = (char *)malloc(sizeof(char)*(strlen("notas")+1));
882         strcpy(lst_facturas->fp_texto->nombre, "notas");
883         
884         /* Muevo los archivos! */
885         /* TODO : Poner en otro lugar mas generico! */
886         PERR("Renombre!!\n");
887         rename("emufs_tmp.dat", "facturas.dat");
888         rename("emufs_tmp.idx", "facturas.idx");
889         rename("emufs_tmp.fsc", "facturas.fsc");
890         rename("emufs_tmp.did", "facturas.did");
891         rename("nota_tmp.dat", "notas.dat");
892         rename("nota_tmp.idx", "notas.idx");
893         rename("nota_tmp.fsc", "notas.fsc");
894         rename("nota_tmp.did", "notas.did");
895         PERR("==== TERMINE ====\n");
896 #endif
897 }
898
899 int fact_exportar_xml(const char *filename)
900 {
901         int j;
902         t_Reg_Factura *nodo;
903         t_Factura *fact;
904         EMUFS_REG_ID id, id1;
905         FILE *fp;
906
907         if (lst_facturas->primero == NULL) return 0;
908
909         nodo = lst_facturas->primero;
910
911         if (!(fp = fopen(filename, "wt"))) return 0;
912         
913         fprintf(fp, "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n");
914         fprintf(fp, "<FACTURAS>\n");
915         while (nodo) {
916                 fact = fact_buscar(lst_facturas, nodo->numero, &id, &id1);
917                 fprintf(fp, "\t<FACTURA NroFac=\"%08d\" ", nodo->numero);
918                 fprintf(fp, "FechaEmisión=\"%s\" ", fact->emision);
919                 fprintf(fp, "FechaVto=\"%s\" ", fact->vencimiento);
920                 fprintf(fp, "NroRemito=\"%08d\" ", fact->numero_remito);
921                 fprintf(fp, "FP=\"%s\" ", fact->fp);
922                 fprintf(fp, "Estado=\"%s\" ", fact->estado);
923                 fprintf(fp, "NroCheque=\"%s\" ", fact->cheque);
924                 fprintf(fp, "PorcDoI=\"%.2f\" ", fact->procdoi);
925                 fprintf(fp, "NroCtaCte=\"%s\" ", fact->ctacte);
926                 fprintf(fp, ">\n");
927                 fprintf(fp, "\t\t<NOTA>%s</NOTA>\n", fact->nota);
928                 for(j=0; j<fact->cant_items; j++) {
929                         if (fact->items[j].numero != 0)
930                                 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);
931                 }
932                 fprintf(fp, "\t</FACTURA>\n");
933                 nodo = nodo->sig;
934         }
935         fprintf(fp, "\t</FACTURAS>\n");
936
937         fclose(fp);
938         return 1;
939 }
940
941 void fact_consultas_codigos(char *s)
942 {
943         EMUFS_REG_ID dummy;
944         int desde_codigo, hasta_codigo;
945         int i;
946         t_Factura *factura;
947         t_Lista *lista;
948         t_Form *form;
949         WINDOW *win, *win1;
950
951         win = newwin(LINES-4, COLS-2, 2, 1);
952         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
953         werase(win);
954         box(win, 0, 0);
955         wrefresh(win);
956         
957         /* El usuario ingresa rango a listar */
958         form = form_crear(win1);
959         form_agregar_widget(form, INPUT, "Desde Codigo", 8, "0");
960         form_agregar_widget(form, INPUT, "Hasta Codigo", 8, "99999999");
961
962         form_ejecutar(form, 2, 2);
963
964         desde_codigo = form_obtener_valor_int(form, "Desde Codigo");
965         hasta_codigo = form_obtener_valor_int(form, "Hasta Codigo");
966
967         form_destruir(form);
968         werase(win1);
969         wrefresh(win1);
970
971         /* Creo la lista donde mostrar la consulta*/
972         /* Muestro solo info relevante */
973         lista = lista_crear(4, win1, COLS-4, LINES-6);
974
975         /* Creo las columnas */
976         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
977         lista_agregar_columna(lista, DATO_STR, 10, 9);   /* emision    */
978         lista_agregar_columna(lista, DATO_STR, 20, 3);   /* estado     */
979         lista_agregar_columna(lista, DATO_STR, 25, 3);   /* fp         */
980
981         /* Leo los datos desde el archivo */
982         for(i=desde_codigo; i<=hasta_codigo; i++) {
983                 factura = fact_buscar(lst_facturas, i, &dummy, &dummy);
984                 if (factura != NULL) {
985                         lista_agregar_fila(lista,
986                                 factura->numero,
987                                 factura->emision,
988                                 factura->estado,
989                                 factura->fp
990                         );
991                 }
992         }
993
994         curs_set(0);
995         lista_ejecutar(lista);
996         curs_set(1);
997         
998         wrefresh(win1);
999         wrefresh(win);
1000         werase(win1);
1001         werase(win);
1002         wrefresh(win);
1003         delwin(win);
1004 }
1005
1006 void fact_consultas_varias(char *nombre_indice, char *titulo)
1007 {
1008         int i, cant, error;
1009         char *desc, *tmp;
1010         t_Factura factura;
1011         t_Lista *lista;
1012         t_Form *form;
1013         INDICE_DATO *datos;
1014         WINDOW *win, *win1;
1015         CLAVE k;
1016         EMUFS *fs;
1017         EMUFS_REG_SIZE size;
1018
1019         fs = lst_facturas->fp;
1020
1021         win = newwin(LINES-4, COLS-2, 2, 1);
1022         win1 = derwin(win, LINES-6, COLS-4, 1, 1);
1023         werase(win);
1024         box(win, 0, 0);
1025         wrefresh(win);
1026         
1027         /* El usuario ingresa rango a listar */
1028         form = form_crear(win1);
1029         form_agregar_widget(form, INPUT, titulo, 50, "");
1030
1031         form_ejecutar(form, 2, 2);
1032
1033         tmp = form_obtener_valor_char(form, titulo);
1034         desc = malloc(sizeof(char)*(strlen(tmp)+1));
1035         strcpy(desc, tmp);
1036
1037         form_destruir(form);
1038         werase(win1);
1039         wrefresh(win1);
1040
1041         /* Creo la lista donde mostrar la consulta*/
1042         /* Muestro solo info relevante */
1043         lista = lista_crear(4, win1, COLS-4, LINES-6);
1044
1045         /* Creo las columnas */
1046         lista_agregar_columna(lista, DATO_INT, 0, 8);    /* numero     */
1047         lista_agregar_columna(lista, DATO_STR, 10, 9);   /* emision    */
1048         lista_agregar_columna(lista, DATO_STR, 20, 3);   /* estado     */
1049         lista_agregar_columna(lista, DATO_STR, 25, 3);   /* fp         */
1050
1051         /* Leo los datos desde el archivo */
1052         datos = emufs_buscar_registros(fs, nombre_indice, desc, &cant);
1053         for(i=0; i<cant; i++) {
1054                 k.i_clave = datos[i].id;
1055                 error = 1;
1056                 tmp = (char *)fs->leer_registro(fs, k, &size, &error);
1057                 if (tmp != NULL) {
1058                         procesar_leer_factura(&factura, tmp, size, lst_facturas);
1059                         lista_agregar_fila(lista,
1060                                                         factura.numero,
1061                                                         factura.emision,
1062                                                         factura.estado,
1063                                                         factura.fp
1064                                         );
1065                         free(tmp);
1066                 } else {
1067                         PERR("NO SE PUDO RECUPERAR EL REGISTRO DE DATOS");
1068                 }
1069         }
1070
1071         curs_set(0);
1072         lista_ejecutar(lista);
1073         curs_set(1);
1074         
1075         wrefresh(win1);
1076         wrefresh(win);
1077         werase(win1);
1078         werase(win);
1079         wrefresh(win);
1080         delwin(win);
1081 }
1082
1083 void fact_consultas(char *s)
1084 {
1085         MENU(mi_menu) {
1086                 MENU_OPCION("por Codigos", "Consulta de Articulos por rango de codigo."),
1087                 MENU_OPCION("por Fecha de Emision", "Consulta por fecha unica"),
1088                 MENU_OPCION("por Presentacion", "Consulta por Presentacion"),
1089                 MENU_OPCION("Volver", "Volver al menu anterior.")
1090         };
1091         int opt;
1092         
1093         while ((opt = menu_ejecutar(mi_menu, 4, "Consulta de Articulos")) != 3) {
1094                 switch (opt) {
1095                         case 0:
1096                                 fact_consultas_codigos(s);
1097                         break;
1098                         case 1:
1099                                 fact_consultas_varias("emision", "Fecha");
1100                         break;
1101                         case 2:
1102                                 fact_consultas_varias("presentacion", "Presentacion");
1103                 }
1104         }
1105 }
1106