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);
}
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) {
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);
}