You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merhaba,
YKB ile ödeme yapmaya çalıştığım zaman transactionType hatası veriyor. create3DEnrollmentCheckRequestData fonksiyonunda tranType ='pay' olarak dönmekte. Onu Sale olarak çevirdiğim zaman sorun olmadan ödemeyi tamamlıyor.
bu kısmı 'tranType' => $txType, kısmını;
Şöyle değiştirerek 'tranType'=> $this->txTypeMappings[$txType]
çalıştırabiliyorum.
acaba atladığınız bir şey olabilir mi? ya da ben mi hata yapıyorum?
Merhaba,
YKB ile ödeme yapmaya çalıştığım zaman transactionType hatası veriyor. create3DEnrollmentCheckRequestData fonksiyonunda tranType ='pay' olarak dönmekte. Onu Sale olarak çevirdiğim zaman sorun olmadan ödemeyi tamamlıyor.
bu kısmı
'tranType' => $txType,
kısmını;Şöyle değiştirerek
'tranType'=> $this->txTypeMappings[$txType]
çalıştırabiliyorum.
acaba atladığınız bir şey olabilir mi? ya da ben mi hata yapıyorum?
kodun nihai hali;
`
public function create3DEnrollmentCheckRequestData(AbstractPosAccount $account, $order, string $txType, AbstractCreditCard $card): array
{
if (null === $card->getHolderName() && isset($order->name)) {
$card->setHolderName($order->name);
}
return [
'mid' => $account->getClientId(),
'tid' => $account->getTerminalId(),
'oosRequestData' => [
'posnetid' => $account->getPosNetId(),
'ccno' => $card->getNumber(),
`
The text was updated successfully, but these errors were encountered: