feat(Payment): add CREDIT payment method

This commit is contained in:
mono
2026-03-14 23:45:52 -05:00
parent b852772c76
commit 5442a52ff6
3 changed files with 25 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ class PaymentMethods(models.TextChoices):
CASH = 'CASH', _('Efectivo')
CONFIAR = 'CONFIAR', _('Confiar')
BANCOLOMBIA = 'BANCOLOMBIA', _('Bancolombia')
CREDIT = 'CREDIT', _('Crédito')
class Customer(models.Model):