From b286fbd570e84eaa8d165186e0aa85ba0ad99f73 Mon Sep 17 00:00:00 2001 From: Alice Andres Date: Thu, 17 Oct 2024 23:19:25 +0200 Subject: [PATCH] feat(bda): add virement bancaire payment option --- bda/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bda/models.py b/bda/models.py index 9bc2ce3c..eb5b617c 100644 --- a/bda/models.py +++ b/bda/models.py @@ -151,6 +151,7 @@ PAYMENT_TYPES = ( ("cash", "Cash"), ("cb", "CB"), ("cheque", "Chèque"), + ("virmt", "Virement bancaire"), ("autre", "Autre"), )