您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

90 行
2.5 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. /**
  5. * This is the model class for table "run_stock".
  6. *
  7. * @property integer $ID
  8. * @property integer $RUN_ID
  9. * @property integer $RES_ID
  10. * @property integer $SEQ_ID
  11. * @property integer $SEAT_TYPE
  12. * @property integer $HOTEL_CONFIRM_TYPE
  13. * @property integer $IF_EXCESS_SALE
  14. * @property integer $PROD_ID
  15. * @property integer $TOTAL_COUNT
  16. * @property integer $SALED_COUNT
  17. * @property integer $CANCEL_FLAG
  18. * @property integer $CREATE_USER_ID
  19. * @property string $CREATE_TIME
  20. * @property integer $UPDATE_USER_ID
  21. * @property string $UPDATE_TIME
  22. */
  23. class RunStock extends ActiveRecord
  24. {
  25. /**
  26. * @inheritdoc
  27. */
  28. public static function tableName()
  29. {
  30. return 'run_stock';
  31. }
  32. /**
  33. * @inheritdoc
  34. */
  35. public function rules()
  36. {
  37. return [
  38. [['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'],
  39. [['CREATE_TIME', 'UPDATE_TIME'], 'string', 'max' => 20],
  40. ];
  41. }
  42. /**
  43. * @inheritdoc
  44. */
  45. public function attributeLabels()
  46. {
  47. return [
  48. 'ID' => 'ID',
  49. 'RUN_ID' => 'Run ID',
  50. 'RES_ID' => 'Res ID',
  51. 'SEQ_ID' => 'Seq ID',
  52. 'SEAT_TYPE' => 'Seat Type',
  53. 'HOTEL_CONFIRM_TYPE' => 'Hotel Confirm Type',
  54. 'IF_EXCESS_SALE' => 'If Excess Sale',
  55. 'PROD_ID' => 'Prod ID',
  56. 'TOTAL_COUNT' => 'Total Count',
  57. 'SALED_COUNT' => 'Saled Count',
  58. 'CANCEL_FLAG' => 'Cancel Flag',
  59. 'CREATE_USER_ID' => 'Create User ID',
  60. 'CREATE_TIME' => 'Create Time',
  61. 'UPDATE_USER_ID' => 'Update User ID',
  62. 'UPDATE_TIME' => 'Update Time',
  63. ];
  64. }
  65. /**
  66. * Des:更新指定班次的座位总数
  67. * Name: editSeatCountByRunId
  68. * @author 倪宗锋
  69. */
  70. public function editSeatCountByRunId($run_id)
  71. {
  72. $sql = "UPDATE run_stock s
  73. 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
  74. SET s.total_count = b.seat_count
  75. WHERE s.run_id = :run_id
  76. AND s.seat_type NOT IN (104,105)
  77. AND s.cancel_flag = 0"
  78. ;
  79. $flag = \Yii::$app->db->createCommand($sql, [':run_id' => $run_id])->execute();
  80. return $flag;
  81. }
  82. }