Skip to content
Snippets Groups Projects
Commit 97c0ece7 authored by Nikunj Ladava's avatar Nikunj Ladava Committed by Nicolas Martinelli
Browse files

[FIX] payment_payumoney: update sandbox env url


before this commit: it gives error when we redirect to payumoney site

after this commit: payment testing in payumoney is working as expected

closes odoo/odoo#36764

Signed-off-by: default avatarNicolas Martinelli (nim) <nim@odoo.com>
parent 52526920
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ class PaymentAcquirerPayumoney(models.Model):
if environment == 'prod':
return {'payumoney_form_url': 'https://secure.payu.in/_payment'}
else:
return {'payumoney_form_url': 'https://test.payu.in/_payment'}
return {'payumoney_form_url': 'https://sandboxsecure.payu.in/_payment'}
def _payumoney_generate_sign(self, inout, values):
""" Generate the shasign for incoming or outgoing communications.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment