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