ozgur/php-est

'Amount/Total' field size is out of limit

Opened this issue · 1 comments

"'Amount/Total' field size is out of limit" hatası alıyorsanız çözüm şöyle olmalı:

est.php dosyasındaki
$amount = number_format($amount, 2);
satırlarını
$amount = number_format($amount, 2, '.', '');
olarak değiştirin.

Çözülmüş görünüyor. Kapatılabilir.