source: pro-violet-viettel/sourcecode/application/modules/admin/controllers/report.php @ 586

Last change on this file since 586 was 586, checked in by quyenla, 10 years ago

HOME

File size: 10.3 KB
Line 
1<?php
2
3if (!defined('BASEPATH'))
4    exit('No direct script access allowed');
5
6class Report extends MX_Controller {
7
8    const TOKENPW = 'violet';
9
10    public function __construct() {
11        parent::__construct();
12        $this->load->helper('cookie');
13    }
14
15    public function index() {
16        $data = array();
17        $admin_info = $this->session->userdata('adminInfo');
18        if ($admin_info) {
19            $data['statistics'] = $this->getStatistics();
20            $data['content'] = $this->getPaidlogs();
21            $this->load->view('report/index', $data);
22        } else {
23            $this->load->view('login');
24        }
25    }
26
27    public function getStatistics() {
28        $data = array();
29
30        $last_month['start'] = strtotime(date("Y-m-d", strtotime("first day of previous month")) . " 00:00:00");
31        $last_month['end'] = strtotime(date("Y-m-d", strtotime("last day of previous month")) . " 23:59:59");
32
33        $last_week['start'] = strtotime(date("Y-m-d", strtotime("first day of previous week")) . " 00:00:00");
34        $last_week['end'] = strtotime(date("Y-m-d", strtotime("last day of previous week")) . " 23:59:59");
35
36        $last_week['end'] = strtotime('last sunday') + (24 * 60 * 60 - 1);
37        $last_week['start'] = ($last_week['end'] - 7 * 24 * 60 * 60 + 1);
38
39        $last_year['start'] = strtotime((date("Y") - 1) . "-01-01 00:00:00");
40        $last_year['end'] = strtotime((date("Y") - 1) . "-12-31 23:59:59");
41
42
43
44        $last_quarter = $this->getLastquarter();
45        $last_quarter['start'] = $last_quarter['start'];
46        $last_quarter['end'] = $last_quarter['end'];
47
48
49        $this->load->model('paidlog_model');
50        $paidlogs = $this->paidlog_model->getAllPaidlogs($last_year['start']);
51
52        $revenue['last_week'] = 0;
53        $revenue['last_month'] = 0;
54        $revenue['last_quarter'] = 0;
55        $revenue['last_year'] = 0;
56
57        $lastmonth = strtotime("first day of previous month");
58        $thismonth = strtotime("first day of this month");
59        $charts['last_month'] = array(0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0);
60        $charts['this_month'] = array(0 => 0, 1 => 0, 2 => 0, 3 => 0, 4 => 0);
61
62        foreach ($paidlogs as $paidlog) {
63
64            if (($paidlog['time'] < $last_week['end']) && ($paidlog['time'] > $last_week['start'])) {
65                $revenue['last_week']+=$paidlog['amount'];
66            }
67            if (($paidlog['time'] < $last_month['end']) && ($paidlog['time'] > $last_month['start'])) {
68                $revenue['last_month']+=$paidlog['amount'];
69            }
70            if (($paidlog['time'] < $last_quarter['end']) && ($paidlog['time'] > $last_quarter['start'])) {
71                $revenue['last_quarter']+=$paidlog['amount'];
72            }
73            if (($paidlog['time'] < $last_year['end']) && ($paidlog['time'] > $last_year['start'])) {
74                $revenue['last_year']+=$paidlog['amount'];
75            }
76           
77           
78            if (($paidlog['time'] < $lastmonth + (7 * 24 * 60 * 60)) && ($paidlog['time'] > $lastmonth)) {
79                $charts['last_month'][0]+=$paidlog['amount'];
80            }
81            if (($paidlog['time'] < $lastmonth + (14 * 24 * 60 * 60)) && ($paidlog['time'] > $lastmonth + (7 * 24 * 60 * 60))) {
82                $charts['last_month'][1]+=$paidlog['amount'];
83            }
84            if (($paidlog['time'] < $lastmonth + (21 * 24 * 60 * 60)) && ($paidlog['time'] > $lastmonth + (14 * 24 * 60 * 60))) {
85                $charts['last_month'][2]+=$paidlog['amount'];
86            }
87            if (($paidlog['time'] < $lastmonth + (28 * 24 * 60 * 60)) && ($paidlog['time'] > $lastmonth + (21 * 24 * 60 * 60))) {
88                $charts['last_month'][3]+=$paidlog['amount'];
89            }
90            if (($paidlog['time'] < $thismonth) && ($paidlog['time'] > $lastmonth + (28 * 24 * 60 * 60))) {
91                $charts['last_month'][4]+=$paidlog['amount'];
92            }
93           
94
95            if (($paidlog['time'] < $thismonth + (7 * 24 * 60 * 60)) && ($paidlog['time'] > $thismonth)) {
96                $charts['this_month'][0]+=$paidlog['amount'];
97            }
98            if (($paidlog['time'] < $thismonth + (14 * 24 * 60 * 60)) && ($paidlog['time'] > $thismonth + (7 * 24 * 60 * 60))) {
99                $charts['this_month'][1]+=$paidlog['amount'];
100            }
101            if (($paidlog['time'] < $thismonth + (21 * 24 * 60 * 60)) && ($paidlog['time'] > $thismonth + (14 * 24 * 60 * 60))) {
102                $charts['this_month'][2]+=$paidlog['amount'];
103            }
104            if (($paidlog['time'] < $thismonth + (28 * 24 * 60 * 60)) && ($paidlog['time'] > $thismonth + (21 * 24 * 60 * 60))) {
105                $charts['this_month'][3]+=$paidlog['amount'];
106            }
107            if (($paidlog['time'] < $thismonth + (31 * 24 * 60 * 60)) && ($paidlog['time'] > $thismonth + (28 * 24 * 60 * 60))) {
108                $charts['this_month'][4]+=$paidlog['amount'];
109            }
110           
111        }
112        $max = 0;
113        foreach ($charts['last_month'] as $index => $total) {
114            if ($total > $max) {
115                $max = $total;
116            }
117            $chart_last_month[] = array($index, $total);
118        }
119        foreach ($charts['this_month'] as $index => $total) {
120            if ($total > $max) {
121                $max = $total;
122            }
123            $chart_this_month[] = array($index, $total);
124        }
125
126        $data['revenue'] = $revenue;
127        $data['max'] = $max;
128        $chard[] = array("color" => "#e67e22", "label" => "Tháng hiện tại", "data" => $chart_this_month);
129        $chard[] = array("color" => "#1abc9c", "label" => "Tháng trước", "data" => $chart_last_month);
130        $data['chard'] = $chard;
131
132        return $this->load->view('report/statistics', $data, true);
133    }
134
135    public function getLastquarter() {
136        $current_month = date('m');
137        $current_year = date('Y');
138
139        if ($current_month >= 1 && $current_month <= 3) {
140            $start_date = strtotime('1-October-' . ($current_year - 1));  // timestamp or 1-October Last Year 12:00:00 AM
141            $end_date = strtotime('1-Janauary-' . $current_year);  // // timestamp or 1-January  12:00:00 AM means end of 31 December Last year
142        } else if ($current_month >= 4 && $current_month <= 6) {
143            $start_date = strtotime('1-January-' . $current_year);  // timestamp or 1-Janauray 12:00:00 AM
144            $end_date = strtotime('1-April-' . $current_year);  // timestamp or 1-April 12:00:00 AM means end of 31 March
145        } else if ($current_month >= 7 && $current_month <= 9) {
146            $start_date = strtotime('1-April-' . $current_year);  // timestamp or 1-April 12:00:00 AM
147            $end_date = strtotime('1-July-' . $current_year);  // timestamp or 1-July 12:00:00 AM means end of 30 June
148        } else if ($current_month >= 10 && $current_month <= 12) {
149            $start_date = strtotime('1-July-' . $current_year);  // timestamp or 1-July 12:00:00 AM
150            $end_date = strtotime('1-October-' . $current_year);  // timestamp or 1-October 12:00:00 AM means end of 30 September
151        }
152        return array("start" => $start_date, "end" => $end_date);
153    }
154
155    public function getPaidlogs($filters = array()) {
156        $this->load->helper('pagging');
157        $this->load->model('paidlog_model');
158        $data['current_page'] = $this->uri->segment(4, 1);
159        $data['itemsoptions'] = array(10, 25, 50, 100);
160        $data['perpage'] = 10;
161        $data['keyword'] = "";
162        $data['sorting_order'] = "sorting_desc";
163        $data['sorting_field'] = "paid_id";
164
165        if ($this->input->post('sorting_order')) {
166            if ($this->input->post('sorting_order') != "sorting") {
167                $data['sorting_order'] = $this->input->post('sorting_order');
168                $data['sorting_field'] = $this->input->post('sorting_field');
169            }
170        }
171        if ($this->input->post('items')) {
172            $data['perpage'] = $this->input->post('items');
173        }
174        if ($this->input->post('keyword')) {
175            $data['search_field'] = "";
176            $data['keyword'] = $this->input->post('keyword');
177
178            if (preg_match("/[0-9]/", $data['keyword'])) {
179                $data['search_field'] = "cellphone";
180            }
181        }
182
183        $data['start'] = ($data['current_page'] - 1) * $data['perpage'];
184        $data['total'] = $this->paidlog_model->countPaidlog($data);
185        $data['paidlogs'] = $this->paidlog_model->getPaidlogs($data);
186
187        $data['paging_url'] = base_url() . "/admin/doanh_thu_tong_hop/trang/";
188        $data['num_links'] = 2;
189        $data['paging'] = pagging($data);
190        foreach ($data['paidlogs'] as $index => $paidlog) {
191            $data['paidlogs'][$index]['username'] = @$this->get_fullname($paidlog['us_id']);
192        }
193
194        if ($this->input->is_ajax_request()) {
195            return $this->load->view('report/listview', $data);
196        }
197        return $this->load->view('report/listview', $data, true);
198    }
199
200    private function get_fullname($us_id) {
201        $fullname="";
202        $src = 'violet';
203        $token = md5($us_id . self::TOKENPW);
204        $this->load->model('user_model');
205        $data = $this->user_model->get_user_info($src, $us_id, $token);
206        parse_str($data,$data);
207        if (isset($data['fullname']))
208        {
209            $fullname=$data['fullname'];
210        }
211        return $fullname;
212    }
213
214    public function test() {
215
216        /*
217          for ($i = 1; $i <= 5000; $i++) {
218          $input['us_id'] = rand(1, 100);
219          $input['paid_type'] = rand(1, 2);
220          $input['amount'] = rand(3, 10) * 1000;
221          $time = (rand((time() - (12 * 30 * 24 * 60 * 60)), time()));
222          $input['paid_time'] = date("Y-m-d H:i:s", $time);
223          $this->load->model('paidlog_model');
224          $this->paidlog_model->insert($input);
225          }
226
227          die();
228         */
229        for ($i = 1; $i <= 200; $i++) {
230            $input['us_id'] = $i;
231            $input['cellphone'] = "01234567" . (100 + $i);
232            $input['collaborator'] = rand(1, 100);
233            $input['acc_balanced'] = rand(100000, 1000000);
234            $input['expire_date'] = date("Y-m-d H:i:s", time());
235            $time = (rand((time() - (12 * 30 * 24 * 60 * 60)), time()));
236            $input['created_time'] = date("Y-m-d H:i:s", $time);
237            $input['updated_time'] = date("Y-m-d H:i:s", $time);
238            $this->load->model('user_model');
239            $this->user_model->insert($input);
240        }
241    }
242
243}
Note: See TracBrowser for help on using the repository browser.