account-balance cli command
continuous-integration/drone/push Build is passing Details

This commit is contained in:
forest 2021-07-26 15:29:34 -05:00 committed by 3wc
parent a9a4c4448c
commit b3c655bc47
1 changed files with 12 additions and 0 deletions

View File

@ -62,6 +62,18 @@ def sql_script(f, c):
model.connection.commit()
@bp.cli.command('account-balance')
@click.option('-u', help='users email address')
@with_appcontext
def account_balance(u):
vms = get_model().list_vms_for_account(u)
payments = get_model().list_payments_for_account(u)
click.echo(".")
click.echo(".")
click.echo(get_account_balance(vms, payments, datetime.utcnow()))
click.echo(".")
@bp.cli.command('cron-task')
@with_appcontext