|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use yii\db\ActiveRecord;
-
- /**
- * This is the model class for table "run_stock".
- *
- * @property integer $ID
- * @property integer $RUN_ID
- * @property integer $RES_ID
- * @property integer $SEQ_ID
- * @property integer $SEAT_TYPE
- * @property integer $HOTEL_CONFIRM_TYPE
- * @property integer $IF_EXCESS_SALE
- * @property integer $PROD_ID
- * @property integer $TOTAL_COUNT
- * @property integer $SALED_COUNT
- * @property integer $CANCEL_FLAG
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- */
- class RunStock extends ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'run_stock';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['RUN_ID', 'RES_ID', 'SEQ_ID', 'SEAT_TYPE', 'HOTEL_CONFIRM_TYPE', 'IF_EXCESS_SALE', 'PROD_ID', 'TOTAL_COUNT', 'SALED_COUNT', 'CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID'], 'integer'],
- [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'ID' => 'ID',
- 'RUN_ID' => 'Run ID',
- 'RES_ID' => 'Res ID',
- 'SEQ_ID' => 'Seq ID',
- 'SEAT_TYPE' => 'Seat Type',
- 'HOTEL_CONFIRM_TYPE' => 'Hotel Confirm Type',
- 'IF_EXCESS_SALE' => 'If Excess Sale',
- 'PROD_ID' => 'Prod ID',
- 'TOTAL_COUNT' => 'Total Count',
- 'SALED_COUNT' => 'Saled Count',
- 'CANCEL_FLAG' => 'Cancel Flag',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'UPDATE_USER_ID' => 'Update User ID',
- 'UPDATE_TIME' => 'Update Time',
- ];
- }
-
- /**
- * Des:更新指定班次的座位总数
- * Name: editSeatCountByRunId
- * @author 倪宗锋
- */
- public function editSeatCountByRunId($run_id)
- {
- $sql = "UPDATE run_stock s
- INNER JOIN (SELECT run_id,sum(seat_count) AS seat_count FROM run_bus WHERE cancel_flag = 0 AND run_bus_status IN (138,139,140,141) GROUP BY run_id) b ON s.run_id = b.run_id
- SET s.total_count = b.seat_count
- WHERE s.run_id = :run_id
- AND s.seat_type NOT IN (104,105)
- AND s.cancel_flag = 0"
- ;
- $flag = \Yii::$app->db->createCommand($sql, [':run_id' => $run_id])->execute();
- return $flag;
- }
-
- }
|