diff options
Diffstat (limited to 'public/admin/view/template/extension/payment/realex_order.twig')
-rw-r--r-- | public/admin/view/template/extension/payment/realex_order.twig | 224 |
1 files changed, 224 insertions, 0 deletions
diff --git a/public/admin/view/template/extension/payment/realex_order.twig b/public/admin/view/template/extension/payment/realex_order.twig new file mode 100644 index 0000000..2af978f --- /dev/null +++ b/public/admin/view/template/extension/payment/realex_order.twig @@ -0,0 +1,224 @@ +<h2>{{ text_payment_info }}</h2> +<div class="alert alert-success" id="realex-transaction-msg" style="display:none;"></div> +<table class="table table-striped table-bordered"> + <tr> + <td>{{ text_order_ref }}</td> + <td>{{ realex_order.order_ref }}</td> + </tr> + <tr> + <td>{{ text_order_total }}</td> + <td>{{ realex_order.total_formatted }}</td> + </tr> + <tr> + <td>{{ text_total_captured }}</td> + <td id="realex-total-captured">{{ realex_order.total_captured_formatted }}</td> + </tr> + <tr> + <td>{{ text_capture_status }}</td> + <td id="capture_status"> + {% if realex_order.capture_status == 1 %} + <span class="capture-text">{{ text_yes }}</span> + {% else %} + <span class="capture-text">{{ text_no }}</span> + {% if realex_order.void_status == 0 %} + <input type="text" width="10" id="capture-amount" value="{{ realex_order.total }}"/> + <a class="button btn btn-primary" id="button-capture">{{ button_capture }}</a> + <span class="btn btn-primary" id="loading-capture" style="display:none;"><i class="fa fa-circle-o-notch fa-spin fa-lg"></i></span> + {% endif %} + {% endif %} + </td> + </tr> + <tr> + <td>{{ text_void_status }}</td> + <td id="void_status"> + {% if realex_order.void_status == 1 %} + <span class="void_text">{{ text_yes }}</span> + {% else %} + <span class="void_text">{{ text_no }}</span> + <a class="button btn btn-primary" id="button-void">{{ button_void }}</a> + <span class="btn btn-primary" id="loading-void" style="display:none;"><i class="fa fa-circle-o-notch fa-spin fa-lg"></i></span> + {% endif %} + </td> + </tr> + <tr> + <td>{{ text_rebate_status }}</td> + <td id="rebate_status"> + {% if realex_order.rebate_status == 1 %} + <span class="rebate_text">{{ text_yes }}</span> + {% else %} + <span class="rebate_text">{{ text_no }}</span> + {% if realex_order.total_captured > 0 and realex_order.void_status == 0 %} + <input type="text" width="10" id="rebate-amount" /> + <a class="button btn btn-primary" id="button-rebate">{{ button_rebate }}</a> + <span class="btn btn-primary" id="loading-rebate" style="display:none;"><i class="fa fa-circle-o-notch fa-spin fa-lg"></i></span> + {% endif %} + {% endif %} + </td> + </tr> + <tr> + <td>{{ text_transactions }}:</td> + <td> + <table class="table table-striped table-bordered" id="realex-transactions"> + <thead> + <tr> + <td class="text-left"><strong>{{ text_column_date_added }}</strong></td> + <td class="text-left"><strong>{{ text_column_type }}</strong></td> + <td class="text-left"><strong>{{ text_column_amount }}</strong></td> + </tr> + </thead> + <tbody> + {% for transaction in realex_order.transactions %} + <tr> + <td class="text-left">{{ transaction.date_added }}</td> + <td class="text-left">{{ transaction.type }}</td> + <td class="text-left">{{ transaction.amount }}</td> + </tr> + {% endfor %} + </tbody> + </table> + </td> + </tr> +</table> +<script type="text/javascript"><!-- + $("#button-void").click(function () { + if (confirm('{{ text_confirm_void }}')) { + $.ajax({ + type:'POST', + dataType: 'json', + data: {'order_id': '{{ order_id }}' }, + url: 'index.php?route=extension/payment/realex/void&user_token={{ user_token }}', + beforeSend: function() { + $('#button-void').hide(); + $('#loading-void').show(); + $('#realex-transaction-msg').hide(); + }, + success: function(data) { + if (data.error == false) { + html = ''; + html += '<tr>'; + html += '<td class="text-left">'+data.data.date_added+'</td>'; + html += '<td class="text-left">void</td>'; + html += '<td class="text-left">0.00</td>'; + html += '</tr>'; + + $('.void_text').text('{{ text_yes }}'); + $('#realex-transactions').append(html); + $('#button-capture').hide(); + $('#capture-amount').hide(); + + if (data.msg != '') { + $('#realex-transaction-msg').empty().html('<i class="fa fa-check-circle"></i> '+data.msg).fadeIn(); + } + } + if (data.error == true) { + alert(data.msg); + $('#button-void').show(); + } + + $('#loading-void').hide(); + } + }); + } + }); + $("#button-capture").click(function () { + if (confirm('{{ text_confirm_capture }}')) { + $.ajax({ + type:'POST', + dataType: 'json', + data: {'order_id' : '{{ order_id }}', 'amount' : $('#capture-amount').val() }, + url: 'index.php?route=extension/payment/realex/capture&user_token={{ user_token }}', + beforeSend: function() { + $('#button-capture').hide(); + $('#capture-amount').hide(); + $('#loading-capture').show(); + $('#realex-transaction-msg').hide(); + }, + success: function(data) { + if (data.error == false) { + html = ''; + html += '<tr>'; + html += '<td class="text-left">'+data.data.date_added+'</td>'; + html += '<td class="text-left">payment</td>'; + html += '<td class="text-left">'+data.data.amount+'</td>'; + html += '</tr>'; + + $('#realex-transactions').append(html); + $('#realex-total-captured').text(data.data.total); + + if (data.data.capture_status == 1) { + $('#button-void').hide(); + $('.capture-text').text('{{ text_yes }}'); + } else { + $('#button-capture').show(); + $('#capture-amount').val('0.00'); + + {% if auto_settle == 2 %} + $('#capture-amount').show(); + {% endif %} + } + + if (data.msg != '') { + $('#realex-transaction-msg').empty().html('<i class="fa fa-check-circle"></i> '+data.msg).fadeIn(); + } + + $('#button-rebate').show(); + $('#rebate-amount').val(0.00).show(); + } + if (data.error == true) { + alert(data.msg); + $('#button-capture').show(); + $('#capture-amount').show(); + } + + $('#loading-capture').hide(); + } + }); + } + }); + $("#button-rebate").click(function () { + if (confirm('{{ text_confirm_rebate }}')) { + $.ajax({ + type:'POST', + dataType: 'json', + data: {'order_id': '{{ order_id }}', 'amount' : $('#rebate-amount').val() }, + url: 'index.php?route=extension/payment/realex/rebate&user_token={{ user_token }}', + beforeSend: function() { + $('#button-rebate').hide(); + $('#rebate-amount').hide(); + $('#loading-rebate').show(); + $('#realex-transaction-msg').hide(); + }, + success: function(data) { + if (data.error == false) { + html = ''; + html += '<tr>'; + html += '<td class="text-left">'+data.data.date_added+'</td>'; + html += '<td class="text-left">rebate</td>'; + html += '<td class="text-left">'+data.data.amount+'</td>'; + html += '</tr>'; + + $('#realex-transactions').append(html); + $('#realex-total-captured').text(data.data.total_captured); + + if (data.data.rebate_status == 1) { + $('.rebate_text').text('{{ text_yes }}'); + } else { + $('#button-rebate').show(); + $('#rebate-amount').val(0.00).show(); + } + + if (data.msg != '') { + $('#realex-transaction-msg').empty().html('<i class="fa fa-check-circle"></i> '+data.msg).fadeIn(); + } + } + if (data.error == true) { + alert(data.msg); + $('#button-rebate').show(); + } + + $('#loading-rebate').hide(); + } + }); + } + }); +//--></script>
\ No newline at end of file |