sips2: fix name of merchantId (#10758)

This commit is contained in:
Frédéric Péters 2016-04-28 14:25:12 +02:00
parent 157ea273ed
commit 30a7736e46
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ class Payment(PaymentCommon):
'required': True,
},
{
'name': 'merchand_id',
'name': 'merchant_id',
'caption': _('Merchant ID'),
'default': TEST_MERCHANT_ID,
'required': True,
@ -126,7 +126,7 @@ class Payment(PaymentCommon):
def get_data(self):
data = collections.OrderedDict()
data['merchantId'] = self.merchand_id
data['merchantId'] = self.merchant_id
data['keyVersion'] = self.key_version
data['normalReturnUrl'] = self.normal_return_url
if self.automatic_return_url: