Adicionar resumen de compra en el formulario de compra #14

Merged
mono merged 8 commits from pagar_una_compra_en_efectivo_#13 into main 2024-08-03 09:45:27 -05:00
2 changed files with 2 additions and 4 deletions
Showing only changes of commit a9ab0f4ee7 - Show all commits

View File

@ -1,6 +1,6 @@
from django.test import TestCase
from django.core.exceptions import ValidationError
from .models import Payment, ReconciliationJar
from ..models import Payment, ReconciliationJar
class TestBilling(TestCase):

View File

@ -1,9 +1,7 @@
from django.test import Client, TestCase
from django.contrib.auth.models import AnonymousUser, User
#from django.conf import settings
#from .views import import_products, products
from .models import Payment
from ..models import Payment
class TestReconciliationJarClient(TestCase):