|
- <?php
-
- namespace backend\modules\zzcs\models;
-
- use Yii;
-
- /**
- * This is the model class for table "opera_tickets".
- *
- * @property integer $TICKET_ID
- * @property integer $CREATE_USER_ID
- * @property string $CREATE_TIME
- * @property integer $UPDATE_USER_ID
- * @property string $UPDATE_TIME
- * @property integer $CANCEL_FLAG
- * @property integer $LINE_ID
- * @property string $TICKET_NAME
- * @property integer $TICKET_TYPE
- * @property integer $START_STATION_RES_ID
- * @property integer $END_STATION_RES_ID
- * @property integer $START_STATION_AREA_ID
- * @property integer $END_STATION_AREA_ID
- * @property integer $SEAT_TYPE
- * @property integer $HUMAN_TYPE
- * @property string $PROD_PRICE
- * @property string $CUS_PRICE
- * @property string $COST_PRICE
- * @property integer $IS_ONSALE
- * @property integer $IS_CHECKED
- */
- class OperaTickets extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'opera_tickets';
- }
-
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['CREATE_USER_ID', 'UPDATE_USER_ID', 'CANCEL_FLAG', 'LINE_ID', 'TICKET_TYPE', 'START_STATION_RES_ID', 'END_STATION_RES_ID', 'START_STATION_AREA_ID', 'END_STATION_AREA_ID', 'SEAT_TYPE', 'HUMAN_TYPE', 'IS_ONSALE', 'IS_CHECKED'], 'integer'],
- [['CREATE_TIME'], 'required'],
- [['UPDATE_TIME'], 'safe'],
- [['PROD_PRICE', 'CUS_PRICE', 'COST_PRICE'], 'number'],
- [['CREATE_TIME'], 'string', 'max' => 20],
- [['TICKET_NAME'], 'string', 'max' => 50],
- [['TICKET_ID'], 'unique'],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'TICKET_ID' => 'Ticket ID',
- 'CREATE_USER_ID' => 'Create User ID',
- 'CREATE_TIME' => 'Create Time',
- 'UPDATE_USER_ID' => 'Update User ID',
- 'UPDATE_TIME' => 'Update Time',
- 'CANCEL_FLAG' => 'Cancel Flag',
- 'LINE_ID' => 'Line ID',
- 'TICKET_NAME' => 'Ticket Name',
- 'TICKET_TYPE' => 'Ticket Type',
- 'START_STATION_RES_ID' => 'Start Station Res ID',
- 'END_STATION_RES_ID' => 'End Station Res ID',
- 'START_STATION_AREA_ID' => 'Start Station Area ID',
- 'END_STATION_AREA_ID' => 'End Station Area ID',
- 'SEAT_TYPE' => 'Seat Type',
- 'HUMAN_TYPE' => 'Human Type',
- 'PROD_PRICE' => 'Prod Price',
- 'CUS_PRICE' => 'Cus Price',
- 'COST_PRICE' => 'Cost Price',
- 'IS_ONSALE' => 'Is Onsale',
- 'IS_CHECKED' => 'Is Checked',
- ];
- }
-
- /*
- * 获取预估成本
- */
- public function getCostPrice($ticket_id){
- //判断是否是自营
- $base_user=new BaseUser();
- $user_main_corp=$base_user->getMainCorp();
- $ticket_from_main_corp=$this->getMainCorpByTicket($ticket_id);
- $where=[
- 'and',
- ['ticket_id'=>$ticket_id],
- ];
- if($user_main_corp == $ticket_from_main_corp){
- //票种是自营,成本从opera_tickets取
- $from=self::tableName();
- }else{
- //票种代售,成本从Opera_tickets_agent取
- $from='opera_tickets_agent';
- $where[]=['to_main_corp_id'=>$user_main_corp];
- }
- $result=self::find()->select('cost_price')
- ->from($from)
- ->where($where)
- ->asArray()
- ->one();
- return $result;
- }
- /*
- * 通过票种id获取产品类型,线路id
- */
- public function getLineTypeById($ticket_id){
- $line_type=self::find()->select('b.line_type,b.line_id')
- ->from(self::tableName().' a ')
- ->leftJoin('opera_line as b','a.line_id=b.line_id')
- ->where(['a.ticket_id'=>$ticket_id])
- ->asArray()
- ->one();
- return $line_type;
- }
- /*
- * 获取票种基础信息,产品代售渠道商列表
- */
- public function getTicketInfoForDistrib($ticket_id,$is_agent,$user_main_corp){
- $where=[
- 'and',
- ['ticket_id'=>$ticket_id],
- ['cancel_flag'=>0]
- ];
- if($is_agent==1){//代售产品
- $table='opera_tickets_agent as a';
- $where[]=['to_main_corp_id'=>$user_main_corp];
- }else{
- $table=self::tableName().' a';
- }
- $select=[
- 'prod_price',
- 'cus_price',
- 'human_type'=>'(select type_name from dict_type where id=a.human_type)',
- 'seat_type'=>'(select type_name from dict_type where id=a.seat_type)',
- ];
- $result=self::find()->select($select)
- ->from($table)
- ->where($where)
- ->asArray()
- ->one();
- return $result;
- }
- /*
- * 修改车票上下架状态
- */
- public function upt_onsale($is_onsale,$ticket_id){
- self::updateAll(['is_onsale'=>$is_onsale],['ticket_id'=>$ticket_id]);
- }
-
- /**
- * Function Description:通过票种id查出所属运营主体
- * Function Name: getMainCorpByTicket
- * @param $ticket_id
- *
- * @return mixed
- *
- * @author 娄梦宁
- */
- public function getMainCorpByTicket($ticket_id){
- $result=self::find()->select('(select main_corp_id from opera_line where line_id = a.line_id) as main_corp_id')
- ->from(self::tableName().' as a')
- ->where(['ticket_id'=>$ticket_id,'cancel_flag'=>0])
- ->asArray()
- ->one();
- return $result['main_corp_id'];
- }
-
- /**
- * Function Description:查询票种起始站和终点站名
- * Function Name: get_station_name
- * @param $ticket_id
- *
- * @return array|null|\yii\db\ActiveRecord
- *
- * @author 娄梦宁
- */
- public function get_station_name($ticket_id){
- $result=self::find()->select('start_station_res_id,end_station_res_id,(select res_name from base_resource where RES_ID=START_STATION_RES_ID) as start_station,(select res_name from base_resource where RES_ID=end_STATION_RES_ID) as end_station')
- ->from(self::tableName())
- ->where(['and',['=','cancel_flag',0],['=','ticket_id',$ticket_id]])
- ->asArray()
- ->one();
- return $result;
- }
-
-
- /**
- * Function Description:查询票种信息
- * Function Name: getTicketInfo
- * @param $ticket_ids
- * @return array|\yii\db\ActiveRecord[]
- * @author 田玲菲
- */
- public function getTicketInfo($ticket_ids){
- if(!is_array($ticket_ids)){
- $ticket_ids = explode(',',$ticket_ids);
- }
- $result=self::find()->select('ticket_id,start_station_res_id,end_station_res_id,(select res_name from base_resource where RES_ID=START_STATION_RES_ID) as start_station,(select res_name from base_resource where RES_ID=end_STATION_RES_ID) as end_station')
- ->from(self::tableName())
- ->where(['and',['=','cancel_flag',0],['in','ticket_id',$ticket_ids]])
- ->asArray()
- ->all();
- return $result;
- }
-
- /**
- * Function Description:根据line_id获取票种列表
- * Function Name: getTicketsByLineId
- * @param $line_id
- * @param $current_page
- * @param $page_size
- *
- * @return mixed
- *
- * @author 冒炎
- */
- public function getTicketsByLineId($line_id,$current_page,$page_size){
- $where = ['and',['=','a.cancel_flag',0],['=','a.line_id',$line_id]];
- $offset = ($current_page - 1) * $page_size;
- $select = [
- 'a.ticket_id',
- 'a.seat_type',
- 'a.human_type',
- 'a.prod_price',
- 'a.cus_price',
- 'seat_type_name'=>"(select type_name from dict_type where id = a.seat_type)",
- 'human_type_name'=>"(select type_name from dict_type where id = a.human_type)"
- ];
- $list = self::find()
- ->select($select)
- ->from(self::tableName() . ' a')
- ->where($where)
- ->limit($page_size)
- ->offset($offset)
- ->orderBy('a.create_time desc')
- ->asArray()
- ->all();
-
- $total_count = self::find()
- ->from(self::tableName() . ' a')
- ->where($where)
- ->count();
-
- $total_page = ceil($total_count / $page_size);
-
- $result['code'] = '0';
- $result['info'] = '获取' . $line_id . '线路的票种列表成功';
- $result['page'] = array(
- 'page_size' => $page_size,
- 'current_page' => $current_page,
- 'total_count' => $total_count,
- 'total_page' => $total_page
- );
- $result['ticket'] = $list;
- return $result;
- }
-
- /**
- * Function Description:更新票种是否需要检票属性
- * Function Name: uptIsCheck
- * @param $ticket_id
- * @param $is_check
- *
- *
- * @author 冒炎
- */
- public function uptIsCheck($ticket_id,$is_check){
- self::updateAll(['is_checked'=>$is_check],['ticket_id'=>$ticket_id]);
- }
- }
|