Use order_id as refno

This commit is contained in:
Daniel Egger 2024-07-23 14:02:23 +02:00 committed by Christian Cueni
parent 507c1a63f7
commit dacda2e19a
1 changed files with 1 additions and 1 deletions

View File

@ -19,11 +19,11 @@ from vbv_lernwelt.shop.const import (
) )
from vbv_lernwelt.shop.models import CheckoutInformation, CheckoutState, Product from vbv_lernwelt.shop.models import CheckoutInformation, CheckoutState, Product
from vbv_lernwelt.shop.services import ( from vbv_lernwelt.shop.services import (
InitTransactionException,
create_context_data_log, create_context_data_log,
datatrans_state_to_checkout_state, datatrans_state_to_checkout_state,
get_payment_url, get_payment_url,
init_datatrans_transaction, init_datatrans_transaction,
InitTransactionException,
is_signature_valid, is_signature_valid,
) )