Ignore:
Timestamp:
Feb 25, 2015 5:25:04 PM (10 years ago)
Author:
namnd
Message:
 
Location:
pro-violet-viettel/sourcecode/application/modules/admin/controllers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pro-violet-viettel/sourcecode/application/modules/admin/controllers/report.php

    r690 r767  
    5959            }
    6060        }
     61               
     62                $data ['paid_types'] = array (
     63                                        0 => "Tất cả",
     64                                        1 => "SMS",
     65                                        2 => "Card",
     66                );
     67                $data ['paid_type'] = 0;
     68                if ($this->input->post ( 'paid_type' )) {
     69                        $data ['paid_type'] = ( int ) $this->input->post ( 'paid_type' );
     70                }
     71               
    6172                $data['daterange_start'] = "";
    6273                $data['daterange_end'] = "";
     
    7687            $data['paidlogs'][$index]['username'] = @$this->get_fullname($paidlog['us_id']);
    7788        }
    78 
     89               
    7990        if ($this->input->is_ajax_request()) {
    8091            return $this->load->view('report/listview', $data);
  • pro-violet-viettel/sourcecode/application/modules/admin/controllers/user.php

    r765 r767  
    4040                                0 => "Tất cả",
    4141                                1 => "Đã đăng kÜ",
    42                                 2 => "Dùng thá»­"
     42                                2 => "Dùng thá»­",
     43                                3=> "Dùng thá»­ hạn chế",
     44                                4=> "Hết hạn"
    4345                );
    4446                $data ['status'] = 0;
     
    8082                        if ($userinfo) {
    8183                                $u ['username'] = $userinfo ['username'];
     84                                $u['fullname'] = $userinfo['fullname'];
    8285                        }
    8386                        array_push ( $users, $u );
Note: See TracChangeset for help on using the changeset viewer.