forked from uncloud/uncloud
Fix generate-bills
This commit is contained in:
parent
0e6a6afd88
commit
4016c28c5f
1 changed files with 1 additions and 4 deletions
|
@ -9,8 +9,6 @@ from datetime import timedelta, date
|
|||
from django.utils import timezone
|
||||
from uncloud_pay.models import Bill
|
||||
|
||||
BILL_PAYMENT_DELAY=timedelta(days=10)
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
class Command(BaseCommand):
|
||||
|
@ -31,8 +29,7 @@ class Command(BaseCommand):
|
|||
Bill.generate_for(
|
||||
year=now.year,
|
||||
month=now.month,
|
||||
user=user,
|
||||
allowed_delay=BILL_PAYMENT_DELAY)
|
||||
user=user)
|
||||
|
||||
# We're done for this round :-)
|
||||
print("=> Done.")
|
||||
|
|
Loading…
Reference in a new issue