diff --git a/RIGS/migrations/0051_alter_payment_method.py b/RIGS/migrations/0051_alter_payment_method.py new file mode 100644 index 00000000..60b53e65 --- /dev/null +++ b/RIGS/migrations/0051_alter_payment_method.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.19 on 2023-07-09 21:23 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('RIGS', '0050_event_forum_url'), + ] + + operations = [ + migrations.AlterField( + model_name='payment', + name='method', + field=models.CharField(blank=True, choices=[('C', 'Cash'), ('I', 'Internal'), ('E', 'External'), ('T', 'TEC Adjustment')], default='', max_length=2), + ), + ] diff --git a/RIGS/models.py b/RIGS/models.py index 2314ab66..18238a03 100644 --- a/RIGS/models.py +++ b/RIGS/models.py @@ -688,13 +688,11 @@ class Payment(models.Model, RevisionMixin): CASH = 'C' INTERNAL = 'I' EXTERNAL = 'E' - SUCORE = 'SU' ADJUSTMENT = 'T' METHODS = ( (CASH, 'Cash'), (INTERNAL, 'Internal'), (EXTERNAL, 'External'), - (SUCORE, 'SU Core'), (ADJUSTMENT, 'TEC Adjustment'), ) diff --git a/RIGS/templates/payment_form.html b/RIGS/templates/payment_form.html index f699e619..ef029656 100644 --- a/RIGS/templates/payment_form.html +++ b/RIGS/templates/payment_form.html @@ -29,7 +29,15 @@