|
- <?php
- /**
- * Created by PhpStorm.
- * User: luocj
- * Date: 2017/1/9
- * Time: 10:33
- */
- namespace backend\modules\motorcade\models;
-
- use Yii;
-
- class ReportModel
- {
- //得到用车单位
- static function getBusDepartment()
- {
- $obj = new BusReport();
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and (select main_corp_id2 from base_user e where a.create_user_id = e.id limit 1) = " . $main_corp;
-
- $sql = "select id,depart_name from bus_department a where cancel_flag=0 $main_corp_sql";
- $connect = Yii::$app->db;
- $data =$connect->createCommand($sql)->queryAll();
- return $data;
- }
-
- //得到日期
- static function getCurMonthFirstDay($date)
- {
- return date('Y-m-01', strtotime($date));
- }
-
- static function getCurMonthLastDay($date)
- {
- return date('Y-m-t', strtotime($date));
- }
- //得到车牌号
- static function getBusLicense()
- {
- $obj = new BusReport();
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and a.main_corp_id = " . $main_corp;
-
- $sql ="select bus_no,bus_id from base_bus a where a.cancel_flag = 0 $main_corp_sql";
- $conn = Yii::$app->db;
- $data = $conn ->createCommand($sql)->queryAll();
- return $data;
- }
-
- //得到司机
- static function getBusDriver()
- {
- $obj = new BusReport();
- $main_corp = $obj->getUserMainCorp();
- $main_corp_sql = "and a.main_corp_id = " . $main_corp;
-
- $sql = "select driver_name,driver_id from base_driver a where a.cancel_flag = 0 $main_corp_sql";
- $conn = Yii::$app->db;
- $data[-1] = ['driver_id' => -1, 'driver_name' => '请选择'];
- $data = $conn->createCommand($sql)->queryAll();
-
- return $data;
- }
- }
|