forked from kevinowino869/mitrobill
Update paymentgateway-audit.tpl
- fix the view
This commit is contained in:
parent
6316992bc3
commit
dc4adbc0c6
@ -17,16 +17,12 @@
|
|||||||
<table class="table table-bordered table-striped table-condensed">
|
<table class="table table-bordered table-striped table-condensed">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>TRX ID</th>
|
|
||||||
<th>PG ID</th>
|
<th>PG ID</th>
|
||||||
<th>{Lang::T('Username')}</th>
|
<th>{Lang::T('Username')}</th>
|
||||||
<th>{Lang::T('Plan Name')}</th>
|
<th>{Lang::T('Plan Name')}</th>
|
||||||
<th>{Lang::T('Routers')}</th>
|
|
||||||
<th>{Lang::T('Price')}</th>
|
<th>{Lang::T('Price')}</th>
|
||||||
<th>{Lang::T('Payment Link')}</th>
|
<th>{Lang::T('Payment Link')}</th>
|
||||||
<th>{Lang::T('Channel')}</th>
|
|
||||||
<th>{Lang::T('Created')}</th>
|
<th>{Lang::T('Created')}</th>
|
||||||
<th>{Lang::T('Expired')}</th>
|
|
||||||
<th>{Lang::T('Paid')}</th>
|
<th>{Lang::T('Paid')}</th>
|
||||||
<th>{Lang::T('Invoice')}</th>
|
<th>{Lang::T('Invoice')}</th>
|
||||||
<th>{Lang::T('Status')}</th>
|
<th>{Lang::T('Status')}</th>
|
||||||
@ -35,13 +31,11 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{foreach $pgs as $pg}
|
{foreach $pgs as $pg}
|
||||||
<tr class="{if $pg['status'] == 1}warning{elseif $pg['status'] == 2}success{else}danger{/if}">
|
<tr class="{if $pg['status'] == 1}warning{elseif $pg['status'] == 2}success{else}danger{/if}">
|
||||||
<td>{$pg['id']}</td>
|
|
||||||
<td><a href="{$_url}paymentgateway/audit-view/{$pg['id']}"
|
<td><a href="{$_url}paymentgateway/audit-view/{$pg['id']}"
|
||||||
class="text-black">{$pg['gateway_trx_id']}</a></td>
|
class="text-black">{$pg['id']}</a></td>
|
||||||
<td><a href="{$_url}customers/viewu/{$pg['username']}" class="text-black">{$pg['username']}</a>
|
<td><a href="{$_url}customers/viewu/{$pg['username']}" class="text-black">{$pg['username']}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>{$pg['plan_name']}</td>
|
<td>{$pg['plan_name']}</td>
|
||||||
<td>{$pg['routers']}</td>
|
|
||||||
<td>{Lang::moneyFormat($pg['price'])}</td>
|
<td>{Lang::moneyFormat($pg['price'])}</td>
|
||||||
<td>
|
<td>
|
||||||
{if $pg['pg_url_payment']}
|
{if $pg['pg_url_payment']}
|
||||||
@ -49,9 +43,7 @@
|
|||||||
rel="noopener noreferrer">open</a>
|
rel="noopener noreferrer">open</a>
|
||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
<td>{$pg['payment_method']} - {$pg['payment_channel']}</td>
|
|
||||||
<td>{if $pg['created_date'] != null}{Lang::dateTimeFormat($pg['created_date'])}{/if}</td>
|
<td>{if $pg['created_date'] != null}{Lang::dateTimeFormat($pg['created_date'])}{/if}</td>
|
||||||
<td>{if $pg['expired_date'] != null}{Lang::dateTimeFormat($pg['expired_date'])}{/if}</td>
|
|
||||||
<td>{if $pg['paid_date'] != null}{Lang::dateTimeFormat($pg['paid_date'])}{/if}</td>
|
<td>{if $pg['paid_date'] != null}{Lang::dateTimeFormat($pg['paid_date'])}{/if}</td>
|
||||||
<td>{if $pg['trx_invoice']}<a href="{$_url}reports/activation&q={$pg['trx_invoice']}"
|
<td>{if $pg['trx_invoice']}<a href="{$_url}reports/activation&q={$pg['trx_invoice']}"
|
||||||
class="text-black">{$pg['trx_invoice']}</a>{/if}</td>
|
class="text-black">{$pg['trx_invoice']}</a>{/if}</td>
|
||||||
@ -63,7 +55,7 @@
|
|||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
{include file="pagination.tpl"}
|
{include file="pagination.tpl"}
|
||||||
<a href="{$_url}paymentgateway/" class="btn btn-default btn-xs">kembali</a>
|
<button type="button" class="btn btn-primary btn-block" onclick="window.history.back();">{Lang::T('back')}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user