Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

241 linhas
18 KiB

  1. <?php
  2. namespace backend\modules\motorcade\models;
  3. use common\models\User;
  4. use Yii;
  5. use common\models\zModel;
  6. /**
  7. * Created by PhpStorm.
  8. * User: luocj
  9. * Date: 2017/1/9
  10. * Time: 9:57
  11. */
  12. class BusReport extends ReportModel
  13. {
  14. public function load($post, $formName = null)
  15. {
  16. $this->start_date = date('Y-m-01', time());
  17. $this->end_date = date('Y-m-t', time());
  18. $this->bus_user = isset($post['bus_user']) ? $post['bus_user'] : $this->bus_user;
  19. }
  20. /*by luocj
  21. * 路桥费用统计
  22. * 新增司机费用统计
  23. */
  24. public function getLuqiao($get_start_date, $get_end_date, $get_bus_license)
  25. {
  26. $main_corp = $this->getUserMainCorp();
  27. $main_corp_sql = "and (select main_corp_id2 from base_user e where b.create_user_id = e.id limit 1) = " . $main_corp;
  28. $sql = "select (select bus_no from base_bus where send_bus_res_id = bus_id) as bus_license,send_bus_res_id,
  29. (select res_name from base_resource where res_id = (select brand_id from base_bus where send_bus_res_id = bus_id)) as brand_name,
  30. (select seat_desc from base_bus where send_bus_res_id = bus_id) as seat_desc,
  31. count(*) as chuche_count,
  32. (select sum(if(end_value - start_value>0,end_value - start_value,0)) from run_bus_expenses where send_bus_res_id = bus_res_id and run_date between '$get_start_date' and '$get_end_date' and expense_subject_id =462) as chuche_licheng,
  33. (select sum(expense_value) from run_bus_expenses b where bus_res_id = send_bus_res_id and b.cancel_flag = 0 and run_date between '$get_start_date' and '$get_end_date' and expense_subject_id =463 ) as luqiao
  34. from bus_order b where cancel_flag = 0 and if($get_bus_license=-1,0=0,send_bus_res_id=$get_bus_license) and b.run_status in (435,436,437,438) and run_date between '$get_start_date' and '$get_end_date' $main_corp_sql group by send_bus_res_id order by chuche_count desc";
  35. $conn = Yii::$app->db;
  36. $data = $conn->createCommand($sql)->queryAll();
  37. $data_sum['count'] = 0;
  38. $data_sum['luqiao'] = 0;
  39. $data_sum['chuche_licheng'] = 0;
  40. foreach ($data as $v) {
  41. $data_sum['count'] += $v['chuche_count'];
  42. $data_sum['luqiao'] += $v['luqiao'];
  43. $data_sum['chuche_licheng'] += $v['chuche_licheng'];
  44. }
  45. return ['model' => $this, 'data' => $data, 'data_sum' => $data_sum];
  46. }
  47. /*by luocj
  48. * 出车收入统计
  49. */
  50. public function getBusIncome($get_data_type, $get_start_date, $get_end_date, $get_bus_user, $get_line_type)
  51. {
  52. $main_corp = $this->getUserMainCorp();
  53. $main_corp_sql = "and (select main_corp_id2 from base_user e where d.create_user_id = e.id limit 1) = " . Yii::$app->user->identity->MAIN_CORP_ID2;
  54. if ($get_data_type == 1) {
  55. $where_info = "if($get_bus_user=-1,0=0,use_bus_org_id=$get_bus_user) and run_date between '$get_start_date' and '$get_end_date' and if($get_line_type=-1,0=0,line_type=$get_line_type)";
  56. } else {
  57. $where_info = "if($get_bus_user=-1,0=0,use_bus_org_id=$get_bus_user) and date_add(run_date,interval day_num day) between '$get_start_date' and '$get_end_date' and if($get_line_type=-1,0=0,line_type=$get_line_type)";
  58. }
  59. //获取油电费,路桥,司贴,停车费,餐饮费,住宿费,里程数,etc金额
  60. // $sql = "select bus_user_name,use_bus_org_id,settle_type,settle_cycle,max(cost_value1) as 'youdian',max(cost_value2) as 'luqiao',max(cost_value3) as 'sitie',max(cost_value4) as 'tingche',max(cost_value5) as 'canyin',max(cost_value6) as 'zhusu',max(cost_value7) as 'licheng',max(cost_value8) as 'etc' from
  61. // (select bus_user_name,use_bus_org_id, (select type_name from dict_type where id = settle_type) as settle_type,(select type_name from dict_type where id = settle_cycle) as settle_cycle,
  62. // case when expense_subject_id = 462 then cost_value else 0 end as cost_value1,
  63. // case when expense_subject_id = 463 then cost_value else 0 end as cost_value2 ,
  64. // case when expense_subject_id = 464 then cost_value else 0 end as cost_value3 ,
  65. // case when expense_subject_id = 465 then cost_value else 0 end as cost_value4 ,
  66. // case when expense_subject_id = 466 then cost_value else 0 end as cost_value5 ,
  67. // case when expense_subject_id = 467 then cost_value else 0 end as cost_value6 ,
  68. // case when expense_subject_id = 462 then hybrid_cost else 0 end as cost_value7,
  69. // case when expense_subject_id = 463 then hybrid_cost else 0 end as cost_value8
  70. // from
  71. // (select use_bus_org_id,run_date,(
  72. // select depart_name
  73. // from bus_department
  74. // where id = use_bus_org_id) as bus_user_name,expense_subject_id,(
  75. // select settle_type
  76. // from bus_department
  77. // where id = use_bus_org_id) as settle_type,(
  78. // select settle_cycle
  79. // from bus_department
  80. // where id = use_bus_org_id) as settle_cycle,(
  81. // select day_num
  82. // from bus_order c
  83. // where c.bus_number = d.bus_number) as day_num,(
  84. // select type_name
  85. // from dict_type
  86. // where expense_subject_id=id) as type_name, sum(expense_value) as cost_value, sum(start_value-end_value) as hybrid_cost
  87. // from run_bus_expenses d where d.cancel_flag = 0 $main_corp_sql
  88. // group by use_bus_org_id,expense_subject_id) as a where $where_info ) as b group by bus_user_name";
  89. $sql = "select count(id) as chuche_count,sum(send_cost) as send_cost,use_bus_org_id,sum(if(bus_cost_type=478,saled_count * bus_cost,bus_cost)) as chejia,(select depart_name from bus_department where bus_department.ID = use_bus_org_id)as use_bus_org_name from bus_order where run_status in (435,436,437,438) and (select main_corp_id2 as main_corp_id from base_user e where bus_order.create_user_id = e.id limit 1) = " . $main_corp . " and $where_info group by use_bus_org_id order by chuche_count desc";
  90. // $sql = "select count(id) as chuche_count,use_bus_org_id,sum(send_cost) as chejia,(select depart_name from bus_department where bus_department.ID = use_bus_org_id)as use_bus_org_name from bus_order group by use_bus_org_id";
  91. $sql_total = "select count(DISTINCT use_bus_org_id) as all_count from bus_order where (select main_corp_id from base_user e where run_status in (435,436,437,438) and bus_order.create_user_id = e.id limit 1) = " . $main_corp . " and $where_info group by use_bus_org_id";
  92. // $sql_total ="select distinct use_bus_org_id as all_count from bus_order";
  93. $connect = Yii::$app->db;
  94. $data = $connect->createCommand($sql)->queryAll();
  95. $data_temp = $connect->createCommand($sql_total)->queryAll();
  96. return ['model' => $this, 'data_sql' => $sql, 'data_sum' => isset($data_temp[0]['all_count']) ? $data_temp[0]['all_count'] : 0];
  97. }
  98. public function getHybrid($get_start_date, $get_end_date, $get_bus_license, $get_status)
  99. {
  100. $main_corp = $this->getUserMainCorp();
  101. $main_corp_sql = "and (select main_corp_id from base_bus e where a.bus_id = e.bus_id limit 1) = " . $main_corp;
  102. $sql_jiayou = "select b.bus_no,b.bus_id,b.buy_date,(select res_name from base_resource where b.brand_id = res_id)as brand_name,a.expense_subject_id as expense_subject_id,
  103. b.seat_desc,sum(a.receive_value)as receive_value,sum(a.expense_price) as expense_price,
  104. max(start_value) as all_licheng,(max(start_value)-min(start_value)) as chuche_licheng
  105. from bus_expenses a left join base_bus b on a.bus_id = b.bus_id where a.cancel_flag = 0 and a.expense_subject_id = 479 and if($get_bus_license=-1,0=0, a.bus_id =$get_bus_license) and a.create_time between '$get_start_date 00:00:00' and '$get_end_date 23:59:59' $main_corp_sql group by bus_no";
  106. $sql_chongdian = "select b.bus_no,b.bus_id,b.buy_date,(select res_name from base_resource where b.brand_id = res_id)as brand_name,a.expense_subject_id as expense_subject_id,
  107. b.seat_desc,sum(a.receive_value)as receive_value,sum(a.expense_price) as expense_price,
  108. max(start_value) as all_licheng,(max(start_value)-min(start_value)) as chuche_licheng
  109. from bus_expenses a left join base_bus b on a.bus_id = b.bus_id where a.cancel_flag = 0 and a.expense_subject_id = 480 and if($get_bus_license=-1,0=0, a.bus_id =$get_bus_license) and a.create_time between '$get_start_date 00:00:00' and '$get_end_date 23:59:59' $main_corp_sql group by bus_no";
  110. $conn = Yii::$app->db;
  111. $data_temp1 = $conn->createCommand($sql_jiayou)->queryAll();
  112. $data_temp2 = $conn->createCommand($sql_chongdian)->queryAll();
  113. $data_total_jiayou = sizeof($data_temp1);
  114. $data_tota2_chongdian = sizeof($data_temp2);
  115. return ['model' => $this, 'sql_jiayou' => $sql_jiayou, 'sql_chongdian' => $sql_chongdian, 'data_total_jiayou' => $data_total_jiayou, 'data_total_chongdian' => $data_tota2_chongdian];
  116. }
  117. public function getHybridDetail($get_start_date, $get_end_date, $get_bus_license)
  118. {
  119. $main_corp = $this->getUserMainCorp();
  120. $main_corp_sql = "and (select main_corp_id from base_bus e where a.bus_id = e.bus_id limit 1) = " . $main_corp;
  121. $sql_jiayou = "select (select bus_no from base_bus b where a.bus_id = b.bus_id) as bus_no,(select driver_name from base_driver c where a.create_user_id = c.driver_id) as operator_name,expense_price,receive_value,start_value,expense_destination,expense_type,create_time,(select type_name from dict_type where id = expense_type) as pay_type from bus_expenses a where bus_id = $get_bus_license and cancel_flag = 0 and expense_subject_id = 479 and create_time between '$get_start_date 00:00:00' and '$get_end_date 23:59:59' $main_corp_sql";
  122. $sql_chongdian = "select (select bus_no from base_bus b where a.bus_id = b.bus_id) as bus_no,(select driver_name from base_driver c where a.create_user_id = c.driver_id) as operator_name,expense_price,receive_value,start_value,expense_destination,expense_type,create_time,(select type_name from dict_type where id = expense_type) as pay_type from bus_expenses a where bus_id = $get_bus_license and cancel_flag = 0 and expense_subject_id = 480 and create_time between '$get_start_date 00:00:00' and '$get_end_date 23:59:59' $main_corp_sql";
  123. $conn = Yii::$app->db;
  124. $data_total_jiayou = sizeof($conn->createCommand($sql_jiayou)->queryAll());
  125. $data_total_chongdian = sizeof($conn->createCommand($sql_chongdian)->queryAll());
  126. return ['model' => $this, 'sql_jiayou' => $sql_jiayou, 'sql_chongdian' => $sql_chongdian, 'data_total_jiayou' => $data_total_jiayou, 'data_total_chongdian' => $data_total_chongdian];
  127. }
  128. public function getBusDetail($get_start_date, $get_end_date, $get_bus_license, $get_bus_number, $get_date_type, $get_bus_user, $get_line_type, $get_driver_id)
  129. {
  130. $main_corp = $this->getUserMainCorp();
  131. $main_corp_sql = "and (select main_corp_id from base_bus e where bus_order.send_bus_res_id = e.bus_id limit 1) = " . $main_corp;
  132. if ($get_date_type == '1') {
  133. $where_info = "and if($get_driver_id=-1,0=0,send_bus_driver_res_id = $get_driver_id) and if($get_line_type=-1,0=0,line_type = $get_line_type) and run_date between '$get_start_date' and '$get_end_date' and if('$get_bus_number'='',0=0,bus_number like '%$get_bus_number%') and if('$get_bus_license'=-1,0=0,send_bus_res_id = '$get_bus_license') and if('$get_bus_user'='-1',0=0,use_bus_org_id=$get_bus_user) $main_corp_sql";
  134. } elseif ($get_date_type == '2') {
  135. $where_info = "and if($get_driver_id=-1,0=0,send_bus_driver_res_id = $get_driver_id) and if($get_line_type=-1,0=0,line_type = $get_line_type) and date_add(run_date,interval day_num day) between '$get_start_date' and '$get_end_date' and if('$get_bus_number'='',0=0,bus_number = '$get_bus_number') and if('$get_bus_license'=-1,0=0,use_bus_org_id = '$get_bus_license') and if('$get_bus_user'='-1',0=0,use_bus_org_id='$get_bus_user') $main_corp_sql";
  136. } else {
  137. $where_info = '';
  138. }
  139. // $sql = "select bus_no,line_name,send_status,driver_name,use_bus_org_id,depart_name,run_date,end_date,bus_number,bus_cost,(send_cost1 + cost_value1+cost_value2+cost_value3+cost_value4+cost_value5+cost_value6) as yunying_cost,max(cost_value1) as 'youdian',max(cost_value2) as 'luqiao',max(cost_value3) as 'sitie',max(cost_value4) as 'tingche',max(cost_value5) as 'canyin',max(cost_value6) as 'zhusu',max(cost_value7) as 'licheng',max(cost_value8) as 'etc' from
  140. // (select bus_no,line_name,depart_name,run_date,end_date,bus_number,send_cost,driver_name,send_status,bus_cost,use_bus_org_id,
  141. // case when send_cost is null then 0 else send_cost end as send_cost1,
  142. // case when expense_subject_id = 462 then cost_value else 0 end as cost_value1,
  143. // case when expense_subject_id = 463 then cost_value else 0 end as cost_value2,
  144. // case when expense_subject_id = 464 then cost_value else 0 end as cost_value3,
  145. // case when expense_subject_id = 465 then cost_value else 0 end as cost_value4,
  146. // case when expense_subject_id = 466 then cost_value else 0 end as cost_value5,
  147. // case when expense_subject_id = 467 then cost_value else 0 end as cost_value6,
  148. // case when expense_subject_id = 462 then hybrid_cost else 0 end as cost_value7,
  149. // case when expense_subject_id = 463 then hybrid_cost else 0 end as cost_value8
  150. // from
  151. // (select (select type_name from dict_type where b.finance_status = id) as send_status,b.use_bus_org_id, b.send_cost,a.expense_subject_id,sum(expense_value) as cost_value, sum(start_value-end_value) as hybrid_cost,a.run_date,date_add(a.run_date,interval b.day_num day) as end_date,a.bus_number,(select bus_no from base_bus where bus_res_id = bus_id) as bus_no,(select driver_name from base_driver where bus_driver_res_id =driver_id) as driver_name,b.itinerary_name as line_name,(select depart_name from bus_department where b.use_bus_org_id = id) as depart_name,b.bus_cost from run_bus_expenses a inner join bus_order b on a.bus_number = b.bus_number where a.cancel_flag=0 $where_info group by expense_subject_id,bus_no) m) n group by bus_number";
  152. $sql = "select id,(select TYPE_NAME from dict_type where finance_status = dict_type.ID) as finance_status,use_bus_org_id,run_date,date_add(run_date,interval day_num day) as end_date,if(bus_cost_type=478,bus_cost * saled_count,bus_cost) as bus_cost,bus_number,send_cost,bus_cost_type,saled_count,(select bus_no from base_bus where bus_id = send_bus_res_id) as bus_name,(select driver_name from base_driver where driver_id=send_bus_driver_res_id) as driver_name,send_bus_res_id,itinerary_name,(select depart_name from bus_department where use_bus_org_id = id) as depart_name from bus_order where run_status in (435,436,437,438) and cancel_flag = 0 $where_info";
  153. $conn = Yii::$app->db;
  154. $data_total = sizeof($conn->createCommand($sql)->queryAll());
  155. return ['model' => $this, 'sql' => $sql, 'data_total' => $data_total];
  156. }
  157. public function getUserMainCorp()
  158. {
  159. $user = Yii::$app->user->identity;
  160. /* @var User $user */
  161. return isset($user)?$user->MAIN_CORP_ID2:9999;
  162. }
  163. /**
  164. * User: wangxj
  165. *
  166. * 车队系统首页专用函数,只统计省计
  167. *
  168. * @param $startDate
  169. * @param $endDate
  170. * @param $type integer 是否需要明细
  171. * @return array
  172. */
  173. public static function getHomePageData($startDate, $endDate, $type = false, $line_type = BusOrder::LINE_TYPE_PROVINCE)
  174. {
  175. $mainCrop = zModel::sqlMainCrop('MAIN_CORP_ID2');
  176. $sql = "SELECT bo.run_date,
  177. sum(if(bus_cost_type = 477,bus_cost, bus_cost * saled_count)) income,
  178. count(bo.bus_number) count,
  179. sum(if(send_type=0,(SELECT sum(if(e.expense_subject_id in (462,463,464,465,466,467), e.expense_value, 0)) from run_bus_expenses e where e.bus_number = bo.bus_number ),send_cost)) cost
  180. FROM
  181. bus_order bo
  182. LEFT JOIN base_user u ON u.id = bo.create_user_id
  183. WHERE
  184. bo.cancel_flag = 0
  185. AND bo.run_date BETWEEN '$startDate'
  186. AND '$endDate'
  187. $mainCrop
  188. and run_status in (435,436,437,438)
  189. AND line_type = " . $line_type;
  190. $order = ' order by bo.run_date';
  191. if ($type == true) {
  192. $sql .= ' group by bo.run_date' . $order;
  193. $result = Yii::$app->db->createCommand($sql)->queryAll();
  194. } else {
  195. $sql .= $order;
  196. $result = Yii::$app->db->createCommand($sql)->queryOne();
  197. }
  198. return $result;
  199. }
  200. /**
  201. * User: wangxj
  202. *
  203. * 系统公告,term_taxonomy_id=7车队需要读取的分类
  204. *
  205. * @return mixed
  206. */
  207. public static function getSysPost()
  208. {
  209. //系统公告
  210. $sql_message = " SELECT wp_posts.id,wp_term_relationships.term_taxonomy_id,wp_posts.post_date,wp_posts.post_title,wp_posts.post_content,wp_posts.post_name
  211. FROM wp_posts
  212. INNER JOIN wp_term_relationships ON wp_posts.id=wp_term_relationships.object_id AND wp_term_relationships.term_taxonomy_id=7
  213. WHERE wp_posts.comment_status=\"open\" AND wp_posts.ping_status=\"open\" AND wp_posts.post_status=\"publish\"
  214. ORDER BY wp_posts.post_date DESC LIMIT 2 ";
  215. $obj_dbcms = Yii::$app->dbcms;
  216. $result = $obj_dbcms->createCommand($sql_message)->queryAll();
  217. return $result;
  218. }
  219. }