msg+=f"\n\t- Se han procesado {typer.style(total_refills, fg=typer.colors.GREEN, bold=True)} "
msg+=f"recargas con un importe total de {typer.style(f'{amount}€', fg=typer.colors.GREEN, bold=True)}"
# Actualización de Estado
accounts,balance=update_balance()
update_plan_consumption()
msg+=f"\n\t- Se ha actualizado el saldo de {accounts} cuentas, con un saldo total de {typer.style(f'{round(balance,2)}€', fg=typer.colors.GREEN, bold=True)}€."
# Actualización de CDRs
new_cdrs=add_cdrs()
msg+=f"\n\t- Se han agregado {len(new_cdrs)} llamadas al CDR."