feat: removed customer modl

This commit is contained in:
2024-12-07 11:34:00 +01:00
parent 48d39f55ba
commit ef91ef9090
10 changed files with 4 additions and 196 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ from decimal import Decimal
from django.contrib.auth import get_user_model
from rest_framework.test import APITestCase as TestCase
from shop.models import Customer, Product, ProductPrice, Tax, CustomerAddress
from shop.models import Product, ProductPrice, Tax, CustomerAddress
from shop.utils import create_order, create_order_line_for_product
User = get_user_model()