2015-09-11 09:37:16 +00:00
|
|
|
|
2016-09-26 09:28:47 +00:00
|
|
|
module.exports = new Class
|
2016-01-15 12:31:08 +00:00
|
|
|
({
|
|
|
|
Extends: Vn.Object
|
|
|
|
|
|
|
|
,tpvOrder: null
|
|
|
|
,tpvStatus: null
|
|
|
|
|
|
|
|
,check: function (callback)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2016-09-24 14:32:31 +00:00
|
|
|
this.tpvOrder = Vn.Hash.get ('tpvOrder');
|
|
|
|
this.tpvStatus = Vn.Hash.get ('tpvStatus');
|
2015-09-11 09:37:16 +00:00
|
|
|
|
2016-01-15 12:31:08 +00:00
|
|
|
if (this.tpvStatus)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
var batch = new Sql.Batch ();
|
2016-01-15 12:31:08 +00:00
|
|
|
batch.addValue ('transaction', this.tpvOrder);
|
|
|
|
batch.addValue ('status', this.tpvStatus);
|
2015-09-11 09:37:16 +00:00
|
|
|
|
2016-10-15 18:58:30 +00:00
|
|
|
var query = 'CALL transactionEnd (#transaction, #status)';
|
2016-01-15 12:31:08 +00:00
|
|
|
this.conn.execQuery (query, null, batch);
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
2016-01-15 12:31:08 +00:00
|
|
|
|
|
|
|
if (callback)
|
|
|
|
callback (this, this.tpvOrder, this.tpvStatus);
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
|
2016-01-15 12:31:08 +00:00
|
|
|
,pay: function (amount, company)
|
|
|
|
{
|
|
|
|
this._realPpay (amount * 100, company);
|
|
|
|
}
|
|
|
|
|
|
|
|
,_realPpay: function (amount, company)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
if (amount > 0)
|
|
|
|
{
|
2016-05-05 15:47:45 +00:00
|
|
|
var params = {
|
|
|
|
'amount': parseInt (amount)
|
2015-12-19 15:42:38 +00:00
|
|
|
,'urlOk': this._makeUrl ('ok')
|
|
|
|
,'urlKo': this._makeUrl ('ko')
|
|
|
|
,'company': company
|
2016-05-05 15:47:45 +00:00
|
|
|
};
|
2015-12-19 15:42:38 +00:00
|
|
|
|
2016-09-24 14:32:31 +00:00
|
|
|
this.conn.send ('tpv/transaction', params,
|
2016-05-05 15:47:45 +00:00
|
|
|
this._onTransactionStart.bind (this));
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
else if (!isNaN (amount))
|
|
|
|
Htk.Toast.showError (_('AmountError'));
|
|
|
|
}
|
2016-01-15 12:31:08 +00:00
|
|
|
|
2016-09-24 14:32:31 +00:00
|
|
|
,_onTransactionStart: function (json, error)
|
2016-01-15 12:31:08 +00:00
|
|
|
{
|
2016-05-05 15:47:45 +00:00
|
|
|
if (json)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
var form = document.createElement ('form');
|
|
|
|
form.method = 'post';
|
2016-05-05 15:47:45 +00:00
|
|
|
form.action = json.url;
|
2015-09-11 09:37:16 +00:00
|
|
|
document.body.appendChild (form);
|
|
|
|
|
|
|
|
var fieldsMap =
|
|
|
|
{
|
2015-12-19 15:42:38 +00:00
|
|
|
'Ds_SignatureVersion': 'HMAC_SHA256_V1'
|
2016-05-05 15:47:45 +00:00
|
|
|
,'Ds_MerchantParameters': json.params
|
|
|
|
,'Ds_Signature': json.signature
|
2015-09-11 09:37:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (var field in fieldsMap)
|
|
|
|
{
|
|
|
|
var input = document.createElement ('input');
|
|
|
|
input.type = 'hidden';
|
|
|
|
input.name = field;
|
|
|
|
form.appendChild (input);
|
|
|
|
|
|
|
|
if (fieldsMap[field])
|
2015-12-19 15:42:38 +00:00
|
|
|
input.value = fieldsMap[field];
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
form.submit ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Htk.Toast.showWarning (_('PayError'));
|
|
|
|
}
|
2016-05-05 15:47:45 +00:00
|
|
|
|
|
|
|
,retryPay: function ()
|
|
|
|
{
|
|
|
|
var batch = new Sql.Batch ();
|
|
|
|
batch.addValue ('transaction', parseInt (this.tpvOrder));
|
|
|
|
|
|
|
|
var query = 'SELECT t.amount, m.company_id '
|
|
|
|
+'FROM tpv_transaction_view t '
|
|
|
|
+'JOIN tpv_merchant m ON t.merchant_id = m.id '
|
|
|
|
+'WHERE t.id = #transaction';
|
|
|
|
this.conn.execQuery (query,
|
|
|
|
this._onRetryPayDone.bind (this), batch);
|
|
|
|
}
|
|
|
|
|
|
|
|
,_onRetryPayDone: function (resultSet)
|
|
|
|
{
|
|
|
|
var res = resultSet.fetchResult ();
|
|
|
|
|
|
|
|
if (res.next ())
|
|
|
|
this._realPpay (res.get ('amount'), res.get ('company_id'));
|
|
|
|
else
|
|
|
|
Htk.Toast.showError (_('AmountError'));
|
|
|
|
}
|
2015-09-11 09:37:16 +00:00
|
|
|
|
|
|
|
,_makeUrl: function (status, order)
|
|
|
|
{
|
|
|
|
var path = location.protocol +'//'+ location.host;
|
|
|
|
path += location.port ? ':'+ location.port : '';
|
|
|
|
path += location.pathname;
|
|
|
|
path += location.search ? location.search : '';
|
|
|
|
path += Vn.Hash.make ({
|
|
|
|
'form': 'ecomerce/orders',
|
2016-09-24 14:32:31 +00:00
|
|
|
'tpvStatus': status,
|
|
|
|
'tpvOrder': '%s'
|
2015-09-11 09:37:16 +00:00
|
|
|
}, true);
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
2016-01-15 12:31:08 +00:00
|
|
|
});
|
2015-09-11 09:37:16 +00:00
|
|
|
|