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

PayPal: Perform full refund if amount=None #411

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ v3.0.0
- New :ref:`webhook settings <webhooks>`
- Fixed PayPal backends not saving captured_amount when processing data.
- Fixed ``base_payment.refund()`` not making any refund
- PayPal backends now perform a full refund if ``amount=None``.

v2.0.0
------
Expand Down
16 changes: 10 additions & 6 deletions payments/paypal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,15 +313,19 @@ def release(self, payment):
self.post(payment, url)

def refund(self, payment, amount=None):
if amount is None:
amount = payment.captured_amount
amount_data = self.get_amount_data(payment, amount)
refund_data = {"amount": amount_data}
refund_data = {}
if amount is not None:
refund_data["amount"] = self.get_amount_data(payment, amount)
WhyNotHugo marked this conversation as resolved.
Show resolved Hide resolved
links = self._get_links(payment)
url = links["refund"]["href"]
self.post(payment, url, data=refund_data)
response = self.post(payment, url, data=refund_data)
payment.change_status(PaymentStatus.REFUNDED)
return amount
if response["amount"]["currency"] != payment.currency:
raise NotImplementedError(
f"refund's currency other than {payment.currency} not supported yet: "
f"{response['amount']['currency']}"
)
WhyNotHugo marked this conversation as resolved.
Show resolved Hide resolved
return Decimal(response["amount"]["total"])


class PaypalCardProvider(PaypalProvider):
Expand Down
46 changes: 41 additions & 5 deletions payments/paypal/test_paypal.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,17 +234,53 @@ def test_provider_handles_captured_payment(self, mocked_post):
self.assertEqual(self.payment.status, PaymentStatus.CONFIRMED)

@patch("requests.post")
def test_provider_refunds_payment(self, mocked_post):
def test_provider_refunds_payment_fully(self, mocked_post):
data = MagicMock()
data.return_value = {
"token_type": "test_token_type",
"access_token": "test_access_token",
}
data.side_effect = [
{
"token_type": "test_token_type",
"access_token": "test_access_token",
},
{"amount": {"total": "220.00", "currency": "USD"}},
]
post = MagicMock()
post.json = data
post.status_code = 200
mocked_post.return_value = post
self.provider.refund(self.payment)
mocked_post.assert_called_with(
"http://refund.com",
headers={
"Content-Type": "application/json",
"Authorization": "test_token_type test_access_token",
},
data="{}",
)
self.assertEqual(self.payment.status, PaymentStatus.REFUNDED)

@patch("requests.post")
def test_provider_refunds_payment_partially(self, mocked_post):
data = MagicMock()
data.side_effect = [
{
"token_type": "test_token_type",
"access_token": "test_access_token",
},
{"amount": {"total": "1.00", "currency": "USD"}},
]
post = MagicMock()
post.json = data
post.status_code = 200
mocked_post.return_value = post
self.provider.refund(self.payment, amount=Decimal(1))
mocked_post.assert_called_with(
"http://refund.com",
headers={
"Content-Type": "application/json",
"Authorization": "test_token_type test_access_token",
},
data='{"amount": {"currency": "USD", "total": "1.00"}}',
)
self.assertEqual(self.payment.status, PaymentStatus.REFUNDED)

@patch("requests.post")
Expand Down
Loading