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.
 
 
 
 
 
 

93 lines
2.7 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use yii\db\ActiveRecord;
  4. use yii\db\Expression;
  5. /**
  6. * This is the model class for table "opera_hotel_room".
  7. *
  8. * @property integer $ID
  9. * @property integer $CANCEL_FLAG
  10. * @property integer $CREATE_USER_ID
  11. * @property string $CREATE_TIME
  12. * @property integer $UPDATE_USER_ID
  13. * @property string $UPDATE_TIME
  14. * @property integer $HOTEL_ID
  15. * @property integer $PARENT_ROOM_TYPE
  16. * @property integer $ROOM_TYPE
  17. * @property string $ROOM_NAME
  18. * @property integer $OCCUPANCY_LIMIT
  19. * @property integer $BREAKFAST_INCLUDE
  20. * @property integer $IS_ONSALE
  21. */
  22. class OperaHotelRoom extends ActiveRecord
  23. {
  24. /**
  25. * @inheritdoc
  26. */
  27. public static function tableName()
  28. {
  29. return 'opera_hotel_room';
  30. }
  31. /**
  32. * @inheritdoc
  33. */
  34. public function rules()
  35. {
  36. return [
  37. [['CANCEL_FLAG', 'CREATE_USER_ID', 'UPDATE_USER_ID', 'HOTEL_ID', 'PARENT_ROOM_TYPE', 'ROOM_TYPE', 'OCCUPANCY_LIMIT', 'BREAKFAST_INCLUDE', 'IS_ONSALE'], 'integer'],
  38. [['UPDATE_TIME'], 'safe'],
  39. [['CREATE_TIME'], 'string', 'max' => 20],
  40. [['ROOM_NAME'], 'string', 'max' => 100],
  41. ];
  42. }
  43. /**
  44. * @inheritdoc
  45. */
  46. public function attributeLabels()
  47. {
  48. return [
  49. 'ID' => 'ID',
  50. 'CANCEL_FLAG' => 'Cancel Flag',
  51. 'CREATE_USER_ID' => '记录创建用户ID',
  52. 'CREATE_TIME' => '记录创建时间',
  53. 'UPDATE_USER_ID' => '记录最后更新用户ID',
  54. 'UPDATE_TIME' => '记录最后更新时间',
  55. 'HOTEL_ID' => '酒店ID,对应opera_hotel.hotel_id',
  56. 'PARENT_ROOM_TYPE' => '基础房型,对应base_resource.res_id',
  57. 'ROOM_TYPE' => '子房型ID',
  58. 'ROOM_NAME' => '子房型名称',
  59. 'OCCUPANCY_LIMIT' => '入住人数限制 0:无限制',
  60. 'BREAKFAST_INCLUDE' => '是否含早,对应dict_type.id',
  61. 'IS_ONSALE' => '该子房型是否上线 1为上线 0为下线',
  62. ];
  63. }
  64. /**
  65. * Function Description:根据酒店id 获取子房型及基础房型信息
  66. * Function Name: get_room_type_by_hotel_id
  67. * @param $hotel_id
  68. *
  69. * @return array|null|ActiveRecord
  70. *
  71. * @author 娄梦宁
  72. */
  73. public function get_room_type_by_hotel_id($hotel_id){
  74. $select=[
  75. 'parent_room_type',
  76. 'room_type',
  77. 'room_name'=>new Expression('concat(room_name,ifnull(inner_identify,""))')
  78. ];
  79. $result=self::find()->select($select)
  80. ->from(self::tableName())
  81. ->where(['and',['=','cancel_flag',0],['=','is_onsale',1],['=','hotel_id',$hotel_id]])
  82. ->asArray()
  83. ->all();
  84. return $result;
  85. }
  86. }