Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hash ver3 geri dönüş amountformat #183

Closed
lansas opened this issue Feb 23, 2024 · 1 comment
Closed

hash ver3 geri dönüş amountformat #183

lansas opened this issue Feb 23, 2024 · 1 comment

Comments

@lansas
Copy link

lansas commented Feb 23, 2024

merhabalar

banka dönüşünü eski hash versiyonuna ek olarak 100 e bölüm işlemini neden gerçekleştirdiniz?

public static function amountFormat(string $amount): float { return ((float) str_replace('.', '', $amount)) / 100; }

eskisinde böyle bir format dönüşümü yapılmıyordu bankanın cevabını.

@nuryagdym
Copy link
Collaborator

Merhabalar,
issue olusturmak icin template'e uyalim lutfen.

Anladigim kadariyla EstV3Pos'u kullaniyorsunuz.
hash hesaplamada amountFormat methodu kullanilmiyor, hash sorunu yasamamaniz gerekiyor.
https://github.com/mewebstudio/pos/blob/master/src/Crypt/EstV3PosCrypt.php

API response'u normalize/map edilirken amountFormat kullaniliyor.
Kullanilma amaci butun gatewayler icin ayni float degerin saglanmasi.
Method aciklamasinda anlatildigi gibi, yaptigi is string degerin float'a donusturulmesi. sayi'da bir degisim olmamasi gerekiyor:

/**
* "100001" => 1000.01 odeme durum sorgulandiginda gelen amount format
* "1000.01" => 1000.01 odeme yapildiginda gelen amount format
* @param string $amount
*
* @return float
*/
public static function amountFormat(string $amount): float
{
return ((float) str_replace('.', '', $amount)) / 100;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants