]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/facturas.c
* FIXED : Pedir Clave a Izquierda andando
[z.facultad/75.06/emufs.git] / emufs_gui / facturas.c
index 64ce9bc491e8715c4d590145bcd9cb8b8dba1b5c..d3d63f4cfdfeef72ebf493b11235dce2975b50c7 100644 (file)
@@ -416,7 +416,8 @@ void fact_eliminar(char *s)
        k.i_clave = fact->reg_nota;
        lst_facturas->fp_texto->borrar_registro(lst_facturas->fp_texto, k);
 
-       free(fact->items);
+       if (fact->items) free(fact->items);
+       if (fact->nota) free(fact->nota);
        free(fact);
 }
 
@@ -432,17 +433,13 @@ void fact_modificar(char *s)
        char tmp_str[10];
        void *entrada;
 
-       /* XXX XXX XXX TODO */
-       return;
-       
        win = newwin(LINES-4, COLS-2, 2, 1);
        box(win, 0, 0);
        
        if (s == NULL) {
                fact = fact_form_buscar(win, &id, &id_texto);
        } else {
-               id = atoi(s);
-               fact = fact_buscar(lst_facturas, nodo->numero, &id, &id_texto);
+               fact = fact_buscar(lst_facturas, atoi(s), &id, &id_texto);
        }
 
        if (fact == NULL) {
@@ -511,8 +508,11 @@ void fact_modificar(char *s)
 
        entrada = procesar_guardar_factura(fact, lst_facturas, &size);
        if (entrada) {
-               id = lst_facturas->fp->modificar_registro(lst_facturas->fp, id, entrada, size, &error);
-               id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, id_texto, fact->nota, strlen(fact->nota)+1, &error);
+               CLAVE k;
+               k = emufs_indice_generar_clave_desde_valor(lst_facturas->fp->indices, (char *)&fact->numero);
+               lst_facturas->fp->modificar_registro(lst_facturas->fp, k, entrada, size, &error);
+               k.i_clave = id_texto;
+               id_texto = lst_facturas->fp_texto->modificar_registro(lst_facturas->fp_texto, k, fact->nota, strlen(fact->nota)+1, &error);
                free(entrada);
        }