[PR #194] [MERGED] issue #172 - upgrade KuveytPos version to TDV2.0.0 #244

Closed
opened 2026-03-03 15:44:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mewebstudio/pos/pull/194
Author: @nuryagdym
Created: 3/30/2024
Status: Merged
Merged: 4/23/2024
Merged by: @nuryagdym

Base: masterHead: 172-kuveyt-turk-api-versiyon-guncellemesi


📝 Commits (7)

  • cec6841 issue #172 - upgrade KuveytPos version to TDV2.0.0
  • 61bebda tests - refactor KuveytPosRequestDataMapperTest
  • 9c97ed4 test - refactor KuveytPosSerializerTest.php
  • c2bcfde issue #172 fix KuvetPos v2 3d payment is not working
  • 63eb8cd issue #159 fix KuveytPos cancel and refund is not working
  • a0bc982 issue #159 KuveytPos change PartialDrawback to Drawback
  • 899eea1 Merge branch 'master' into 172-kuveyt-turk-api-versiyon-guncellemesi

📊 Changes

12 files changed (+699 additions, -52 deletions)

View changed files

📝 config/pos_production.php (+2 -2)
📝 docs/THREED-PAYMENT-EXAMPLE.md (+33 -0)
📝 examples/_common-codes/3d/form.php (+65 -0)
📝 examples/kuveytpos/3d/_config.php (+2 -2)
📝 examples/kuveytpos/_payment_config.php (+5 -4)
📝 src/DataMapper/RequestDataMapper/KuveytPosRequestDataMapper.php (+8 -5)
📝 src/DataMapper/ResponseDataMapper/KuveytPosResponseDataMapper.php (+25 -8)
📝 src/Gateways/KuveytPos.php (+7 -1)
tests/Functional/KuveytPosTest.php (+141 -0)
📝 tests/Unit/DataMapper/RequestDataMapper/KuveytPosRequestDataMapperTest.php (+6 -16)
📝 tests/Unit/DataMapper/ResponseDataMapper/KuveytPosResponseDataMapperTest.php (+395 -4)
📝 tests/Unit/Serializer/KuveytPosSerializerTest.php (+10 -10)

📄 Description

  • TDV2.0.0 API upgrade yapildi
  • #159 iptal ve iade sorunu cozuldu
  • iade eskiden PartialDrawback istegi kullaniliyordu, bununla tutarin tamamini iade edemiyoruz, bu yuzden Drawback olarak degistirdim.
  • ilerde partial refund icin bir calisma yapacagim.
  • status istegi calisimiyor, bankaya bildirdim, donus alinca ilgilenirim.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mewebstudio/pos/pull/194 **Author:** [@nuryagdym](https://github.com/nuryagdym) **Created:** 3/30/2024 **Status:** ✅ Merged **Merged:** 4/23/2024 **Merged by:** [@nuryagdym](https://github.com/nuryagdym) **Base:** `master` ← **Head:** `172-kuveyt-turk-api-versiyon-guncellemesi` --- ### 📝 Commits (7) - [`cec6841`](https://github.com/mewebstudio/pos/commit/cec68415197ee01c6bc32816e3965c05c8cf6ec9) issue #172 - upgrade KuveytPos version to TDV2.0.0 - [`61bebda`](https://github.com/mewebstudio/pos/commit/61bebda6e78b917c250c1d1ab10c048c9b935c42) tests - refactor KuveytPosRequestDataMapperTest - [`9c97ed4`](https://github.com/mewebstudio/pos/commit/9c97ed4713863e043efbde197de4366a02c9c889) test - refactor KuveytPosSerializerTest.php - [`c2bcfde`](https://github.com/mewebstudio/pos/commit/c2bcfde0e166d1d9245efe7e9028c0a7fd677e11) issue #172 fix KuvetPos v2 3d payment is not working - [`63eb8cd`](https://github.com/mewebstudio/pos/commit/63eb8cd5bc60c2a3a487251a8451faa4c639a4a2) issue #159 fix KuveytPos cancel and refund is not working - [`a0bc982`](https://github.com/mewebstudio/pos/commit/a0bc9825be35319443de08746f53f78b57dd9378) issue #159 KuveytPos change PartialDrawback to Drawback - [`899eea1`](https://github.com/mewebstudio/pos/commit/899eea125f36202a800e7e57e12fabeb78dc958d) Merge branch 'master' into 172-kuveyt-turk-api-versiyon-guncellemesi ### 📊 Changes **12 files changed** (+699 additions, -52 deletions) <details> <summary>View changed files</summary> 📝 `config/pos_production.php` (+2 -2) 📝 `docs/THREED-PAYMENT-EXAMPLE.md` (+33 -0) 📝 `examples/_common-codes/3d/form.php` (+65 -0) 📝 `examples/kuveytpos/3d/_config.php` (+2 -2) 📝 `examples/kuveytpos/_payment_config.php` (+5 -4) 📝 `src/DataMapper/RequestDataMapper/KuveytPosRequestDataMapper.php` (+8 -5) 📝 `src/DataMapper/ResponseDataMapper/KuveytPosResponseDataMapper.php` (+25 -8) 📝 `src/Gateways/KuveytPos.php` (+7 -1) ➕ `tests/Functional/KuveytPosTest.php` (+141 -0) 📝 `tests/Unit/DataMapper/RequestDataMapper/KuveytPosRequestDataMapperTest.php` (+6 -16) 📝 `tests/Unit/DataMapper/ResponseDataMapper/KuveytPosResponseDataMapperTest.php` (+395 -4) 📝 `tests/Unit/Serializer/KuveytPosSerializerTest.php` (+10 -10) </details> ### 📄 Description - **TDV2.0.0** API upgrade yapildi - #159 **iptal** ve **iade** sorunu cozuldu - iade eskiden **PartialDrawback** istegi kullaniliyordu, bununla tutarin tamamini iade edemiyoruz, bu yuzden **Drawback** olarak degistirdim. - ilerde **partial refund** icin bir calisma yapacagim. - status istegi calisimiyor, bankaya bildirdim, donus alinca ilgilenirim. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 15:44:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/pos#244
No description provided.