|
- <?php
-
- namespace backend\modules\motorcade\models;
-
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use yii\db\Expression;
-
- /**
- * searchOrder represents the model behind the search form about `backend\modules\motorcade\models\BusOrder`.
- *
- * @property integer $end_status_name
- * @property integer $depart_name
- * @property integer $date_from
- * @property integer $date_to
- * @property integer $bus_ids 所有出车单号
- * @property integer $bus_order_count 出车数量
- * @property integer $bus_supplier_id
- *
- */
- class searchOrder extends BusOrder
- {
- const DATE_TYPE_RUN = 1; //出车日期
- const DATE_TYPE_END = 2; //收车日期
-
- public static $date_type_array = [self::DATE_TYPE_RUN => '出车日期', self::DATE_TYPE_END => '收车日期']; //查询日期类型
- public static $client_type_array = ['' => '类型', self::CLIENT_TYPE_COMPANY => '企业', self::CLIENT_TYPE_PERSONAL => '个人'];
- public static $line_type_array = [self::LINE_TYPE_PROVINCE => '省际', self::LINE_TYPE_CITY => '市内'];
- public static $finance_type_array = [
- '' => '请选择',
- self::FINANCE_LOCK_OPEN => '未关账',
- self::FINANCE_LOCK_LOCKED => '已关账',
- // self::STATUS_END_NOTHING => '未结算',
- self::STATUS_END_WAITING_CONFIRM => '待核对',
- self::STATUS_END_WAITING_FINISH => '待结算',
- self::STATUS_END_FINISH => '已结算'];
-
- public $client_type; //查询客户类型
- public $date_from; //查询日期 起始日期
- public $date_to; //查询日期 结束日期
- public $client_id; //查询客户ID
- public $date_end; //收车日期
- public $pay_type_name; //支付方式
- public $end_status_name;//结算状态
- public $depart_name;
- public $bus_supplier_id; //车辆车队
- public $bus_cost_id;
- public $bus_ids;
- public $bus_order_count;
- // public $bus_order_finance_status; //查询订单的财务结算关账状态
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['date_type', 'date_from', 'date_to', 'client_type', 'use_bus_org_id', 'date_type', 'send_type', 'bus_order_outcome_finance',
- 'run_bus_id', 'end_status', 'outcome_end_status', 'bus_number', 'date_end','bus_cost_id', 'bus_order_finance', 'bus_supplier_id',
- 'send_cost'], 'safe']
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function scenarios()
- {
- // bypass scenarios() implementation in the parent class
- $scenarios = Model::scenarios();
- //开关账
- $scenarios['condom'] = ['finance_lock'];
- //对账单的操作:核对确认、完成结算、取消对账
- $scenarios['end_status'] = ['end_status'];
- return $scenarios;
- }
-
- /**
- * 查询应收、应付订单
- *
- * @param array $params
- *
- * @return ActiveDataProvider
- */
- public function search($params)
- {
- $query = searchOrder::find();
-
- // add conditions that should always apply here
-
- $dataProvider = new ActiveDataProvider([
- 'query' => $query,
- 'pagination' => [
- 'pagesize' => 15
- ],
- 'sort' => false,
- ]);
- $this->load($params);
- $query->orderBy('bus_order.run_date desc, bus_order.bus_number');
- $query->joinWith('user')->joinWith('department.settleType');
- if ($this->send_type == 1) {
- $query->joinWith('outcomeEndType');
- } else {
- $query->joinWith('endType');
- }
- $query->joinWith('expense');
- // if($this->send_type){
- $query->joinWith('bus')->joinWith('bus.org');
- // }
- $query->leftJoin('bus_cost','bus_order.run_bus_id=bus_cost.RUN_BUS_ID AND bus_cost.CANCEL_FLAG=0');
- $query->addSelect([
- "bus_order.id", "bus_order.run_bus_id", "bus_order.bus_number", "bus_order.create_time", "itinerary_name", "end_status", "finance_lock",
- "outcome_end_status",
- "bus_order.run_date", "if(bus_cost_type = " . searchOrder::BUS_COST_TYPE_ALL . ",bus_cost,bus_order.saled_count*bus_cost) as bus_cost", "bus_cost_type", "bus_order.saled_count",
- "settleType.TYPE_NAME as pay_type_name",
- ($this->send_type ? "oet.TYPE_NAME" : "et.TYPE_NAME") . " as end_status_name",
- "date_add(
- bus_order.run_date,
- INTERVAL day_num - 1 DAY
- ) as date_end",
- ($this->send_type ? "SUPPLIER_NAME" : "depart_name") . ' as depart_name',
- 'base_bus.ORG_ID as bus_supplier_id','base_bus.bus_no',
- // "sum(if(run_bus_expenses.expense_subject_id = 462 or isnull(run_bus_expenses.expense_subject_id = 462),bus_order.send_cost,0))
- "IFNULL(bus_order.send_cost, 0)
- + sum(if(bus_order.send_type = 0 and expense_subject_id in (462,463,464,465,466,467),run_bus_expenses.expense_value,0)) AS send_cost", 'GROUP_CONCAT(bus_cost.ID) as bus_cost_id']);
-
-
-
-
- //搜索客户类型,由于comboSelect功能有限,只能分3个下拉列表
- if (is_array($this->use_bus_org_id)) {
- if ($this->client_type === '') {
- $this->use_bus_org_id = $this->use_bus_org_id[0];
- } elseif ($this->client_type == self::CLIENT_TYPE_COMPANY) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 企业
- if ($this->use_bus_org_id[1] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_COMPANY]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[1];
- } elseif ($this->client_type == self::CLIENT_TYPE_PERSONAL) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 个人
- if ($this->use_bus_org_id[2] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_PERSONAL]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[2];
- }
- }
- $attr_status = $this->send_type == 1 ? 'outcome_end_status' : 'end_status';
- //结算状态,开关账都放在一起了
- if ($this->$attr_status !== '' && $this->$attr_status !== null && in_array($this->$attr_status, [self::FINANCE_LOCK_OPEN, self::FINANCE_LOCK_LOCKED])) {
- $query->andFilterWhere(['finance_lock' => $this->$attr_status, $attr_status => self::STATUS_END_NOTHING]);
- } else {
- $query->andFilterWhere([$attr_status => $this->$attr_status]);
- }
-
- //日期类型
- if ($this->date_type == 1) { //出车日期
- $query->andFilterWhere(['between', 'bus_order.run_date', $this->date_from, $this->date_to]);
- } elseif ($this->date_type == 2) { //收车日期
- $query->andFilterWhere(['between', 'date_add(bus_order.run_date,interval day_num - 1 day)', $this->date_from, $this->date_to]);
-
- }
-
- // grid filtering conditions
- $query->andFilterWhere([
- 'bus_order.cancel_flag' => 0,
- 'bus_order.use_bus_org_id' => $this->use_bus_org_id,
- 'bus_order.finance_status' => $this->finance_status,
- 'bus_order.run_status' => BusOrder::STATUS_RUN_FINISH, //出车完成的才显示
- 'bus_order.finance_lock' => $this->finance_lock,
- 'base_user.main_corp_id2' => $this->login_user->MAIN_CORP_ID2,
- 'bus_order.bus_order_finance' => $this->bus_order_finance,
- 'bus_order.bus_order_outcome_finance' => $this->bus_order_outcome_finance,
- 'bus_order.send_type' => $this->send_type,
- 'base_bus.org_id' => $this->bus_supplier_id,
- ]);
-
- $query
- ->andFilterWhere(['like', 'itinerary_name', $this->itinerary_name])
- ->andFilterWhere(['like', 'bus_order.bus_number', trim($this->bus_number)]);
-
- $query->groupBy('bus_order.bus_number');
- $sql = $query -> createCommand() -> getSql();
- return $dataProvider;
- }
-
-
- public function attributeLabels()
- {
- return array_merge(
- parent::attributeLabels(),
- [
- 'id' => '编号',
- 'date_type' => '日期选择',
- 'date_from' => '起始日期',
- 'date_to' => '结束日期',
- 'run_date' => '出车日期',
- 'date_end' => '收车日期',
- 'client_type' => '客户',
- 'depart_name' => $this->send_type == 1 ? '供应商' : '客户',
- 'client_id' => '用车单位',
- 'bus_number' => '出车单号',
- 'bus_cost' => '车价',
- 'send_cost' => $this->send_type == 1 ? '成本车价' : '运营成本',
- 'pay_type_name' => '支付方式',
- 'end_status' => '结算状态',
- 'end_status_name' => '结算状态',
- 'bus_no' => '车牌号',
- 'bus_cost_id' => '成本编号'
- ]);
- }
-
- /**
- * User: wangxj
- *
- * 开关账状态
- * end_status 未结账状态可以取消关账,其他状态都不能取消关账
- *
- * @param $type
- * @return bool
- */
- public function condomAction($type)
- {
- $attr_status = $this->send_type ? 'outcome_end_status' : 'end_status';
- $sql_update = "UPDATE bus_order o";
- $sql_join = " LEFT JOIN base_user u ON o.create_user_id = u.id
- LEFT JOIN `bus_department` d ON o.`use_bus_org_id` = d.`ID` ";
- $sql_set = " SET o.finance_lock = " . ($type == 'close' ? '1' : '0');
- $sql_where = " o.cancel_flag=0 AND u.main_corp_id2=" . Yii::$app->user->identity->MAIN_CORP_ID2;
- $sql_where .= ($this->date_type == 1
- ? ' and o.run_date between ' : ' and date_add(
- bus_order.run_date,
- INTERVAL day_num - 1 DAY
- ) between ') . " '" . $this->date_from . "' AND '" . $this->date_to . "'" .
- ($this->bus_number != '' ? ' and o.bus_number like "%' . trim($this->bus_number) . '%"' : '') .
- " and o.run_status = " . BusOrder::STATUS_RUN_FINISH . " and o.end_status = " . BusOrder::STATUS_END_NOTHING
- . " and o.outcome_end_status = " . BusOrder::STATUS_END_NOTHING; //出车完成的才操作
-
- //客户条件
- if ($this->use_bus_org_id != '') {
- $sql_where .= ' and use_bus_org_id = ' . $this->use_bus_org_id;
- } elseif ($this->client_type != '') {
- $sql_where .= ' and d.depart_type = ' . $this->client_type;
- }
-
- //结算状态条件
- if ($this->$attr_status !== '') {
- $sql_where .= in_array($this->$attr_status, [BusOrder::STATUS_END_FINISH, BusOrder::STATUS_END_WAITING_FINISH, BusOrder::STATUS_END_WAITING_CONFIRM])
- ? ' and o.' . $attr_status . ' = ' . $this->$attr_status
- : ' and o.finance_lock=' . $this->$attr_status;
- }
- //应付
- $sql = $sql_update . $sql_join . $sql_set . ' where ' . $sql_where;
- $sql .= $this->send_type ? ' and o.send_type=1' : '';
-
- $orders = BusOrder::find()->leftJoin('base_user u', 'o.create_user_id = u.id ')
- ->from('bus_order o')
- ->leftJoin('`bus_department` d', 'o.`use_bus_org_id` = d.`ID`')
- ->andWhere($sql_where . ' and o.run_bus_id <> 0')
- ->all();
- $result = true;
- if (!empty($orders) && $type == 'close') {
- foreach ($orders as $order) {
- /* @var $order BusOrder */
- $result = $result && $order->syncOneBusOrder();
- }
- }
- $result = $result && Yii::$app->db->createCommand($sql)->execute();
- return $result;
- }
-
- /**
- * User: wangxj
- *
- * 生成对账单的数据,因为是根据查询条件生成对账单,所以函数放这里
- * 每一个客户一条记录
- *
- */
- public function getOrderFinanceOrder()
- {
- $query = searchOrder::find();
- $query->joinWith('user')->joinWith('bus');
- $query->addSelect([
- "count(DISTINCT bus_order.bus_number) as bus_order_count",
- "GROUP_CONCAT(bus_order.id) as bus_ids",
- "sum(if(bus_cost_type = 477,bus_cost,saled_count*bus_cost)) as bus_cost",
- "sum(send_cost) send_cost",
- "send_type",
- "base_bus.org_id bus_supplier_id",
- ($this->send_type ? "base_bus.org_id" : "bus_order.use_bus_org_id") . ' as use_bus_org_id']);
-
- if (is_array($this->use_bus_org_id)) {
- if ($this->client_type === '') {
- $this->use_bus_org_id = $this->use_bus_org_id[0];
- } elseif ($this->client_type == self::CLIENT_TYPE_COMPANY) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 企业
- if ($this->use_bus_org_id[1] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_COMPANY]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[1];
- } elseif ($this->client_type == self::CLIENT_TYPE_PERSONAL) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 个人
- if ($this->use_bus_org_id[2] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_PERSONAL]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[2];
- }
- }
-
- //日期类型
- if ($this->date_type == 1) { //出车日期
- $query->andFilterWhere(['between', 'bus_order.run_date', $this->date_from, $this->date_to]);
- } elseif ($this->date_type == 2) { //收车日期
- $query->andFilterWhere(['between', 'date_add(bus_order.run_date,interval day_num - 1 day)', $this->date_from, $this->date_to]);
- }
-
- // grid filtering conditions
- $query->andFilterWhere([
- 'bus_order.cancel_flag' => 0,
- 'bus_order.run_status' => BusOrder::STATUS_RUN_FINISH, //出车完成的才显示
- 'bus_order.' . ($this->send_type == 1 ? 'outcome_end_status' : 'end_status') => BusOrder::STATUS_END_NOTHING,
- 'bus_order.finance_lock' => 1,
- 'bus_order.send_type' => $this->send_type,
- 'base_user.main_corp_id2' => Yii::$app->user->identity->MAIN_CORP_ID2,
- ]);
-
- if ($this->send_type) {
- $query->andFilterWhere(['base_bus.org_id' => $this->bus_supplier_id]);
- $query->groupBy('bus_supplier_id');
- } else {
- $query->groupBy('bus_order.use_bus_org_id');
- }
- // $sql = $query->createCommand();
- return $query->all();
- }
-
- /**
- * 生成应付对账单
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author wangxj
- */
- public function getOutcomeOrderFinanceOrder()
- {
- $query = searchOrder::find();
- $query->joinWith('user')->joinWith('bus');
- $query->addSelect([
- "count(DISTINCT bus_order.bus_number) as bus_order_count",
- "GROUP_CONCAT(bus_order.id) as bus_ids",
- "sum(if(bus_cost_type = 477,bus_cost,saled_count*bus_cost)) as bus_cost",
- "sum(send_cost) send_cost",
- "send_type",
- "base_bus.org_id bus_supplier_id",
- "base_bus.org_id as use_bus_org_id"]);
-
- if (is_array($this->use_bus_org_id)) {
- if ($this->client_type === '') {
- $this->use_bus_org_id = $this->use_bus_org_id[0];
- } elseif ($this->client_type == self::CLIENT_TYPE_COMPANY) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 企业
- if ($this->use_bus_org_id[1] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_COMPANY]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[1];
- } elseif ($this->client_type == self::CLIENT_TYPE_PERSONAL) {
- $query->joinWith('department');
- //如果没有值,只查询出所有的 个人
- if ($this->use_bus_org_id[2] == '') {
- $query->andFilterWhere(['depart_type' => self::CLIENT_TYPE_PERSONAL]);
- }
- $this->use_bus_org_id = $this->use_bus_org_id[2];
- }
- }
-
- //日期类型
- if ($this->date_type == 1) { //出车日期
- $query->andFilterWhere(['between', 'bus_order.run_date', $this->date_from, $this->date_to]);
- } elseif ($this->date_type == 2) { //收车日期
- $query->andFilterWhere(['between', 'date_add(bus_order.run_date,interval day_num - 1 day)', $this->date_from, $this->date_to]);
- }
-
- // grid filtering conditions
- $query->andFilterWhere([
- 'bus_order.cancel_flag' => 0,
- 'bus_order.run_status' => BusOrder::STATUS_RUN_FINISH, //出车完成的才显示
- 'bus_order.' . ($this->send_type == 1 ? 'outcome_end_status' : 'end_status') => BusOrder::STATUS_END_NOTHING,
- 'bus_order.finance_lock' => 1,
- 'bus_order.send_type' => $this->send_type,
- 'base_user.main_corp_id2' => Yii::$app->user->identity->MAIN_CORP_ID2,
- ]);
-
- if ($this->send_type) {
- $query->andFilterWhere(['base_bus.org_id' => $this->bus_supplier_id]);
- $query->groupBy('bus_supplier_id');
- } else {
- $query->groupBy('bus_order.use_bus_org_id');
- }
- // $sql = $query->createCommand();
- return $query->all();
- }
- }
|