Browse Source

ajout méthode de paiement liquide et facture

Élie Bouttier 7 years ago
parent
commit
80f5ea144b
1 changed files with 4 additions and 0 deletions
  1. 4 0
      banking/models.py

+ 4 - 0
banking/models.py

@@ -67,9 +67,13 @@ class PaymentUpdate(models.Model):
     FREE = 1
     DEBIT = 2
     TRANSFER = 3
+    CASH = 4
+    INVOICE = 5
     PAYMENT_CHOICES = (
         (DEBIT, 'Prélèvement'),
         (TRANSFER, 'Virement'),
+        (CASH, 'Liquide'),
+        (INVOICE, 'Facture'),
         (FREE, 'Gratuit'),
         (STOP, 'Arrêt'),
     )