Fixes: buy_unregistered in Order model fix
This commit is contained in:
parent
2022797834
commit
a533ed90a2
1 changed files with 1 additions and 1 deletions
|
|
@ -296,7 +296,7 @@ class OrderViewSet(EvibesViewSet):
|
||||||
promocode_uuid=serializer.validated_data.get("promocode_uuid"),
|
promocode_uuid=serializer.validated_data.get("promocode_uuid"),
|
||||||
customer_name=serializer.validated_data.get("customer_name"),
|
customer_name=serializer.validated_data.get("customer_name"),
|
||||||
customer_email=serializer.validated_data.get("customer_email"),
|
customer_email=serializer.validated_data.get("customer_email"),
|
||||||
customer_phone=serializer.validated_data.get("customer_phone"),
|
customer_phone_number=serializer.validated_data.get("customer_phone_number"),
|
||||||
billing_customer_address=serializer.validated_data.get("billing_customer_address_uuid"),
|
billing_customer_address=serializer.validated_data.get("billing_customer_address_uuid"),
|
||||||
shipping_customer_address=serializer.validated_data.get("shipping_customer_address_uuid"),
|
shipping_customer_address=serializer.validated_data.get("shipping_customer_address_uuid"),
|
||||||
payment_method=serializer.validated_data.get("payment_method"),
|
payment_method=serializer.validated_data.get("payment_method"),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue