|
|
|
@ -9,6 +9,13 @@ $(function () {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
success: function () {
|
|
|
|
|
startCheckOrder(window.client_moniker, window.partner_order_id);
|
|
|
|
|
},
|
|
|
|
|
error: function (jqXHR) {
|
|
|
|
|
let errorText = jqXHR.responseText;
|
|
|
|
|
let err = JSON.parse(errorText);
|
|
|
|
|
if(err){
|
|
|
|
|
$('#errorMsgBox').text(err.message).show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|