billing admin account 1

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-05 08:01:55 +00:00
parent f91037b729
commit 1e718105f2
12 changed files with 378 additions and 85 deletions

View File

@@ -0,0 +1,63 @@
# Generated by Django 5.2.8 on 2025-12-05 07:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('billing', '0004_add_invoice_payment_models'),
]
operations = [
migrations.AddField(
model_name='credittransaction',
name='reference_id',
field=models.CharField(blank=True, help_text='Optional reference (e.g., payment id, invoice id)', max_length=255),
),
migrations.AddField(
model_name='invoice',
name='billing_email',
field=models.EmailField(blank=True, max_length=254, null=True),
),
migrations.AddField(
model_name='invoice',
name='billing_period_end',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='invoice',
name='billing_period_start',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='invoice',
name='currency',
field=models.CharField(default='USD', max_length=3),
),
migrations.AddField(
model_name='payment',
name='admin_notes',
field=models.TextField(blank=True, help_text='Internal notes on approval/rejection'),
),
migrations.AddField(
model_name='payment',
name='transaction_reference',
field=models.CharField(blank=True, max_length=255),
),
migrations.AlterField(
model_name='invoice',
name='subtotal',
field=models.DecimalField(decimal_places=2, default=0, max_digits=10),
),
migrations.AlterField(
model_name='invoice',
name='total',
field=models.DecimalField(decimal_places=2, default=0, max_digits=10),
),
migrations.AlterField(
model_name='payment',
name='status',
field=models.CharField(choices=[('pending', 'Pending'), ('pending_approval', 'Pending Approval'), ('processing', 'Processing'), ('succeeded', 'Succeeded'), ('completed', 'Completed'), ('failed', 'Failed'), ('refunded', 'Refunded'), ('cancelled', 'Cancelled')], db_index=True, default='pending', max_length=20),
),
]