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.
 
 
 
 
 
 

179 line
5.0 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. use yii\db\Exception;
  5. use yii\db\Expression;
  6. /**
  7. * This is the model class for table "bus_seat_matrix".
  8. *
  9. * @property integer $ID
  10. * @property integer $CANCEL_FLAG
  11. * @property integer $CREATE_USER_ID
  12. * @property string $CREATE_TIME
  13. * @property integer $UPDATE_USER_ID
  14. * @property string $UPDATE_TIME
  15. * @property integer $RES_ID
  16. * @property integer $POS_X
  17. * @property integer $POS_Y
  18. * @property integer $POS_TYPE
  19. * @property integer $POS_SEQ_ID
  20. * @property string $POS_NAME
  21. */
  22. class BusSeatMatrix extends ActiveRecord
  23. {
  24. /**
  25. * @inheritdoc
  26. */
  27. public static function tableName()
  28. {
  29. return 'bus_seat_matrix';
  30. }
  31. /**
  32. * @inheritdoc
  33. */
  34. public function rules()
  35. {
  36. return [
  37. [['CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'RES_ID', 'POS_X', 'POS_Y', 'POS_TYPE', 'POS_SEQ_ID'], 'integer'],
  38. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  39. [['POS_NAME'], 'string', 'max' => 100],
  40. ];
  41. }
  42. /**
  43. * @inheritdoc
  44. */
  45. public function attributeLabels()
  46. {
  47. return [
  48. 'ID' => 'ID',
  49. 'CANCEL_FLAG' => 'Cancel Flag',
  50. 'CREATE_USER_ID' => 'Create User ID',
  51. 'CREATE_TIME' => 'Create Time',
  52. 'UPDATE_USER_ID' => 'Update User ID',
  53. 'UPDATE_TIME' => 'Update Time',
  54. 'RES_ID' => 'Res ID',
  55. 'POS_X' => 'Pos X',
  56. 'POS_Y' => 'Pos Y',
  57. 'POS_TYPE' => 'Pos Type',
  58. 'POS_SEQ_ID' => 'Pos Seq ID',
  59. 'POS_NAME' => 'Pos Name',
  60. ];
  61. }
  62. /**
  63. * Des:循环添加数据
  64. * Name: addInfo
  65. * @param $data_array
  66. * @param $res_id
  67. * @return bool
  68. * @author 倪宗锋
  69. */
  70. public function addInfo($data_array, $res_id, $type = 1)
  71. {
  72. foreach ($data_array as $val) {
  73. try {
  74. //***************************************插入bus_ticket表**************************************************
  75. $clTab = clone $this;
  76. $date = [
  77. 'POS_NAME' => $val['POS_NAME'],
  78. 'POS_SEQ_ID' => $val['POS_SEQ_ID'],
  79. 'POS_TYPE' => $val['POS_TYPE'],
  80. 'POS_X' => $val['POS_X'],
  81. 'POS_Y' => $val['POS_Y'],
  82. 'RES_ID' => $res_id,
  83. 'CREATE_TIME' => date('Y-m-d H:i:s')
  84. ];
  85. $clTab->setAttributes($date);
  86. $res = $clTab->save();
  87. if ($res === false ) {
  88. if ($type == 2){
  89. $date['CANCEL_FLAG'] = 0;
  90. $where = array(':RES_ID' => $date['RES_ID'], ':POS_Y' => $date['POS_Y'], ':POS_X' => $date['POS_X']);
  91. $clTab->updateAll($date, 'RES_ID=:RES_ID and POS_X=:POS_X and POS_Y=:POS_Y', $where);
  92. }else{
  93. return false;
  94. }
  95. }
  96. } catch (Exception $e) {
  97. if ($type == 2){
  98. $date['CANCEL_FLAG'] = 0;
  99. $where = array(':RES_ID' => $date['RES_ID'], ':POS_Y' => $date['POS_Y'], ':POS_X' => $date['POS_X']);
  100. $clTab->updateAll($date, 'RES_ID=:RES_ID and POS_X=:POS_X and POS_Y=:POS_Y', $where);
  101. }else{
  102. return false;
  103. }
  104. }
  105. }
  106. return true;
  107. }
  108. /**
  109. * Des:获取车位图列表 - 展示用
  110. * Name: getListForShow
  111. * @param $res_id
  112. * @return array
  113. * @author 倪宗锋
  114. */
  115. public function getListForShow($res_id)
  116. {
  117. $select = [
  118. 'POS_NAME',
  119. 'POS_SEQ_ID',
  120. 'POS_TYPE',
  121. 'POS_X',
  122. 'POS_Y',
  123. ];
  124. $where = [
  125. 'and',
  126. ['=', 'RES_ID', $res_id],
  127. ['=', 'CANCEL_FLAG', 0]
  128. ];
  129. $list = self::find()->select($select)
  130. ->where($where)
  131. ->orderBy('POS_Y,POS_X')
  132. ->asArray()
  133. ->all();
  134. if (empty($list[0]['POS_X'])) {
  135. return [];
  136. } else {
  137. $return = [];
  138. foreach ($list as $val) {
  139. $return[$val['POS_Y']][] = $val;
  140. }
  141. return $return;
  142. }
  143. }
  144. /**
  145. * Des:获取座位的总记录数
  146. * Name: getSeatCount
  147. * @param $RES_ID
  148. * @return int
  149. * @author 倪宗锋
  150. */
  151. public function getSeatCount($RES_ID)
  152. {
  153. $select = ['cnt' => new Expression("count(1)")];
  154. $where = [
  155. 'and',
  156. ['=', 'RES_ID', $RES_ID],
  157. ['=', 'CANCEL_FLAG', 0],
  158. ['=', 'POS_TYPE', '72']
  159. ];
  160. $getCnt = self::find()->select($select)
  161. ->where($where)
  162. ->asArray()
  163. ->one();
  164. if (empty($getCnt['cnt'])) {
  165. return 0;
  166. }
  167. return $getCnt['cnt'];
  168. }
  169. }