Withdraw page layout cleanup
This commit is contained in:
@@ -182,7 +182,7 @@ class Bkotransaction extends Bko_Controller {
|
||||
$sdate = '2016-01-01';
|
||||
$edate = '2018-01-01';
|
||||
|
||||
$mysql = "SELECT m.added,mp.confirmation,me.firstname||' '||me.lastname||'<br>'||me.email AS Sender,"
|
||||
$mysql = "SELECT m.added::date,mp.confirmation,me.firstname||' '||me.lastname||'<br>'||me.email AS Sender,"
|
||||
. "sr.firstname||' '||sr.lastname||'<br>ACC:'||sr.account_no||'-'||be.name AS recipient, m.initiatingamount*0.01 AS Amount,m.fee*0.01 AS Fee, "
|
||||
. "'<input type=submit onclick=\"return smoneyDetail('||m.id||')\" name=\"manage\" class=\"btn btn-info btn-sm\" value=\"Detail\">' As Detail, "
|
||||
. "'<input type=submit id=\"acc'||m.id||'\" onclick=\"return smoneyProcess('||m.id||')\" name=\"manage\" class=\"btn btn-info btn-sm\" value=\"Process\">' As Process "
|
||||
@@ -250,7 +250,7 @@ class Bkotransaction extends Bko_Controller {
|
||||
$sdate = '2016-01-01';
|
||||
$edate = '2018-01-01';
|
||||
|
||||
$mysql = "SELECT m.added,mp.confirmation,me.firstname||' '||me.lastname||'<br>'||me.email AS Sender,"
|
||||
$mysql = "SELECT m.added::date,mp.confirmation,me.firstname||' '||me.lastname||'<br>'||me.email AS Sender,"
|
||||
. "sr.firstname||' '||sr.lastname||'<br>ACC:'||sr.account_no||'-'||be.name AS recipient, m.initiatingamount*0.01 AS Amount,m.fee*0.01 AS Fee, "
|
||||
. "'<input type=submit onclick=\"return smoneyDetail('||m.id||')\" name=\"manage\" class=\"btn btn-info btn-xs\" value=\"Detail\">' As Detail, "
|
||||
. "'<input type=submit id=\"acc'||m.id||'\" onclick=\"return smoneyTransmit('||m.id||')\" name=\"manage\" class=\"btn btn-warning btn-xs\" value=\"Transmit >> \">' As Transmit "
|
||||
@@ -262,6 +262,24 @@ class Bkotransaction extends Bko_Controller {
|
||||
. "WHERE m.status =1 AND m.completed IS NULL ORDER BY m.added DESC ";
|
||||
|
||||
$query = $this->db->query($mysql);
|
||||
|
||||
$this->table->set_heading(
|
||||
array('data' => 'Date', 'style' => 'width:100px'),
|
||||
array('data' => 'Confirmation', 'style' => 'width:100px'),
|
||||
'Sender',
|
||||
'Recipient',
|
||||
array('data' => 'Amount', 'style' => 'width:100px'),
|
||||
array('data' => 'Fee', 'style' => 'width:60px'),
|
||||
array('data' => 'Detail', 'style' => 'width:100px'),
|
||||
array('data' => 'Action', 'style' => 'width:100px')
|
||||
);
|
||||
//
|
||||
//
|
||||
//array('data' => 'Date', 'style' => 'width:100px')
|
||||
//array('data' => 'Date', 'style' => 'width:100px')
|
||||
//array('data' => 'Date', 'style' => 'width:100px')
|
||||
//
|
||||
|
||||
$data['sendmoney_dash_table'] = $this->table->generate($query);
|
||||
|
||||
|
||||
|
||||
@@ -70,6 +70,9 @@
|
||||
<!-- Form with validation -->
|
||||
<form action="/bko/login" method="POST">
|
||||
<div class="panel panel-body login-form">
|
||||
<div class="text-center">
|
||||
<img src="/assets/ext/images/wrenchboard.png" alt="WrenchBoard">
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<h5 class="content-group">Your BackOffice Account <small class="display-block">Your credentials</small></h5>
|
||||
</div>
|
||||
@@ -128,7 +131,9 @@
|
||||
|
||||
<div class="navbar-collapse collapse" id="footer">
|
||||
<div class="navbar-text">
|
||||
© <?php echo date("Y"); ?>. <a href="/bko/" class="navbar-link">WrenchBoard</a> | <a href="https://www.facebook.com/wrenchboard/" class="navbar-link" target="_blank">Facebook</a> [<b>Tools:</b><a target="_blank" href="https://ibank.gtbank.com/GAPSNew/Alert.aspx">GTB</a></b> | <b><a href="https://www.twilio.com">TWILO[support@wrenchboard.com]</a></b>]
|
||||
© <?php echo date("Y"); ?>. <a href="/bko/" class="navbar-link">WrenchBoard</a> | <a href="https://www.facebook.com/wrenchboard/" class="navbar-link" target="_blank">Facebook</a> [<b>Tools:</b><a target="_blank" href="https://ibank.gtbank.com/GAPSNew/Alert.aspx">GTB</a></b>
|
||||
| <b><a href="https://www.twilio.com">TWILO[support@wrenchboard.com]</a></b>
|
||||
| <b><a href="https://dashboard.flutterwave.com/login">Flutterwave</a></b>]
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<!-- Traffic sources -->
|
||||
<div class="panel panel-flat">
|
||||
<div class="panel-heading">
|
||||
<h6 class="panel-title"><b>Interswitch Transmit Withdraw</b></h6>
|
||||
<h6 class="panel-title"><b>Transmit Withdrawals</b></h6>
|
||||
<div class="heading-elements">
|
||||
<form class="heading-form" action="#">
|
||||
|
||||
|
||||
Reference in New Issue
Block a user