Your IP : 216.73.216.165


Current Path : /var/www/upload/admin/view/template/extension/payment/
Upload File :
Current File : /var/www/upload/admin/view/template/extension/payment/securetrading_ws_order.tpl

<h2><?php echo $text_payment_info; ?></h2>
<div class="success" id="securetrading_ws_transaction_msg" style="display:none;"></div>
<table class="table table-bordered">
	<tr>
		<td><?php echo $text_order_ref; ?></td>
		<td><?php echo $securetrading_ws_order['transaction_reference']; ?></td>
	</tr>
	<tr>
		<td><?php echo $text_order_total; ?></td>
		<td><?php echo $securetrading_ws_order['total_formatted']; ?></td>
	</tr>
	<tr>
		<td><?php echo $text_total_released; ?></td>
		<td id="securetrading_ws_total_released"><?php echo $securetrading_ws_order['total_released_formatted']; ?></td>
	</tr>
	<tr>
		<td><?php echo $text_release_status; ?></td>
		<td id="release_status">
			<?php if ($securetrading_ws_order['release_status'] == 1) { ?>
				<span class="release_text"><?php echo $text_yes; ?></span>
			<?php } else { ?>
				<span class="release_text"><?php echo $text_no; ?></span>&nbsp;&nbsp;
				<?php if ($securetrading_ws_order['void_status'] == 0) { ?>
					<input type="text" width="10" id="release_amount" value="<?php echo $securetrading_ws_order['total']; ?>"/>
					<a class="button btn btn-primary" id="btn_release"><?php echo $button_release; ?></a>
					<span class="btn btn-primary" id="img_loading_release" style="display:none;"><i class="fa fa-cog fa-spin fa-lg"></i></span>
				<?php } ?>
			<?php } ?>
		</td>
	</tr>
	<tr>
		<td><?php echo $text_void_status; ?></td>
		<td id="void_status">
			<?php if ($securetrading_ws_order['void_status'] == 1) { ?>
				<span class="void_text"><?php echo $text_yes; ?></span>
			<?php } elseif ($securetrading_ws_order['void_status'] == 0 && $securetrading_ws_order['release_status'] != 1 && $securetrading_ws_order['rebate_status'] != 1) { ?>
				<span class="void_text"><?php echo $text_no; ?></span>&nbsp;&nbsp;
				<a class="button btn btn-primary" id="btn_void"><?php echo $button_void; ?></a>
				<span class="btn btn-primary" id="img_loading_void" style="display:none;"><i class="fa fa-cog fa-spin fa-lg"></i></span>
			<?php } else { ?>
				<span class="void_text"><?php echo $text_no; ?></span>
			<?php } ?>
		</td>
	</tr>
	<tr>
		<td><?php echo $text_rebate_status; ?></td>
		<td id="rebate_status">
			<?php if ($securetrading_ws_order['rebate_status'] == 1) { ?>
				<span class="rebate_text"><?php echo $text_yes; ?></span>
			<?php } else { ?>
				<span class="rebate_text"><?php echo $text_no; ?></span>&nbsp;&nbsp;

				<?php if ($securetrading_ws_order['total_released'] > 0 && $securetrading_ws_order['void_status'] == 0) { ?>
					<input type="text" width="10" id="rebate_amount" />
					<a class="button btn btn-primary" id="btn_rebate"><?php echo $button_rebate; ?></a>
					<span class="btn btn-primary" id="img_loading_rebate" style="display:none;"><i class="fa fa-cog fa-spin fa-lg"></i></span>
				<?php } ?>
			<?php } ?>
		</td>
	</tr>
	<tr>
		<td><?php echo $text_transactions; ?>:</td>
		<td>
			<table class="table table-bordered" id="securetrading_ws_transactions">
				<thead>
					<tr>
						<td class="text-left"><strong><?php echo $text_column_created; ?></strong></td>
						<td class="text-left"><strong><?php echo $text_column_type; ?></strong></td>
						<td class="text-left"><strong><?php echo $text_column_amount; ?></strong></td>
					</tr>
				</thead>
				<tbody>
					<?php foreach ($securetrading_ws_order['transactions'] as $transaction) { ?>
						<tr>
							<td class="text-left"><?php echo $transaction['created']; ?></td>
							<td class="text-left"><?php echo $transaction['type']; ?></td>
							<td class="text-left"><?php echo $transaction['amount']; ?></td>
						</tr>
					<?php } ?>
				</tbody>
			</table>
		</td>
	</tr>
