Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

281 lignes
9.0 KiB

  1. <?php
  2. namespace backend\modules\zzcs\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "opera_tickets".
  6. *
  7. * @property integer $TICKET_ID
  8. * @property integer $CREATE_USER_ID
  9. * @property string $CREATE_TIME
  10. * @property integer $UPDATE_USER_ID
  11. * @property string $UPDATE_TIME
  12. * @property integer $CANCEL_FLAG
  13. * @property integer $LINE_ID
  14. * @property string $TICKET_NAME
  15. * @property integer $TICKET_TYPE
  16. * @property integer $START_STATION_RES_ID
  17. * @property integer $END_STATION_RES_ID
  18. * @property integer $START_STATION_AREA_ID
  19. * @property integer $END_STATION_AREA_ID
  20. * @property integer $SEAT_TYPE
  21. * @property integer $HUMAN_TYPE
  22. * @property string $PROD_PRICE
  23. * @property string $CUS_PRICE
  24. * @property string $COST_PRICE
  25. * @property integer $IS_ONSALE
  26. * @property integer $IS_CHECKED
  27. */
  28. class OperaTickets extends \yii\db\ActiveRecord
  29. {
  30. /**
  31. * @inheritdoc
  32. */
  33. public static function tableName()
  34. {
  35. return 'opera_tickets';
  36. }
  37. /**
  38. * @inheritdoc
  39. */
  40. public function rules()
  41. {
  42. return [
  43. [['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'],
  44. [['CREATE_TIME'], 'required'],
  45. [['UPDATE_TIME'], 'safe'],
  46. [['PROD_PRICE', 'CUS_PRICE', 'COST_PRICE'], 'number'],
  47. [['CREATE_TIME'], 'string', 'max' => 20],
  48. [['TICKET_NAME'], 'string', 'max' => 50],
  49. [['TICKET_ID'], 'unique'],
  50. ];
  51. }
  52. /**
  53. * @inheritdoc
  54. */
  55. public function attributeLabels()
  56. {
  57. return [
  58. 'TICKET_ID' => 'Ticket ID',
  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. 'CANCEL_FLAG' => 'Cancel Flag',
  64. 'LINE_ID' => 'Line ID',
  65. 'TICKET_NAME' => 'Ticket Name',
  66. 'TICKET_TYPE' => 'Ticket Type',
  67. 'START_STATION_RES_ID' => 'Start Station Res ID',
  68. 'END_STATION_RES_ID' => 'End Station Res ID',
  69. 'START_STATION_AREA_ID' => 'Start Station Area ID',
  70. 'END_STATION_AREA_ID' => 'End Station Area ID',
  71. 'SEAT_TYPE' => 'Seat Type',
  72. 'HUMAN_TYPE' => 'Human Type',
  73. 'PROD_PRICE' => 'Prod Price',
  74. 'CUS_PRICE' => 'Cus Price',
  75. 'COST_PRICE' => 'Cost Price',
  76. 'IS_ONSALE' => 'Is Onsale',
  77. 'IS_CHECKED' => 'Is Checked',
  78. ];
  79. }
  80. /*
  81. * 获取预估成本
  82. */
  83. public function getCostPrice($ticket_id){
  84. //判断是否是自营
  85. $base_user=new BaseUser();
  86. $user_main_corp=$base_user->getMainCorp();
  87. $ticket_from_main_corp=$this->getMainCorpByTicket($ticket_id);
  88. $where=[
  89. 'and',
  90. ['ticket_id'=>$ticket_id],
  91. ];
  92. if($user_main_corp == $ticket_from_main_corp){
  93. //票种是自营,成本从opera_tickets取
  94. $from=self::tableName();
  95. }else{
  96. //票种代售,成本从Opera_tickets_agent取
  97. $from='opera_tickets_agent';
  98. $where[]=['to_main_corp_id'=>$user_main_corp];
  99. }
  100. $result=self::find()->select('cost_price')
  101. ->from($from)
  102. ->where($where)
  103. ->asArray()
  104. ->one();
  105. return $result;
  106. }
  107. /*
  108. * 通过票种id获取产品类型,线路id
  109. */
  110. public function getLineTypeById($ticket_id){
  111. $line_type=self::find()->select('b.line_type,b.line_id')
  112. ->from(self::tableName().' a ')
  113. ->leftJoin('opera_line as b','a.line_id=b.line_id')
  114. ->where(['a.ticket_id'=>$ticket_id])
  115. ->asArray()
  116. ->one();
  117. return $line_type;
  118. }
  119. /*
  120. * 获取票种基础信息,产品代售渠道商列表
  121. */
  122. public function getTicketInfoForDistrib($ticket_id,$is_agent,$user_main_corp){
  123. $where=[
  124. 'and',
  125. ['ticket_id'=>$ticket_id],
  126. ['cancel_flag'=>0]
  127. ];
  128. if($is_agent==1){//代售产品
  129. $table='opera_tickets_agent as a';
  130. $where[]=['to_main_corp_id'=>$user_main_corp];
  131. }else{
  132. $table=self::tableName().' a';
  133. }
  134. $select=[
  135. 'prod_price',
  136. 'cus_price',
  137. 'human_type'=>'(select type_name from dict_type where id=a.human_type)',
  138. 'seat_type'=>'(select type_name from dict_type where id=a.seat_type)',
  139. ];
  140. $result=self::find()->select($select)
  141. ->from($table)
  142. ->where($where)
  143. ->asArray()
  144. ->one();
  145. return $result;
  146. }
  147. /*
  148. * 修改车票上下架状态
  149. */
  150. public function upt_onsale($is_onsale,$ticket_id){
  151. self::updateAll(['is_onsale'=>$is_onsale],['ticket_id'=>$ticket_id]);
  152. }
  153. /**
  154. * Function Description:通过票种id查出所属运营主体
  155. * Function Name: getMainCorpByTicket
  156. * @param $ticket_id
  157. *
  158. * @return mixed
  159. *
  160. * @author 娄梦宁
  161. */
  162. public function getMainCorpByTicket($ticket_id){
  163. $result=self::find()->select('(select main_corp_id from opera_line where line_id = a.line_id) as main_corp_id')
  164. ->from(self::tableName().' as a')
  165. ->where(['ticket_id'=>$ticket_id,'cancel_flag'=>0])
  166. ->asArray()
  167. ->one();
  168. return $result['main_corp_id'];
  169. }
  170. /**
  171. * Function Description:查询票种起始站和终点站名
  172. * Function Name: get_station_name
  173. * @param $ticket_id
  174. *
  175. * @return array|null|\yii\db\ActiveRecord
  176. *
  177. * @author 娄梦宁
  178. */
  179. public function get_station_name($ticket_id){
  180. $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')
  181. ->from(self::tableName())
  182. ->where(['and',['=','cancel_flag',0],['=','ticket_id',$ticket_id]])
  183. ->asArray()
  184. ->one();
  185. return $result;
  186. }
  187. /**
  188. * Function Description:查询票种信息
  189. * Function Name: getTicketInfo
  190. * @param $ticket_ids
  191. * @return array|\yii\db\ActiveRecord[]
  192. * @author 田玲菲
  193. */
  194. public function getTicketInfo($ticket_ids){
  195. if(!is_array($ticket_ids)){
  196. $ticket_ids = explode(',',$ticket_ids);
  197. }
  198. $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')
  199. ->from(self::tableName())
  200. ->where(['and',['=','cancel_flag',0],['in','ticket_id',$ticket_ids]])
  201. ->asArray()
  202. ->all();
  203. return $result;
  204. }
  205. /**
  206. * Function Description:根据line_id获取票种列表
  207. * Function Name: getTicketsByLineId
  208. * @param $line_id
  209. * @param $current_page
  210. * @param $page_size
  211. *
  212. * @return mixed
  213. *
  214. * @author 冒炎
  215. */
  216. public function getTicketsByLineId($line_id,$current_page,$page_size){
  217. $where = ['and',['=','a.cancel_flag',0],['=','a.line_id',$line_id]];
  218. $offset = ($current_page - 1) * $page_size;
  219. $select = [
  220. 'a.ticket_id',
  221. 'a.seat_type',
  222. 'a.human_type',
  223. 'a.prod_price',
  224. 'a.cus_price',
  225. 'seat_type_name'=>"(select type_name from dict_type where id = a.seat_type)",
  226. 'human_type_name'=>"(select type_name from dict_type where id = a.human_type)"
  227. ];
  228. $list = self::find()
  229. ->select($select)
  230. ->from(self::tableName() . ' a')
  231. ->where($where)
  232. ->limit($page_size)
  233. ->offset($offset)
  234. ->orderBy('a.create_time desc')
  235. ->asArray()
  236. ->all();
  237. $total_count = self::find()
  238. ->from(self::tableName() . ' a')
  239. ->where($where)
  240. ->count();
  241. $total_page = ceil($total_count / $page_size);
  242. $result['code'] = '0';
  243. $result['info'] = '获取' . $line_id . '线路的票种列表成功';
  244. $result['page'] = array(
  245. 'page_size' => $page_size,
  246. 'current_page' => $current_page,
  247. 'total_count' => $total_count,
  248. 'total_page' => $total_page
  249. );
  250. $result['ticket'] = $list;
  251. return $result;
  252. }
  253. /**
  254. * Function Description:更新票种是否需要检票属性
  255. * Function Name: uptIsCheck
  256. * @param $ticket_id
  257. * @param $is_check
  258. *
  259. *
  260. * @author 冒炎
  261. */
  262. public function uptIsCheck($ticket_id,$is_check){
  263. self::updateAll(['is_checked'=>$is_check],['ticket_id'=>$ticket_id]);
  264. }
  265. }