|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
- use yii\db\Exception;
- use yii\db\Expression;
-
- /**
- * This is the model class for table "bus_seat_matrix".
- *
- * @property integer $ID
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $RES_ID
- * @property integer $POS_X
- * @property integer $POS_Y
- * @property integer $POS_TYPE
- * @property integer $POS_SEQ_ID
- * @property string $POS_NAME
- */
- class BusSeatMatrix extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'bus_seat_matrix';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'RES_ID', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID'], 'integer'],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- [['POS_NAME'], 'string', 'max' => 100],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'CANCEL_FLAG' => 'Cancel Flag',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'UPDATE_USER_ID' => 'Update User ID',
- 'UPDATE_TIME' => 'Update Time',
- 'RES_ID' => 'Res ID',
- 'POS_X' => 'Pos X',
- 'POS_Y' => 'Pos Y',
- 'POS_TYPE' => 'Pos Type',
- 'POS_SEQ_ID' => 'Pos Seq ID',
- 'POS_NAME' => 'Pos Name',
- ];
- }
-
- /**
- * Des:循环添加数据
- * Name: addInfo
- * @param $data_array
- * @param $res_id
- * @return bool
- * @author 倪宗锋
- */
- public function addInfo($data_array, $res_id, $type = 1)
- {
- foreach ($data_array as $val) {
- try {
- //***************************************插入bus_ticket表**************************************************
- $clTab = clone $this;
- $date = [
- 'POS_NAME' => $val['POS_NAME'],
- 'POS_SEQ_ID' => $val['POS_SEQ_ID'],
- 'POS_TYPE' => $val['POS_TYPE'],
- 'POS_X' => $val['POS_X'],
- 'POS_Y' => $val['POS_Y'],
- 'RES_ID' => $res_id,
- 'CREATE_TIME' => date('Y-m-d H:i:s')
- ];
- $clTab->setAttributes($date);
- $res = $clTab->save();
- if ($res === false ) {
- if ($type == 2){
- $date['CANCEL_FLAG'] = 0;
- $where = array(':RES_ID' => $date['RES_ID'], ':POS_Y' => $date['POS_Y'], ':POS_X' => $date['POS_X']);
- $clTab->updateAll($date, 'RES_ID=:RES_ID and POS_X=:POS_X and POS_Y=:POS_Y', $where);
- }else{
- return false;
- }
- }
- } catch (Exception $e) {
- if ($type == 2){
- $date['CANCEL_FLAG'] = 0;
- $where = array(':RES_ID' => $date['RES_ID'], ':POS_Y' => $date['POS_Y'], ':POS_X' => $date['POS_X']);
- $clTab->updateAll($date, 'RES_ID=:RES_ID and POS_X=:POS_X and POS_Y=:POS_Y', $where);
- }else{
- return false;
- }
- }
- }
- return true;
- }
-
- /**
- * Des:获取车位图列表 - 展示用
- * Name: getListForShow
- * @param $res_id
- * @return array
- * @author 倪宗锋
- */
- public function getListForShow($res_id)
- {
- $select = [
- 'POS_NAME',
- 'POS_SEQ_ID',
- 'POS_TYPE',
- 'POS_X',
- 'POS_Y',
- ];
- $where = [
- 'and',
- ['=', 'RES_ID', $res_id],
- ['=', 'CANCEL_FLAG', 0]
- ];
- $list = self::find()->select($select)
- ->where($where)
- ->orderBy('POS_Y,POS_X')
- ->asArray()
- ->all();
- if (empty($list[0]['POS_X'])) {
- return [];
- } else {
- $return = [];
- foreach ($list as $val) {
- $return[$val['POS_Y']][] = $val;
- }
- return $return;
- }
-
- }
-
- /**
- * Des:获取座位的总记录数
- * Name: getSeatCount
- * @param $RES_ID
- * @return int
- * @author 倪宗锋
- */
- public function getSeatCount($RES_ID)
- {
- $select = ['cnt' => new Expression("count(1)")];
- $where = [
- 'and',
- ['=', 'RES_ID', $RES_ID],
- ['=', 'CANCEL_FLAG', 0],
- ['=', 'POS_TYPE', '72']
- ];
- $getCnt = self::find()->select($select)
- ->where($where)
- ->asArray()
- ->one();
- if (empty($getCnt['cnt'])) {
- return 0;
- }
- return $getCnt['cnt'];
- }
- }
|