You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

64 lines
1.8 KiB

  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: luocj
  5. * Date: 2017/1/9
  6. * Time: 10:33
  7. */
  8. namespace backend\modules\motorcade\models;
  9. use Yii;
  10. class ReportModel
  11. {
  12. //得到用车单位
  13. static function getBusDepartment()
  14. {
  15. $obj = new BusReport();
  16. $main_corp = $obj->getUserMainCorp();
  17. $main_corp_sql = "and (select main_corp_id2 from base_user e where a.create_user_id = e.id limit 1) = " . $main_corp;
  18. $sql = "select id,depart_name from bus_department a where cancel_flag=0 $main_corp_sql";
  19. $connect = Yii::$app->db;
  20. $data =$connect->createCommand($sql)->queryAll();
  21. return $data;
  22. }
  23. //得到日期
  24. static function getCurMonthFirstDay($date)
  25. {
  26. return date('Y-m-01', strtotime($date));
  27. }
  28. static function getCurMonthLastDay($date)
  29. {
  30. return date('Y-m-t', strtotime($date));
  31. }
  32. //得到车牌号
  33. static function getBusLicense()
  34. {
  35. $obj = new BusReport();
  36. $main_corp = $obj->getUserMainCorp();
  37. $main_corp_sql = "and a.main_corp_id = " . $main_corp;
  38. $sql ="select bus_no,bus_id from base_bus a where a.cancel_flag = 0 $main_corp_sql";
  39. $conn = Yii::$app->db;
  40. $data = $conn ->createCommand($sql)->queryAll();
  41. return $data;
  42. }
  43. //得到司机
  44. static function getBusDriver()
  45. {
  46. $obj = new BusReport();
  47. $main_corp = $obj->getUserMainCorp();
  48. $main_corp_sql = "and a.main_corp_id = " . $main_corp;
  49. $sql = "select driver_name,driver_id from base_driver a where a.cancel_flag = 0 $main_corp_sql";
  50. $conn = Yii::$app->db;
  51. $data[-1] = ['driver_id' => -1, 'driver_name' => '请选择'];
  52. $data = $conn->createCommand($sql)->queryAll();
  53. return $data;
  54. }
  55. }