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

Неверное определение статуса платежа #16

Open
CvekCoding opened this issue Aug 12, 2020 · 0 comments
Open

Comments

@CvekCoding
Copy link

class OrderStatusResponse extends AbstractResponse

У вас сейчас статус платежа определяется так, как указано в абстрактном Response - если errorCode = 0, то заказ считается успешно оплаченным. Но это неверно, опираться надо на поле orderStatus https://developer.sberbank.ru/doc/v1/acquiring/rest-requests1pay . То есть в класс OrderStatusResponse.php надо добавить метод:

    public function isSuccessful()
    {
        return $this->getOrderStatus() == 2;
    }

Это покроет 1-стадийные платежи. Для 2-стадийных надо еще статус 1 добавить.

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

1 participant