This commit is contained in:
2022-03-12 11:19:32 -05:00
parent f391716de4
commit 41fe987f5d
3 changed files with 20 additions and 2 deletions
+16 -1
View File
@@ -894,10 +894,25 @@ class Member extends Users_Controller {
$this->RenderUserPage('users/view_confirmwithdraw', $data);
} else {
$data['sendmoney_table_result'] = $this->getSendMoneyRecent();
$this->RenderUserPage('users/view_finalwithdraw', $data);
$this->session->set_flashdata('reciept_sendmoney', $data);
redirect('member/sendMoneyReciepts');
// $data['sendmoney_table_result'] = $this->getSendMoneyRecent();
// $this->RenderUserPage('users/view_finalwithdraw', $data);
}
}
public function sendMoneyReciepts(){
$data = $this->session->flashdata('reciept_sendmoney');
// var_dump($pending_sendmoney);
if (!isset($data)){
redirect('member/balance');
}
$data['sendmoney_table_result'] = $this->getSendMoneyRecent();
$this->RenderUserPage('users/view_finalwithdraw', $data);
}
private function getSendMoneyRecent(){
@@ -17,4 +17,7 @@
border-color: #4687ba;
background-color: #4687ba;
}
.gr1{
background-color: red;
}
</style>
File diff suppressed because one or more lines are too long