</table>
<script type="text/javascript"><!--
  $("#btn_void").click(function() {
		if (confirm('<?php echo $text_confirm_void; ?>')) {
			$.ajax({
				type: 'POST',
				dataType: 'json',
				data: {'order_id': <?php echo $order_id; ?>},
				url: 'index.php?route=extension/payment/securetrading_ws/void&token=<?php echo $token; ?>',
				beforeSend: function() {
					$('#btn_void').hide();
					$('#img_loading_void').show();
					$('#securetrading_ws_transaction_msg').hide();
				},
				success: function(data) {
					if (data.error == false) {
						html = '';
						html += '<tr>';
						html += '<td class="text-left">' + data.data.created + '</td>';
						html += '<td class="text-left">reversed</td>';
						html += '<td class="text-left">0.00</td>';
						html += '</tr>';

						$('.void_text').text('<?php echo $text_yes; ?>');
						$('#securetrading_ws_transactions').append(html);
						$('#btn_release').hide();
						$('#release_amount').hide();

						if (data.msg != '') {
							$('#securetrading_ws_transaction_msg').empty().html(data.msg).fadeIn();
						}
					}
					if (data.error == true) {
						alert(data.msg);
						$('#btn_void').show();
					}

					$('#img_loading_void').hide();
				}
			});
		}
	});
	$("#btn_release").click(function() {
		if (confirm('<?php echo $text_confirm_release; ?>')) {
			$.ajax({
				type: 'POST',
				dataType: 'json',
				data: {'order_id': <?php echo $order_id; ?>, 'amount': $('#release_amount').val()},
				url: 'index.php?route=extension/payment/securetrading_ws/release&token=<?php echo $token; ?>',
				beforeSend: function() {
					$('#btn_release').hide();
					$('#release_amount').hide();
					$('#img_loading_release').show();
					$('#securetrading_ws_transaction_msg').hide();
				},
				success: function(data) {
					if (data.error == false) {
						html = '';
						html += '<tr>';
						html += '<td class="text-left">' + data.data.created + '</td>';
						html += '<td class="text-left">payment</td>';
						html += '<td class="text-left">' + data.data.amount + '</td>';
						html += '</tr>';

						$('#securetrading_ws_transactions').append(html);
						$('#securetrading_ws_total_released').text(data.data.total);

						if (data.data.release_status == 1) {
							$('#btn_void').hide();
							$('.release_text').text('<?php echo $text_yes; ?>');
						} else {
							$('#btn_release').show();
							$('#release_amount').val(0.00);

<?php if ($auto_settle == 2) { ?>
								$('#release_amount').show();
<?php } ?>
						}

						if (data.msg != '') {
							$('#securetrading_ws_transaction_msg').empty().html(data.msg).fadeIn();
						}

						$('#btn_rebate').show();
						$('#rebate_amount').val(0.00).show();
					}
					if (data.error == true) {
						alert(data.msg);
						$('#btn_release').show();
						$('#release_amount').show();
					}

					$('#img_loading_release').hide();
				}
			});
		}
	});
	$("#btn_rebate").click(function() {
		if (confirm('<?php echo $text_confirm_rebate; ?>')) {
			$.ajax({
				type: 'POST',
				dataType: 'json',
				data: {'order_id': <?php echo $order_id; ?>, 'amount': $('#rebate_amount').val()},
				url: 'index.php?route=extension/payment/securetrading_ws/rebate&token=<?php echo $token; ?>',
				beforeSend: function() {
					$('#btn_rebate').hide();
					$('#rebate_amount').hide();
					$('#img_loading_rebate').show();
					$('#securetrading_ws_transaction_msg').hide();
				},
				success: function(data) {
					if (data.error == false) {
						html = '';
						html += '<tr>';
						html += '<td class="text-left">' + data.data.created + '</td>';
						html += '<td class="text-left">rebate</td>';
						html += '<td class="text-left">' + data.data.amount + '</td>';
						html += '</tr>';

						$('#securetrading_ws_transactions').append(html);
						$('#securetrading_ws_total_released').text(data.data.total_released);

						if (data.data.rebate_status == 1) {
							$('.rebate_text').text('<?php echo $text_yes; ?>');
						} else {
							$('#btn_rebate').show();
							$('#rebate_amount').val(0.00).show();
						}

						if (data.msg != '') {
							$('#securetrading_ws_transaction_msg').empty().html(data.msg).fadeIn();
						}
					}
					if (data.error == true) {
						alert(data.msg);
						$('#btn_rebate').show();
					}

					$('#img_loading_rebate').hide();
				}
			});
		}
	});
//--></script>