2017-03-11 03:51:06 +08:00
|
|
|
<?php
|
|
|
|
/**
|
2017-03-24 14:26:14 +08:00
|
|
|
* PHP Mikrotik Billing (https://ibnux.github.io/phpmixbill/)
|
2017-03-11 03:51:06 +08:00
|
|
|
**/
|
|
|
|
_admin();
|
|
|
|
$ui->assign('_title', $_L['Dashboard'].' - '. $config['CompanyName']);
|
|
|
|
$admin = Admin::_info();
|
|
|
|
$ui->assign('_admin', $admin);
|
|
|
|
|
|
|
|
if($admin['user_type'] != 'Admin' AND $admin['user_type'] != 'Sales'){
|
|
|
|
r2(U."home",'e',$_L['Do_Not_Access']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$fdate = date('Y-m-01');
|
|
|
|
$tdate = date('Y-m-t');
|
|
|
|
//first day of month
|
|
|
|
$first_day_month = date('Y-m-01');
|
|
|
|
$mdate = date('Y-m-d');
|
|
|
|
$month_n = date('n');
|
|
|
|
|
|
|
|
$iday = ORM::for_table('tbl_transactions')->where('recharged_on',$mdate)->sum('price');
|
|
|
|
if($iday == ''){
|
|
|
|
$iday = '0.00';
|
|
|
|
}
|
|
|
|
$ui->assign('iday',$iday);
|
|
|
|
|
|
|
|
$imonth = ORM::for_table('tbl_transactions')->where_gte('recharged_on',$first_day_month)->where_lte('recharged_on',$mdate)->sum('price');
|
|
|
|
if($imonth == ''){
|
|
|
|
$imonth = '0.00';
|
|
|
|
}
|
|
|
|
$ui->assign('imonth',$imonth);
|
|
|
|
|
|
|
|
$u_act = ORM::for_table('tbl_user_recharges')->where('status','on')->count();
|
|
|
|
if($u_act == ''){
|
|
|
|
$u_act = '0';
|
|
|
|
}
|
|
|
|
$ui->assign('u_act',$u_act);
|
|
|
|
|
|
|
|
$u_all = ORM::for_table('tbl_user_recharges')->count();
|
|
|
|
if($u_all == ''){
|
|
|
|
$u_all = '0';
|
|
|
|
}
|
|
|
|
$ui->assign('u_all',$u_all);
|
|
|
|
//user expire
|
|
|
|
$expire = ORM::for_table('tbl_user_recharges')->where('expiration',$mdate)->order_by_desc('id')->find_many();
|
|
|
|
$ui->assign('expire',$expire);
|
|
|
|
|
|
|
|
//activity log
|
|
|
|
$dlog = ORM::for_table('tbl_logs')->limit(5)->order_by_desc('id')->find_many();
|
|
|
|
$ui->assign('dlog',$dlog);
|
|
|
|
$log = ORM::for_table('tbl_logs')->count();
|
|
|
|
$ui->assign('log',$log);
|
|
|
|
|
2017-03-15 03:37:15 +08:00
|
|
|
// Count stock
|
|
|
|
$tmp = $v = ORM::for_table('tbl_plans')->select('id')->select('name_plan')->find_many();
|
|
|
|
$plans = array();
|
|
|
|
$stocks = array("used"=>0,"unused"=>0);
|
|
|
|
$n = 0;
|
|
|
|
foreach($tmp as $plan){
|
|
|
|
$plans[$n]['name_plan'] = $plan['name_plan'];
|
|
|
|
$plans[$n]['unused'] = ORM::for_table('tbl_voucher')
|
|
|
|
->where('id_plan',$plan['id'])
|
|
|
|
->where('status',0)->count();;
|
|
|
|
$stocks["unused"] += $plans[$n]['unused'];
|
|
|
|
$plans[$n]['used'] = ORM::for_table('tbl_voucher')
|
|
|
|
->where('id_plan',$plan['id'])
|
|
|
|
->where('status',1)->count();;
|
|
|
|
$stocks["used"] += $plans[$n]['used'];
|
|
|
|
$n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
$ui->assign('stocks',$stocks);
|
|
|
|
$ui->assign('plans',$plans);
|
|
|
|
|
2022-09-18 01:00:40 +08:00
|
|
|
run_hook('view_dashboard'); #HOOK
|
2017-03-11 03:51:06 +08:00
|
|
|
$ui->display('dashboard.tpl');
|