]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/facturas.c
* Listo las notas en las facturas. se pueden agregar o modificar.
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
1
2 #include "facturas.h"
3 #include "idx.h"
4
5 static t_LstFacturas *lst_facturas;
6
7 /* Procesa una factura antes de enviarla al archivo para guardarla */
8 static void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size);
9 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst);
10 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
11 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
12 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
13 static t_Item *leer_items(xmlNode *, int *cant, int size);
14 static char *leer_nota(xmlNode *);
15
16 t_LstFacturas *fact_get_lst()
17 {
18         return lst_facturas;
19 }
20
21 /* Hack! ... Si no existe propiedad retorna "" */
22 char *xml_get_prop(xmlNode *node, char *nombre)
23 {
24         char *s;
25         s = xmlGetProp(node, nombre);
26         if (s == NULL) {
27                 s = malloc(1);
28                 s[0] = '\0';
29                 return s;
30         }
31         return s;
32 }
33
34 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
35 {
36         if (nodo == NULL) return 0;
37         if (nodo->ant == NULL) {
38                 /* Me piden borrar el primer nodo */
39                 if (nodo->sig) {
40                         nodo->sig->ant = NULL;
41                 }
42                 lst->primero = nodo->sig;
43         } else {
44                 if (nodo->sig) {
45                         nodo->sig->ant = nodo->ant;
46                 }
47                 nodo->ant->sig = nodo->sig;
48         }
49         free(nodo);
50         return 1;
51 }
52
53 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
54 {
55         t_Reg_Factura *tmp;
56         if (reg == EMUFS_NOT_FOUND) return NULL;
57         tmp = malloc(sizeof(t_Reg_Factura));
58         if (tmp == NULL) return NULL;
59         tmp->sig = tmp->ant = NULL;
60         tmp->num_reg = reg;
61         tmp->texto_reg = texto;
62         tmp->numero = num;
63
64         return tmp;
65 }
66
67 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
68 {
69         if (nodo == NULL) return 0;
70
71         if (lst->primero) {
72                 lst->primero->ant = nodo;
73                 nodo->sig = lst->primero;
74                 lst->primero = nodo;
75         } else {
76                 lst->primero = nodo;
77         }
78         return 1;
79 }
80
81 t_Item *leer_items(xmlNode *node, int *cant, int size)
82 {
83         t_Item *tmp;
84         int count;
85         char *prop;
86         if (size == -1) {
87                 tmp = NULL;
88                 count = 0;
89                 node = node->children;
90                 while (node) {
91                         if (node->type == XML_ELEMENT_NODE) {
92                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
93                                         count++;
94                                         tmp = realloc(tmp, sizeof(t_Item)*count);
95                                         memset(&tmp[count-1], 0, sizeof(t_Item));
96                                         prop = xml_get_prop(node, "NroArtículo");
97                                         tmp[count-1].numero = atoi(prop);
98                                         xmlFree(prop);
99                                         strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
100                                         strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
101                                 }
102                         }
103                         node = node->next;
104                 }
105                 *cant = count;
106         } else {
107                 (*cant) = size;
108                 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
109                 memset(tmp, 0, sizeof(t_Item)*size);
110
111                 count = 0;
112                 node = node->children;
113                 while (node) {
114                         if (node->type == XML_ELEMENT_NODE) {
115                                 if (strcmp(node->name, "ITEMVENTA") == 0) {
116                                         memset(&tmp[count], '*', sizeof(t_Item));
117                                         prop = xml_get_prop(node, "NroArtículo");
118                                         tmp[count].numero = atoi(prop);
119                                         xmlFree(prop);
120                                         strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
121                                         strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
122                                         count++;
123                                 }
124                         }
125                         if (count == 10) break; /* No me entran mas items! */
126                         node = node->next;
127                 }
128         }
129         return tmp;
130 }
131
132 char *leer_nota(xmlNode *node)
133 {
134         xmlNode *tmp;
135         char *salida;
136         tmp = node->children;
137         while (tmp) {
138                 if (tmp->type == XML_ELEMENT_NODE) {
139                         if (strcmp(tmp->name, "NOTA") == 0) {
140                                 break;
141                         }
142                 }
143                 tmp = tmp->next;
144         }
145
146         if (tmp) {
147                 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
148                 strcpy(salida, XML_GET_CONTENT(tmp->children));
149         } else {
150                 salida = (char *)malloc(sizeof(char));
151                 salida[0] = '\0';
152         }
153         return salida;
154 }
155
156
157 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
158 {
159         xmlDocPtr document;
160         xmlNode *node, *inicio;
161         int error = 0, cant_items, i;
162         char *prop;
163         EMUFS_REG_SIZE size;
164         t_LstFacturas *tmp;
165         EMUFS_REG_ID id, *indices, indices_cant;
166         
167         lst_facturas = NULL;
168
169         tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
170         if (tmp == NULL) return NULL;
171         lst_facturas = tmp;
172         tmp->primero = NULL;
173
174         if (filename != NULL) {
175                 PERR("Voy a cargar de un XML");
176                 document = xmlReadFile(filename, "ISO-8859-1",0);
177                 if (document == NULL) {
178                         PERR("Error al leer documento!!");
179                         free(tmp);
180                         lst_facturas = NULL;
181                         return NULL;
182                 }
183
184                 inicio = NULL;
185                 node = xmlDocGetRootElement(document);
186                 /* Busco el TAG principal "ARTICULOS" */
187                 while (node) {
188                         if (node->type == XML_ELEMENT_NODE) {
189                                 if (strcmp(node->name, "FACTURAS") == 0) {
190                                         inicio = node->children;
191                                         break;
192                                 }
193                         }
194                         node = node->next;
195                 }
196
197                 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
198                  * y los items al final del registro.
199                  */
200                 if (tipo == T3) {
201                         /* Limito a 10 items en el caso de registro constante! */
202                         cant_items = 10;
203                 } else {
204                         cant_items = 0;
205                 }
206                 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
207                 tmp->fp_texto = emufs_crear("notas", 1, 100, 0);
208                 for (node=inicio ; node ; node = node->next) {
209                         if (node->type == XML_ELEMENT_NODE) {
210                                 if (strcmp(node->name, "FACTURA") == 0) {
211                                         t_Factura fact;
212                                         void *save;
213                                         memset(&fact, '*', sizeof(t_Factura));
214                                         prop = xml_get_prop(node, "NroFac");
215                                         fact.numero = atoi(prop); xmlFree(prop);
216                                         prop = xml_get_prop(node, "PorcDoI");
217                                         fact.procdoi = atof(prop); xmlFree(prop);
218                                         prop = xml_get_prop(node, "NroRemito");
219                                         fact.numero_remito = atoi(prop); xmlFree(prop);
220                                         strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisión"), 8); xmlFree(prop);
221                                         fact.emision[8] = '\0';
222                                         strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
223                                         fact.vencimiento[8] = '\0';
224                                         strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
225                                         fact.estado[2] = '\0';
226                                         strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
227                                         fact.fp[2] = '\0';
228                                         strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
229                                         fact.ctacte[5] = '\0';
230                                         strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
231                                         fact.cheque[18] = '\0';
232
233                                         fact.nota = leer_nota(node);
234                                         fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
235
236                                         error = 0;
237                                         id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
238                                         fact.reg_nota = id;
239                                         save = procesar_guardar_factura(&fact, lst_facturas, &size);
240                                         if (save != NULL) {
241                                                 error = 0;
242                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
243                                                 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
244                                                 if (fact.items) free(fact.items);
245                                                 if (fact.nota) free(fact.nota);
246                                                 free(save);
247                                         }
248                                 }
249                         }
250                 }
251                 xmlFreeDoc(document);
252                 xmlCleanupParser();
253         } else {
254                 PERR("Voy a recuperar desde un archivo");
255                 tmp->fp = emufs_abrir("facturas");
256                 if (tmp->fp == NULL) {
257                         PERR("No se pudo cargar archivo de facturas!");
258                         free(tmp);
259                         lst_facturas = NULL;
260                         return NULL;
261                 }
262                 tmp->fp_texto = emufs_abrir("notas");
263                 if (tmp->fp_texto == NULL) {
264                         PERR("No se pudo cargar archivo de notas!");
265                         emufs_destruir(tmp->fp);
266                         free(tmp);
267                         lst_facturas = NULL;
268                         return NULL;
269                 }
270
271                 /* Ahora trato de recuperar la info */
272                 indices = emufs_idx_get(tmp->fp, &indices_cant);
273                 for(i=0; i<indices_cant; i++) {
274                         t_Factura art;
275                         void *save;
276                         /* Leo el registro */
277                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
278                         if (procesar_leer_factura(&art, save, size, tmp) == 1) {
279                                 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
280                                 free(save);
281                         }
282                 }
283                 free(indices);
284         }
285
286         PERR("Facturas todo Ok");
287         return lst_facturas;
288 }
289
290 int fact_liberar(t_LstFacturas *l)
291 {
292         t_Reg_Factura *del;
293         if (l == NULL) l = lst_facturas;
294         if (l == NULL) return 1;
295
296         emufs_destruir(l->fp);
297         emufs_destruir(l->fp_texto);
298         while (l->primero) {
299                 del = l->primero;
300                 l->primero = l->primero->sig;
301                 free(del);
302         }
303         free(l);
304
305         lst_facturas = NULL;
306         return 0;
307 }
308
309 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
310 {
311         t_Factura *fact;
312         t_Reg_Factura *reg;
313         char *leo;
314         EMUFS_REG_SIZE size;
315         int error;
316         if (lst == NULL) return NULL;
317
318         fact = NULL;
319         reg = lst->primero;
320         while (reg) {
321                 if (reg->numero == numero) {
322                         size = 0;
323                         error = 0;
324                         leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
325                         if (leo != NULL) {
326                                 fact = (t_Factura *)malloc(sizeof(t_Factura));
327                                 if (fact == NULL) {
328                                         free(leo);
329                                         return NULL;
330                                 }
331                                 procesar_leer_factura(fact, leo, size, lst);
332                                 (*id) = reg->num_reg;
333                                 (*id_texto) = reg->texto_reg;
334                                 free(leo);
335                                 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
336                         }
337                         break;
338                 }
339                 reg = reg->sig;
340         }
341         return fact;
342 }
343
344 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
345 {
346         t_Form *form;
347         t_Factura *fact;
348
349         form = form_crear(win);
350         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
351         form_ejecutar(form, 1,1);
352         fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
353         form_destruir(form);
354
355         return fact;
356 }
357
358 void fact_eliminar(char *s)
359 {
360         WINDOW *win;
361         t_Factura *fact;
362         t_Reg_Factura *nodo;
363         EMUFS_REG_ID id;
364                                                                         
365         win = newwin(LINES-4, COLS-2, 2, 1);
366         box(win, 0, 0);
367         
368         fact = fact_form_buscar(win, &id, &id);
369
370         if (fact == NULL) {
371                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
372                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
373                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
374                 wrefresh(win);
375                 getch();
376                 werase(win);
377                 wrefresh(win);
378                 delwin(win);
379                 return;
380         }
381
382         nodo = lst_facturas->primero;
383         while (nodo) {
384                 if (nodo->numero == fact->numero) {
385                         lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
386                         lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
387                         eliminar_nodo_factura(lst_facturas, nodo);
388                         break;
389                 }
390                 nodo = nodo->sig;
391         }
392
393         free(fact->items);
394         free(fact);
395 }
396
397 void fact_modificar(char *s)
398 {
399         WINDOW *win, *items, *nota, *subnota;
400         t_Form *form, *form_nota;
401         t_Factura *fact;
402         /*EMUFS_REG_SIZE size;*/
403         EMUFS_REG_ID id, id_texto;
404 /*      int y_actual, cant, error;*/
405         char tmp_str[10];
406
407                                                                         
408         win = newwin(LINES-4, COLS-2, 2, 1);
409         box(win, 0, 0);
410         
411         fact = fact_form_buscar(win, &id, &id_texto);
412
413         if (fact == NULL) {
414                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
415                 mvwaddstr(win, 2, 1, "No existe artículo con ese código. Abortando!");
416                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
417                 wrefresh(win);
418                 getch();
419                 werase(win);
420                 wrefresh(win);
421                 delwin(win);
422                 return;
423         }
424
425         mvwaddch(win, 10, 0, ACS_LTEE);
426         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
427         mvwaddch(win, 10, COLS-3, ACS_RTEE);
428         wrefresh(win);
429
430         items = derwin(win, LINES-20, COLS-4, 15, 1);
431         nota = derwin(win, 9, COLS-62, 1, 56);
432         subnota = derwin(nota, 7, COLS-64, 1, 1);
433         box(nota, 0, 0);
434         mvwaddstr(nota, 0, 1, "Nota :");
435         wrefresh(nota);
436         wrefresh(items);
437
438         form = form_crear(win);
439         sprintf(tmp_str, "%08d", fact->numero);
440         form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
441         form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
442         form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
443         sprintf(tmp_str, "%08d", fact->numero_remito);
444         form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
445         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
446         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
447         sprintf(tmp_str, "%02.2f", fact->procdoi);
448         form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
449         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
450         form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
451
452         mvwaddstr(subnota, 0, 0, fact->nota);
453         wrefresh(subnota);
454         form_ejecutar(form, 1,1);
455
456         form_nota = form_crear(subnota);
457         form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
458         form_ejecutar(form_nota, 0, 0);
459
460         fact->numero = form_obtener_valor_int(form, "Numero de Factura");
461         strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
462         strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
463         fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
464         strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
465         strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
466         fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
467         strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
468         strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
469
470         form_destruir(form);
471
472         /* TODO MODIFICAR */
473         
474 /*      entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
475         if (entrada) {
476                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);*/
477                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
478                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
479                 /*agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
480                 free(entrada);
481         }
482         */                                                              
483 /*      form_destruir(form); */
484
485         free(fact->items);
486         free(fact);
487
488         werase(win);
489         wrefresh(win);
490         delwin(items);
491         delwin(win);
492 }
493
494 void fact_agregar(char *s)
495 {
496         WINDOW *win, *items, *nota, *subnota;
497         t_Form *form, *form_nota;
498         t_Item *its = NULL;
499         t_Factura fact;
500         EMUFS_REG_SIZE size;
501         EMUFS_REG_ID id; /*, id_texto;*/
502         int y_actual, cant, error;
503         char *entrada;
504
505         win = newwin(LINES-4, COLS-2, 2, 1);
506         box(win, 0, 0);
507         mvwaddch(win, 10, 0, ACS_LTEE);
508         mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
509         mvwaddch(win, 10, COLS-3, ACS_RTEE);
510         wrefresh(win);
511
512         items = derwin(win, LINES-20, COLS-4, 15, 1);
513         nota = derwin(win, 9, COLS-62, 1, 56);
514         subnota = derwin(nota, 7, COLS-64, 1, 1);
515         box(nota, 0, 0);
516         mvwaddstr(nota, 0, 1, "Nota :");
517         wrefresh(nota);
518         wrefresh(items);
519
520         form = form_crear(win);
521         form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
522         form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
523         form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
524         form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
525         form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
526         form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
527         form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
528         form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
529         form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
530
531         form_ejecutar(form, 1,1);
532
533         form_nota = form_crear(subnota);
534         form_agregar_widget(form_nota, INPUT, "", 255, "");
535         form_ejecutar(form_nota, 0, 0);
536
537         fact.numero = form_obtener_valor_int(form, "Numero de Factura");
538         strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
539         strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
540         fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
541         strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
542         strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
543         fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
544         strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
545         strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
546
547         form_destruir(form);
548         form_destruir(form_nota);
549
550         form = form_crear(win);
551         form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
552         form_agregar_widget(form, INPUT, "CV", 8, "");
553         form_agregar_widget(form, INPUT, "PVU", 8, "");
554         y_actual = 0;
555         scrollok(items, 1);
556         mvwaddstr(win, 15, 2, "Numero");
557         mvwaddstr(win, 15, 11, "CV");
558         mvwaddstr(win, 15, 21, "PVU");
559         cant = 0;
560         do {
561                 form_set_valor(form, "Nro de Articulo (* == fin)", "");
562                 form_set_valor(form, "CV", "");
563                 form_set_valor(form, "PVU", "");
564                 form_ejecutar(form, 2, 11);
565
566                 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
567
568                 if ((entrada[0] != '\0') && (entrada[0] != '*')){
569                         y_actual++;
570                         if (y_actual > LINES-22) {
571                                 y_actual = LINES-22;
572                                 wscrl(items, 1);
573                         }
574                         mvwaddstr(items, y_actual, 1, entrada);
575                         mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
576                         mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
577                         wrefresh(items);
578                         /* Agrego el Item */
579                         cant++;
580                         its = (t_Item *)realloc(its, cant*sizeof(t_Item));
581                         if (its != NULL) {
582                                 its[cant-1].numero = atoi(entrada);
583                                 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
584                                 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
585                         }
586                 }
587         } while (entrada[0] != '*');
588
589         if (lst_facturas->fp->tipo == T3) {
590                 if (cant != 10) {
591                         /* TODO Limitar en la GUI en lugar de truncar! */
592                         its = (t_Item *)realloc(its, 10*sizeof(t_Item));
593                         if (its == NULL) {
594                                 cant = 0;
595                         } else {
596                                 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
597                                 cant = 10;
598                         }
599                 }
600         }
601         fact.items = its;
602         fact.cant_items = cant;
603
604         entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
605         if (entrada) {
606                 error = 0;
607                 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
608                 /*id_texto = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, 400, &error);*/
609                 /* TODO : -1 == id_texto !!!!!!!! XXX XXX XXX XXX XXX XXX XXX */
610                 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, -1, fact.numero));
611                 free(entrada);
612         }
613                                                                         
614         if (its) free(its);
615         form_destruir(form);
616
617         werase(win);
618         wrefresh(win);
619         delwin(items);
620         delwin(subnota);
621         delwin(nota);
622         delwin(win);
623 }
624
625 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
626 {
627         char *tmp=NULL;
628         int i[12];
629
630         switch (lst->fp->tipo) {
631                 case T1:
632                 case T2:
633                         /* Calculo el tamaño que voy a necesitar */
634                         i[0] = sizeof(int);
635                         i[1] = sizeof(float);
636                         i[2] = sizeof(int);
637                         i[3] = sizeof(int);
638                         i[4] = sizeof(EMUFS_BLOCK_ID);
639                         i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
640                         i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
641                         i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
642                         i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
643                         i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
644                         i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
645                         i[11] = sizeof(t_Item)*f->cant_items;
646                         (*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];
647                         tmp = (char *)malloc(*size);
648                         if (tmp == NULL) return NULL;
649                         memset(tmp, 0, *size);
650                         /* Ahora copio la info */
651                         memcpy(tmp, &f->numero, i[0]);
652                         memcpy(tmp+i[0], &f->procdoi, i[1]);
653                         memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
654                         memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
655                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
656                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
657                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
658                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
659                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
660                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
661                         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]);
662                         if (i[11] != 0)
663                                 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]);
664                 break;
665                 case T3:
666                         (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
667                         tmp = (char *)malloc(*size);
668                         if (tmp == NULL) return NULL;
669                         memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
670                         memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
671         }
672         return tmp;
673 }
674
675 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
676 {
677         char *ini, *fin;
678         int dummy;
679
680         switch (lst->fp->tipo) {
681                 case T1:
682                 case T2:
683                         ini = (char *)src;
684                         /* Copio los campos numericos, muy facil:-) */
685                         memcpy(&dst->numero, ini, sizeof(int));
686                         ini+=sizeof(int);
687                         
688                         memcpy(&dst->procdoi, ini, sizeof(float));
689                         ini+=sizeof(float);
690
691                         memcpy(&dst->numero_remito, ini, sizeof(int));
692                         ini+=sizeof(int);
693                         
694                         memcpy(&dst->cant_items, ini, sizeof(int));
695                         ini+=sizeof(int);
696                         
697                         memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
698                         ini+=sizeof(EMUFS_BLOCK_ID);
699
700                         /* Ahora empieza el juego */
701                         /* Los \0 son los delimitadores de campo! */
702                         fin = ini;
703                         while (*fin!='\0') fin++;
704                         memcpy(dst->emision, ini, fin-ini+1);
705                         
706                         ini = fin+1;
707                         fin = ini;
708                         while (*fin!='\0') fin++;
709                         memcpy(dst->vencimiento, ini, fin-ini+1);
710                         
711                         ini = fin+1;
712                         fin = ini;
713                         while (*fin!='\0') fin++;
714                         memcpy(dst->estado, ini, fin-ini+1);
715                         
716                         ini = fin+1;
717                         fin = ini;
718                         while (*fin!='\0') fin++;
719                         memcpy(dst->fp, ini, fin-ini+1);
720                         
721                         ini = fin+1;
722                         fin = ini;
723                         while (*fin!='\0') fin++;
724                         memcpy(dst->ctacte, ini, fin-ini+1);
725                         
726                         ini = fin+1;
727                         fin = ini;
728                         while (*fin!='\0') fin++;
729                         memcpy(dst->cheque, ini, fin-ini+1);
730
731                         if (dst->cant_items > 0) {
732                                 /* Ahora tengo que cargar los items */
733                                 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
734
735                                 ini = fin+1;
736                                 fin = (char *)src+size;
737                                 memcpy(dst->items, ini, fin-ini);
738
739                                 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
740                         } else {
741                                 dst->items = NULL;
742                         }
743
744                         return 0;
745                 case T3:
746                         /* Se que tengo 10 items */
747                         /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
748                         size = lst->fp->tam_reg;
749                         memcpy(dst, src, size-sizeof(t_Item)*10);
750                         dst->items = (t_Item *)malloc(10*sizeof(t_Item));
751                         memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
752         }
753         return 0;
754 }
755