6 static t_LstFacturas *lst_facturas;
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 static t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num);
12 static int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
13 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo);
14 static t_Item *leer_items(xmlNode *, int *cant, int size);
15 static char *leer_nota(xmlNode *);
17 t_LstFacturas *fact_get_lst()
22 /* Hack! ... Si no existe propiedad retorna "" */
23 char *xml_get_prop(xmlNode *node, char *nombre)
26 s = xmlGetProp(node, nombre);
35 int eliminar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
37 if (nodo == NULL) return 0;
38 if (nodo->ant == NULL) {
39 /* Me piden borrar el primer nodo */
41 nodo->sig->ant = NULL;
43 lst->primero = nodo->sig;
46 nodo->sig->ant = nodo->ant;
48 nodo->ant->sig = nodo->sig;
54 t_Reg_Factura *crear_nodo_factura(EMUFS_REG_ID reg, EMUFS_REG_ID texto, unsigned int num)
57 if (reg == EMUFS_NOT_FOUND) return NULL;
58 tmp = malloc(sizeof(t_Reg_Factura));
59 if (tmp == NULL) return NULL;
60 tmp->sig = tmp->ant = NULL;
62 tmp->texto_reg = texto;
68 int agregar_nodo_factura(t_LstFacturas *lst, t_Reg_Factura *nodo)
70 if (nodo == NULL) return 0;
73 lst->primero->ant = nodo;
74 nodo->sig = lst->primero;
82 t_Item *leer_items(xmlNode *node, int *cant, int size)
90 node = node->children;
92 if (node->type == XML_ELEMENT_NODE) {
93 if (strcmp(node->name, "ITEMVENTA") == 0) {
95 tmp = realloc(tmp, sizeof(t_Item)*count);
96 memset(&tmp[count-1], 0, sizeof(t_Item));
97 prop = xml_get_prop(node, "NroArtĂculo");
98 tmp[count-1].numero = atoi(prop);
100 strcpy(tmp[count-1].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
101 strcpy(tmp[count-1].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
109 tmp = (t_Item *)malloc(sizeof(t_Item)*size);
110 memset(tmp, 0, sizeof(t_Item)*size);
113 node = node->children;
115 if (node->type == XML_ELEMENT_NODE) {
116 if (strcmp(node->name, "ITEMVENTA") == 0) {
117 memset(&tmp[count], '*', sizeof(t_Item));
118 prop = xml_get_prop(node, "NroArtĂculo");
119 tmp[count].numero = atoi(prop);
121 strcpy(tmp[count].cv, prop = xml_get_prop(node, "CV")); xmlFree(prop);
122 strcpy(tmp[count].pvu, prop = xml_get_prop(node, "PVU")); xmlFree(prop);
126 if (count == 10) break; /* No me entran mas items! */
133 char *leer_nota(xmlNode *node)
137 tmp = node->children;
139 if (tmp->type == XML_ELEMENT_NODE) {
140 if (strcmp(tmp->name, "NOTA") == 0) {
148 salida = (char *)malloc(sizeof(char)*(strlen(XML_GET_CONTENT(tmp->children))+1));
149 strcpy(salida, XML_GET_CONTENT(tmp->children));
151 salida = (char *)malloc(sizeof(char));
158 t_LstFacturas *fact_cargar(const char *filename, int tipo, int tam_bloque)
161 xmlNode *node, *inicio;
162 int error = 0, cant_items, i;
166 EMUFS_REG_ID id, *indices, indices_cant;
170 tmp = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
171 if (tmp == NULL) return NULL;
175 if (filename != NULL) {
176 PERR("Voy a cargar de un XML");
177 document = xmlReadFile(filename, "ISO-8859-1",0);
178 if (document == NULL) {
179 PERR("Error al leer documento!!");
186 node = xmlDocGetRootElement(document);
187 /* Busco el TAG principal "ARTICULOS" */
189 if (node->type == XML_ELEMENT_NODE) {
190 if (strcmp(node->name, "FACTURAS") == 0) {
191 inicio = node->children;
198 /* En el registro no guardo los punteros de nota ni items. Si guardo la cantidad de items
199 * y los items al final del registro.
201 if ((tipo-1) == T3) {
202 /* Limito a 10 items en el caso de registro constante! */
207 tmp->fp = emufs_crear("facturas", tipo-1, tam_bloque, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+cant_items*sizeof(t_Item));
208 tmp->fp_texto = emufs_crear("notas", T2, 100, 0);
209 for (node=inicio ; node ; node = node->next) {
210 if (node->type == XML_ELEMENT_NODE) {
211 if (strcmp(node->name, "FACTURA") == 0) {
214 memset(&fact, 0, sizeof(t_Factura));
215 prop = xml_get_prop(node, "NroFac");
216 fact.numero = atoi(prop); xmlFree(prop);
217 prop = xml_get_prop(node, "PorcDoI");
218 fact.procdoi = atof(prop); xmlFree(prop);
219 prop = xml_get_prop(node, "NroRemito");
220 fact.numero_remito = atoi(prop); xmlFree(prop);
221 strncpy(fact.emision, prop = xml_get_prop(node, "FechaEmisiĂłn"), 8); xmlFree(prop);
222 fact.emision[8] = '\0';
223 strncpy(fact.vencimiento, prop = xml_get_prop(node, "FechaVto"), 8); xmlFree(prop);
224 fact.vencimiento[8] = '\0';
225 strncpy(fact.estado, prop = xml_get_prop(node, "Estado"), 2); xmlFree(prop);
226 fact.estado[2] = '\0';
227 strncpy(fact.fp, prop = xml_get_prop(node, "FP"), 2); xmlFree(prop);
229 strncpy(fact.ctacte, prop = xml_get_prop(node, "NroCtaCte"), 5); xmlFree(prop);
230 fact.ctacte[5] = '\0';
231 strncpy(fact.cheque, prop = xml_get_prop(node, "NroCheque"), 18); xmlFree(prop);
232 fact.cheque[18] = '\0';
234 fact.nota = leer_nota(node);
235 fact.items = leer_items(node, &fact.cant_items, ((tipo-1)==T3)?10:-1);
238 id = tmp->fp_texto->grabar_registro(tmp->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
240 save = procesar_guardar_factura(&fact, lst_facturas, &size);
243 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
244 agregar_nodo_factura(tmp, crear_nodo_factura(id, fact.reg_nota, fact.numero));
245 if (fact.items) free(fact.items);
246 if (fact.nota) free(fact.nota);
252 xmlFreeDoc(document);
255 PERR("Voy a recuperar desde un archivo");
256 tmp->fp = emufs_abrir("facturas");
257 if (tmp->fp == NULL) {
258 PERR("No se pudo cargar archivo de facturas!");
263 tmp->fp_texto = emufs_abrir("notas");
264 if (tmp->fp_texto == NULL) {
265 PERR("No se pudo cargar archivo de notas!");
266 emufs_destruir(tmp->fp);
272 /* Ahora trato de recuperar la info */
273 indices = emufs_idx_get(tmp->fp, &indices_cant);
274 for(i=0; i<indices_cant; i++) {
277 /* Leo el registro */
278 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
279 if (procesar_leer_factura(&art, save, size, tmp) == 1) {
280 agregar_nodo_factura(tmp, crear_nodo_factura(indices[i], art.reg_nota, art.numero));
287 PERR("Facturas todo Ok");
291 int fact_liberar(t_LstFacturas *l)
294 if (l == NULL) l = lst_facturas;
295 if (l == NULL) return 1;
297 emufs_destruir(l->fp);
298 emufs_destruir(l->fp_texto);
301 l->primero = l->primero->sig;
310 t_Factura *fact_buscar(t_LstFacturas *lst, int numero, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
317 if (lst == NULL) return NULL;
322 if (reg->numero == numero) {
325 leo = lst->fp->leer_registro(lst->fp, reg->num_reg, &size, &error);
327 fact = (t_Factura *)malloc(sizeof(t_Factura));
332 procesar_leer_factura(fact, leo, size, lst);
333 (*id) = reg->num_reg;
334 (*id_texto) = reg->texto_reg;
336 fact->nota = lst->fp_texto->leer_registro(lst->fp_texto, reg->texto_reg, &size, &error);
345 t_Factura *fact_form_buscar(WINDOW *win, EMUFS_REG_ID *id, EMUFS_REG_ID *id_texto)
350 form = form_crear(win);
351 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
352 form_ejecutar(form, 1,1);
353 fact = fact_buscar(lst_facturas, form_obtener_valor_int(form, "Numero de Factura"), id, id_texto);
359 void fact_eliminar(char *s)
366 win = newwin(LINES-4, COLS-2, 2, 1);
369 fact = fact_form_buscar(win, &id, &id);
372 wattron(win, COLOR_PAIR(COLOR_YELLOW));
373 mvwaddstr(win, 2, 1, "No existe artĂculo con ese cĂłdigo. Abortando!");
374 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
383 nodo = lst_facturas->primero;
385 if (nodo->numero == fact->numero) {
386 lst_facturas->fp->borrar_registro(lst_facturas->fp, nodo->num_reg);
387 lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, nodo->texto_reg);
388 eliminar_nodo_factura(lst_facturas, nodo);
398 void fact_modificar(char *s)
400 WINDOW *win, *items, *nota, *subnota;
401 t_Form *form, *form_nota;
404 EMUFS_REG_ID id, id_texto;
410 win = newwin(LINES-4, COLS-2, 2, 1);
413 fact = fact_form_buscar(win, &id, &id_texto);
416 wattron(win, COLOR_PAIR(COLOR_YELLOW));
417 mvwaddstr(win, 2, 1, "No existe artĂculo con ese cĂłdigo. Abortando!");
418 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
427 mvwaddch(win, 10, 0, ACS_LTEE);
428 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
429 mvwaddch(win, 10, COLS-3, ACS_RTEE);
432 items = derwin(win, LINES-20, COLS-4, 15, 1);
433 nota = derwin(win, 9, COLS-62, 1, 56);
434 subnota = derwin(nota, 7, COLS-64, 1, 1);
436 mvwaddstr(nota, 0, 1, "Nota :");
440 form = form_crear(win);
441 sprintf(tmp_str, "%08d", fact->numero);
442 form_agregar_widget(form, INPUT, "Numero de Factura", 8, tmp_str);
443 form_agregar_widget(form, INPUT, "Fecha Emision", 8, fact->emision);
444 form_agregar_widget(form, INPUT, "Fecha Vto", 8, fact->vencimiento);
445 sprintf(tmp_str, "%08d", fact->numero_remito);
446 form_agregar_widget(form, INPUT, "Nro Remito", 8, tmp_str);
447 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
448 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
449 sprintf(tmp_str, "%02.2f", fact->procdoi);
450 form_agregar_widget(form, INPUT, "%% Descuento", 5, tmp_str);
451 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, fact->ctacte);
452 form_agregar_widget(form, INPUT, "Cheque Nro", 18, fact->cheque);
454 mvwaddstr(subnota, 0, 0, fact->nota);
456 form_ejecutar(form, 1,1);
458 form_nota = form_crear(subnota);
459 form_agregar_widget(form_nota, INPUT, "", 255, fact->nota);
460 form_ejecutar(form_nota, 0, 0);
462 fact->numero = form_obtener_valor_int(form, "Numero de Factura");
463 strcpy(fact->emision, form_obtener_valor_char(form, "Fecha Emision"));
464 strcpy(fact->vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
465 fact->numero_remito = form_obtener_valor_int(form, "Nro Remito");
466 strcpy(fact->estado, form_obtener_valor_char(form, "Estado"));
467 strcpy(fact->fp, form_obtener_valor_char(form, "Forma de pago"));
468 fact->procdoi = form_obtener_valor_float(form, "%% Descuento");
469 strcpy(fact->ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
470 strcpy(fact->cheque, form_obtener_valor_char(form, "Cheque Nro"));
475 fact->nota = form_obtener_valor_char(form_nota, "");
477 form_destruir(form_nota);
479 entrada = procesar_guardar_factura(fact, lst_facturas, &size);
481 id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
482 id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
497 void fact_agregar(char *s)
499 WINDOW *win, *items, *nota, *subnota;
500 t_Form *form, *form_nota;
504 EMUFS_REG_ID id, id_texto;
505 int y_actual, cant, error;
508 win = newwin(LINES-4, COLS-2, 2, 1);
510 mvwaddch(win, 10, 0, ACS_LTEE);
511 mvwhline(win, 10, 1, ACS_HLINE, COLS-3);
512 mvwaddch(win, 10, COLS-3, ACS_RTEE);
515 items = derwin(win, LINES-20, COLS-4, 15, 1);
516 nota = derwin(win, 9, COLS-62, 1, 56);
517 subnota = derwin(nota, 7, COLS-64, 1, 1);
519 mvwaddstr(nota, 0, 1, "Nota :");
523 form = form_crear(win);
524 form_agregar_widget(form, INPUT, "Numero de Factura", 8, "");
525 form_agregar_widget(form, INPUT, "Fecha Emision", 8, "");
526 form_agregar_widget(form, INPUT, "Fecha Vto", 8, "");
527 form_agregar_widget(form, INPUT, "Nro Remito", 8, "");
528 form_agregar_widget(form, RADIO, "Estado", 6, "PN,CD,CM,SF,PM,NC");
529 form_agregar_widget(form, RADIO, "Forma de pago", 3, "CO,CR,CH");
530 form_agregar_widget(form, INPUT, "%% Descuento", 5, "");
531 form_agregar_widget(form, INPUT, "Cuenta Cte", 5, "");
532 form_agregar_widget(form, INPUT, "Cheque Nro", 18, "");
534 form_ejecutar(form, 1,1);
536 form_nota = form_crear(subnota);
537 form_agregar_widget(form_nota, INPUT, "", 255, "");
538 form_ejecutar(form_nota, 0, 0);
540 /* XXX No destruir form_nota hasta el final !!!!! XXX */
542 fact.numero = form_obtener_valor_int(form, "Numero de Factura");
543 strcpy(fact.emision, form_obtener_valor_char(form, "Fecha Emision"));
544 strcpy(fact.vencimiento, form_obtener_valor_char(form, "Fecha Vto"));
545 fact.numero_remito = form_obtener_valor_int(form, "Nro Remito");
546 strcpy(fact.estado, form_obtener_valor_char(form, "Estado"));
547 strcpy(fact.fp, form_obtener_valor_char(form, "Forma de pago"));
548 fact.procdoi = form_obtener_valor_float(form, "%% Descuento");
549 strcpy(fact.ctacte, form_obtener_valor_char(form, "Cuenta Cte"));
550 strcpy(fact.cheque, form_obtener_valor_char(form, "Cheque Nro"));
554 form = form_crear(win);
555 form_agregar_widget(form, INPUT, "Nro de Articulo (* == fin)", 8, "");
556 form_agregar_widget(form, INPUT, "CV", 8, "");
557 form_agregar_widget(form, INPUT, "PVU", 8, "");
560 mvwaddstr(win, 15, 2, "Numero");
561 mvwaddstr(win, 15, 11, "CV");
562 mvwaddstr(win, 15, 21, "PVU");
565 form_set_valor(form, "Nro de Articulo (* == fin)", "");
566 form_set_valor(form, "CV", "");
567 form_set_valor(form, "PVU", "");
568 form_ejecutar(form, 2, 11);
570 entrada = form_obtener_valor_char(form, "Nro de Articulo (* == fin)");
572 if ((entrada[0] != '\0') && (entrada[0] != '*')){
574 if (y_actual > LINES-22) {
578 mvwaddstr(items, y_actual, 1, entrada);
579 mvwaddstr(items, y_actual, 10, form_obtener_valor_char(form, "CV"));
580 mvwaddstr(items, y_actual, 20, form_obtener_valor_char(form, "PVU"));
584 its = (t_Item *)realloc(its, cant*sizeof(t_Item));
586 its[cant-1].numero = atoi(entrada);
587 strcpy(its[cant-1].cv, form_obtener_valor_char(form, "CV"));
588 strcpy(its[cant-1].pvu, form_obtener_valor_char(form, "PVU"));
591 } while (entrada[0] != '*');
593 if (lst_facturas->fp->tipo == T3) {
595 /* TODO Limitar en la GUI en lugar de truncar! */
596 its = (t_Item *)realloc(its, 10*sizeof(t_Item));
600 memset(its+sizeof(t_Item)*cant, 0, (10-cant)*sizeof(t_Item));
606 fact.cant_items = cant;
607 fact.nota = form_obtener_valor_char(form_nota, "");
609 entrada = procesar_guardar_factura(&fact,lst_facturas, &size);
612 id = lst_facturas->fp->grabar_registro(lst_facturas->fp, entrada, size, &error);
613 id_texto = lst_facturas->fp_texto->grabar_registro(lst_facturas->fp_texto, fact.nota, strlen(fact.nota)+1, &error);
614 agregar_nodo_factura(lst_facturas, crear_nodo_factura(id, id_texto, fact.numero));
620 form_destruir(form_nota);
630 void *procesar_guardar_factura(t_Factura *f, t_LstFacturas *lst, EMUFS_REG_SIZE *size)
635 switch (lst->fp->tipo) {
638 /* Calculo el tamaño que voy a necesitar */
640 i[1] = sizeof(float);
643 i[4] = sizeof(EMUFS_BLOCK_ID);
644 i[5] = sizeof(char)*(strlen(f->emision)+1); /* +1 por el \0 para separar */
645 i[6] = sizeof(char)*(strlen(f->vencimiento)+1); /* +1 por el \0 para separar */
646 i[7] = sizeof(char)*(strlen(f->estado)+1); /* +1 por el \0 para separar */
647 i[8] = sizeof(char)*(strlen(f->fp)+1); /* +1 por el \0 para separar */
648 i[9] = sizeof(char)*(strlen(f->ctacte)+1); /* +1 por el \0 para separar */
649 i[10] = sizeof(char)*(strlen(f->cheque)+1); /* +1 por el \0 para separar */
650 i[11] = sizeof(t_Item)*f->cant_items;
651 (*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];
652 tmp = (char *)malloc(*size);
653 if (tmp == NULL) return NULL;
654 memset(tmp, 0, *size);
655 /* Ahora copio la info */
656 memcpy(tmp, &f->numero, i[0]);
657 memcpy(tmp+i[0], &f->procdoi, i[1]);
658 memcpy(tmp+i[0]+i[1], &f->numero_remito, i[2]);
659 memcpy(tmp+i[0]+i[1]+i[2], &f->cant_items, i[3]);
660 memcpy(tmp+i[0]+i[1]+i[2]+i[3], &f->reg_nota, i[4]);
661 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], f->emision, i[5]);
662 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5], f->vencimiento, i[6]);
663 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6], f->estado, i[7]);
664 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7], f->fp, i[8]);
665 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4]+i[5]+i[6]+i[7]+i[8], f->ctacte, i[9]);
666 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]);
668 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]);
671 (*size) = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *) + f->cant_items*sizeof(t_Item);
672 tmp = (char *)malloc(*size);
673 if (tmp == NULL) return NULL;
674 memcpy(tmp, f, sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *));
675 memcpy(tmp+sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item *), f->items, f->cant_items*sizeof(t_Item));
680 static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, t_LstFacturas *lst)
686 PERR("Puntero a lista NULO");
689 if (lst->fp == NULL) {
690 PERR("EMUFS No creado!");
694 switch (lst->fp->tipo) {
698 /* Copio los campos numericos, muy facil:-) */
699 memcpy(&dst->numero, ini, sizeof(int));
702 memcpy(&dst->procdoi, ini, sizeof(float));
705 memcpy(&dst->numero_remito, ini, sizeof(int));
708 memcpy(&dst->cant_items, ini, sizeof(int));
711 memcpy(&dst->reg_nota, ini, sizeof(EMUFS_BLOCK_ID));
712 ini+=sizeof(EMUFS_BLOCK_ID);
714 /* Ahora empieza el juego */
715 /* Los \0 son los delimitadores de campo! */
717 while (*fin!='\0') fin++;
718 memcpy(dst->emision, ini, fin-ini+1);
722 while (*fin!='\0') fin++;
723 memcpy(dst->vencimiento, ini, fin-ini+1);
727 while (*fin!='\0') fin++;
728 memcpy(dst->estado, ini, fin-ini+1);
732 while (*fin!='\0') fin++;
733 memcpy(dst->fp, ini, fin-ini+1);
737 while (*fin!='\0') fin++;
738 memcpy(dst->ctacte, ini, fin-ini+1);
742 while (*fin!='\0') fin++;
743 memcpy(dst->cheque, ini, fin-ini+1);
745 if (dst->cant_items > 0) {
746 /* Ahora tengo que cargar los items */
747 dst->items = (t_Item *)malloc(sizeof(t_Item)*dst->cant_items);
750 fin = (char *)src+size;
751 memcpy(dst->items, ini, fin-ini);
756 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
760 /* Se que tengo 10 items */
761 /* TODO : Ver porque leer_registro_tipo3 tira mal el size */
762 size = lst->fp->tam_reg;
763 memcpy(dst, src, size-sizeof(t_Item)*10);
764 dst->items = (t_Item *)malloc(10*sizeof(t_Item));
765 memcpy(dst->items, src+size-sizeof(t_Item)*10, 10*sizeof(t_Item));
766 dst->nota = lst->fp_texto->leer_registro(lst->fp_texto, dst->reg_nota, (EMUFS_REG_SIZE *)&dummy, &dummy);
771 void fact_reformatear(int tipo, int tam_bloque, int tam_reg)
774 EMUFS_REG_ID *indices, id;
775 EMUFS_REG_SIZE indices_total, i, size, tam_reg1;
777 t_LstFacturas *lst_nueva;
781 PERR("==== EMPIEZO ====\n");
782 old = lst_facturas->fp;
784 /* Creo el nuevo file */
785 PERR("Creo el archivo\n");
787 /* Me aseguro de que entren n items completos */
788 tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item);
790 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1);
792 PERR("ARCHIVO NUEVO NO CREADO");
796 /* Creo la nueva lista */
797 lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas));
798 lst_nueva->primero = NULL;
799 lst_nueva->fp = nuevo;
801 /* Leo los indices del archivo viejo */
802 PERR("Obtengo Indices\n");
803 indices = emufs_idx_get(old, &indices_total);
804 if (indices == NULL) {
805 fact_liberar(lst_nueva);
809 PERR("Proceso datos");
810 for(i=0; i<indices_total; i++) {
813 save = old->leer_registro(old, indices[i], &size, &error);
814 if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) {
815 PERR("Procese Leer Ok");
817 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
818 save = procesar_guardar_factura(&fact, lst_nueva, &size);
819 PERR("Procese Grabar Ok");
822 PERR("Grabo el Registro");
823 id = nuevo->grabar_registro(nuevo, save, size, &error);
825 agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero));
826 PERR("Libero Memoria");
828 if (fact.items) free(fact.items);
829 if (fact.nota) free(fact.nota);
830 PERR("Termine con este Item");
837 PERR("Libero lo viejo\n");
838 fact_liberar(lst_facturas);
840 PERR("Ahora tengo lo nuevo\n");
841 lst_facturas = lst_nueva;
843 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
844 free(lst_facturas->fp->nombre);
845 lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1));
846 strcpy(lst_facturas->fp->nombre, "facturas");
848 /* Muevo los archivos! */
849 /* TODO : Poner en otro lugar mas generico! */
850 PERR("Renombre!!\n");
851 rename("emufs_tmp.dat", "facturas.dat");
852 rename("emufs_tmp.idx", "facturas.idx");
853 rename("emufs_tmp.fsc", "facturas.fsc");
854 rename("emufs_tmp.did", "facturas.did");
855 PERR("==== TERMINE ====\n");