Add explanations to payment methods, remove 'SU Core' method as now obsolete

This commit is contained in:
2023-07-09 22:24:36 +01:00
parent 0c2e677786
commit c722773586
3 changed files with 27 additions and 3 deletions

View File

@@ -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'),
)