|
- <?php
- /**
- *
- * ============================================================================
- * * 版权所有 蜘蛛出行 * *
- * 网站地址: http://www.zhizhuchuxing.com
- * ----------------------------------------------------------------------------
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
- * 使用;不允许对程序代码以任何形式任何目的的再发布。
- * ============================================================================
- * Author By: 张帅
- * PhpStorm SubmitOrder.php
- * Create By 2017/4/5 14:21 $
- */
-
- namespace backend\modules\zzcs\logic;
-
- use backend\modules\zzcs\models\OperaTicketsAgent;
- use backend\modules\zzcs\models\BaseUser;
- use common\models\CheckData;
- use backend\modules\zzcs\models\BaseArea;
- use backend\modules\zzcs\models\BaseResource;
- use backend\modules\zzcs\models\BaseSupplier;
- use backend\modules\zzcs\models\BaseSupplierSale;
- use backend\modules\zzcs\models\OperaLine;
- use backend\modules\zzcs\models\OperaProduct;
- use backend\modules\zzcs\models\OperaProductRun;
- use backend\modules\zzcs\models\OperaTickets;
- use backend\modules\zzcs\models\OperaTicketsDistrib;
- use backend\modules\zzcs\models\RunHotel;
- use backend\modules\zzcs\models\RunHotelDistrib;
- use backend\modules\zzcs\models\RunHotelSubRoom;
- use backend\modules\zzcs\models\RunMain;
- use backend\modules\zzcs\models\RunProd;
- use backend\modules\zzcs\models\RunStation;
- use backend\modules\zzcs\models\RunStock;
- use yii\db\Expression;
- use yii\db\Query;
- use Yii;
-
- class SubmitGroupOrder extends Query
- {
- /**
- * Function Description:获取巴士产品数据
- * Function Name: getBusProInfoByLine
- * @param $channel_id
- * @param $line_id
- * @param $run_date
- * @param $line_type
- *
- * @return array
- *
- * @author 张帅
- */
- public function getBusProInfoByLine($channel_id, $line_id, $run_date, $line_type)
- {
- //1,判断是否是代售
- $main_corp_id=$this->getMainCorpId();
- $res=$this->judgeIsAgent($line_id,$main_corp_id);
- $is_agent=$res['is_agent'];
-
- $opera_ticket_name = $is_agent ? 'opera_tickets_agent' : 'opera_tickets';
- $agent_condition=$is_agent?['and',['=','ot.authority_status',1],['=', 'ot.to_main_corp_id', $main_corp_id]]:'';
- //2,获取巴士产品数据
- $result = [];
- #region 班次票种数据列表
- $ticket_list = RunMain::find()
- ->select([
- 'rm.run_id',//班次id
- 'rm.run_time',
- 'ot.ticket_id',//票种id
- 'ot.cus_price',//零售价
- 'ot.prod_price',//分销价
- 'start_area_id' => 'rp.start_station_area_id',//出发地
- 'start_area_name' => BaseArea::find()->select('area_name')->where('id = rp.start_station_area_id')->limit(1),
- 'end_area_id' => 'rp.end_station_area_id',//目的地
- 'end_area_name' => BaseArea::find()->select('area_name')->where('id = rp.end_station_area_id')->limit(1),
- 'start_res_id' => 'rp.start_station_res_id',//上车站
- 'start_res_name' => BaseResource::find()->select('res_name')->where('res_id = rp.start_station_res_id')->limit(1),
- 'end_res_id' => 'rp.end_station_res_id',//下车站
- 'end_res_name' => BaseResource::find()->select('res_name')->where('res_id = rp.end_station_res_id')->limit(1),
- 'pub_sale_type' => 'bs.sale_type',//公有销售方式-->177 分销,277 代理,312 直营
- 'pri_sale_type' => 'otd.sale_type',//销售方式-->177 分销,277 代理,312 直营
- 'ticket_price' => 'otd.prod_price',//销售价格-->分销价格?
- //'otd.authority_status' //该渠道该票种是否授权
- ])
- ->from(RunMain::tableName() . ' as rm')
- ->leftJoin(RunProd::tableName() . ' as rp', 'rm.run_id = rp.run_id')
- ->leftJoin(RunStation::tableName() . ' as rst1', 'rst1.run_id = rp.run_id and rst1.station_res_id = rp.start_station_res_id ')
- ->leftJoin(RunStation::tableName() . ' as rst2', 'rst2.run_id = rp.run_id and rst2.station_res_id = rp.end_station_res_id ')
- ->leftJoin($opera_ticket_name . ' as ot', 'rp.prod_id = ot.ticket_id')
- ->leftJoin(OperaLine::tableName() . ' as ol', 'rm.prod_id = ol.line_id')
- ->leftJoin(BaseSupplierSale::tableName() . ' as bs', 'bs.supplier_id = ' . $channel_id . ' and bs.parent_type = 310 and bs.product_type in (0,' . $line_type . ')')
- ->leftJoin(OperaTicketsDistrib::tableName() . ' as otd', 'bs.supplier_id = otd.supplier_id and rm.prod_id = otd.line_id and ot.ticket_id = otd.ticket_id and otd.cancel_flag = 0')
- ->where([
- 'and',
- ['=', 'rm.run_date', $run_date],
- ['=', 'rm.prod_id', $line_id],
- ['=', 'rp.cancel_flag', 0],
- ['=', 'ot.cancel_flag', 0],
- ['=', 'ot.is_onsale', 1],
- ['=', 'ot.ticket_type', 1],
- $agent_condition,
- ['=', 'bs.cancel_flag', 0],
- ['!=', 'rst1.station_inout_type', 114],
- ['!=', 'rst2.station_inout_type', 114],
- ['!=', 'rm.run_status', 142],
- ['!=', 'rm.run_status', 137],
- ['or', 'otd.authority_status=1', 'otd.authority_status is null'],
- ])
- ->groupBy(['run_id', 'ticket_id'])
- ->asArray()->all();
- #endregion
-
- #region 班次站点库存数据列表
- $station_list = RunStation::find()
- ->select([
- 'rs.run_id',//班次id
- 'rt.seq_id',//顺序
- 'res_id' => 'rs.station_res_id',//站点id
- 'res_time' => 'rs.start_time',//开始时间
- 'ticket_stock' => new Expression("rt.total_count-rt.saled_count"),
- ])
- ->from(RunStation::tableName() . ' as rs')
- ->leftJoin(RunStock::tableName() . ' as rt', 'rs.run_id = rt.run_id and rs.station_order_id = rt.seq_id')
- ->where([
- 'and',
- ['=', 'rs.prod_id', $line_id],
- ['=', 'rt.cancel_flag', 0],
- ['in', 'seat_type', [0, 72]],
- ])
- ->orderBy(['run_id' => SORT_ASC, 'seq_id' => SORT_ASC,])
- ->asArray()->all();
- #endregion
-
- $station_list_arr = [];
- foreach ($station_list as $key => $vel) {
- $station_list_arr[$vel['run_id']][$vel['res_id']] = $vel;
- }
-
- foreach ($ticket_list as $key => $vel) {
- #region 获取班次信息
- if (!isset($result[$vel['run_id']])) {
- $run_info['run_id'] = $vel['run_id'];
- $run_info['run_time'] = $vel['run_time'];
- $result[$vel['run_id']]['run_info'] = $run_info;
- }
- #endregion
-
- #region 获取开始站站点信息
- if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']])) {
- $start_res_info['res_id'] = $vel['start_res_id'];
- $start_res_info['res_name'] = $vel['start_res_name'];
- $start_res_info['area_id'] = $vel['start_area_id'];
- $start_res_info['area_name'] = $vel['start_area_name'];
- $start_res_info['res_time'] = $station_list_arr[$vel['run_id']][$vel['start_res_id']]['res_time'];
- $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['res_info'] = $start_res_info;
- }
- #endregion
-
- #region 获取终点站站点信息
- if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']])) {
- $end_res_info['res_id'] = $vel['end_res_id'];
- $end_res_info['res_name'] = $vel['end_res_name'];
- $end_res_info['area_id'] = $vel['end_area_id'];
- $end_res_info['area_name'] = $vel['end_area_name'];
- $end_res_info['res_time'] = $station_list_arr[$vel['run_id']][$vel['end_res_id']]['res_time'];
- $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['res_info'] = $end_res_info;
- }
- #endregion
-
- #region 获取票种信息
- if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['ticket_info'])) {
- $ticket_info['run_id'] = $vel['run_id'];
- $ticket_info['ticket_id'] = $vel['ticket_id'];
- $ticket_info['ticket_price'] = $this->getTicketPrice($vel);
- $ticket_info['ticket_stock'] = $this->getTicketStock($vel, $station_list_arr[$vel['run_id']]);
- $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['ticket_info'] = $ticket_info;
-
- }
- #endregion
- }
-
- #region 整理数据
- foreach ($result as $run_key => $run_vel) {
- foreach ($run_vel['start_res_arr'] as $start_key => $start_vel) {
- $result[$run_key]['start_res_arr'][$start_key]['end_res_arr'] = array_merge($start_vel['end_res_arr']);
- }
- $result[$run_key]['start_res_arr'] = array_merge($result[$run_key]['start_res_arr']);
- }
- $result = array_merge($result);
- #endregion
-
- return $result;
- }
-
- /**
- * Function Description:获取渠道的销售类型
- * Function Name: getChannelSaleType
- * @param int $channel_id 渠道id
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function getChannelSaleType($channel_id)
- {
- $sale_list = BaseSupplierSale::find()
- ->select([
- 'bss.product_type',//子类:255 直通 256 穿梭 284 城际商务车
- 'bss.parent_type',//父类 :310 巴士,311 门票,25 酒店
- ])
- ->from(BaseSupplierSale::tableName() . ' as bss')
- ->leftJoin(BaseSupplier::tableName() . ' as bs', 'bss.supplier_id = bs.id')
- ->where([
- 'and',
- ['=', 'bss.supplier_id', $channel_id],
- ['=', 'bs.cancel_flag', 0],
- ['=', 'bs.is_disabled', 0],
- ['=', 'bs.supplier_type', 301],
- ['=', 'bss.cancel_flag', 0],
- ])
- ->asArray()->all();
-
- #region 整理数据
- $result = [];
- foreach ($sale_list as $key => $vel) {
- $result[$vel['parent_type']][] = $vel['product_type'];
- }
- #endregion
-
- return $result;
- }
-
- /**
- * Function Description:获取指定线路类型
- * Function Name: getLineInfo
- * @param int $line_type 线路类型
- * @param int $channel_id 渠道id
- * @return array
- *
- * @author 张帅
- */
- public function getLineInfo($line_type, $channel_id)
- {
- $line_type = explode(',', $line_type);
- if (in_array(0, $line_type)) {
- $line_type = [255, 256];
- }
- //1,根据运营主体获取自营线路
- $main_corp_id = $this->getMainCorpId();
- //$real_main_corp_id = $main_corp_id == 0 ? 1 : $main_corp_id;//如果user_id对应运营主体为0,按1(蜘蛛国旅)算
- $result = OperaLine::find()
- ->select([
- 'line_id',
- 'line_name',
- 'line_type',
- 'line_code',
- ])
- ->where([
- 'and',
- ['in', 'line_type', $line_type],
- ['=', 'is_onsale', 1],
- ['=', 'if_disabled', 0],
- ['=', 'cancel_flag', 0],
- ['!=', 'line_code', ''],
- ['=', 'main_corp_id', $main_corp_id]
- ])
- ->orderBy(['line_type' => SORT_ASC])
- ->asArray()->all();
- //2,获取代售线路(如果在opera_tickets_agent里有授权给自己的运营主体)
- $res = OperaTicketsAgent::find()
- //->select('a.id,a.ticket_id,c.line_id,a.to_main_corp_id,c.line_name,c.line_type,c.line_code')
- ->select('a.line_id,c.line_name,c.line_type,c.line_code')
- ->from(OperaTicketsAgent::tableName() . ' as a')
- ->leftJoin(OperaLine::tableName() . ' as c', 'a.line_id=c.line_id')
- ->leftJoin(OperaTicketsDistrib::tableName() . ' as b', 'a.ticket_id=b.ticket_id and b.supplier_id=' . $channel_id)
- ->where([
- 'and',
- 'a.to_main_corp_id=' . $main_corp_id,
- 'a.authority_status=1',
- 'a.is_onsale=1',
- 'a.cancel_flag=0',
- ['in', 'c.line_type', $line_type],
- ['=', 'c.is_onsale', 1],
- ['=', 'c.if_disabled', 0],
- ['=', 'c.cancel_flag', 0],
- ['or', 'b.cancel_flag=0', 'b.cancel_flag is null'],
- ['or', 'b.authority_status=1', 'b.authority_status is null']
- ])->distinct()->asArray()->all();
- //3 处理合并线路数组
- $final_line_list=$result;
- if(!empty($res)){
- foreach($res as $k=>$v){
- $final_line_list[]=$v;
- }
- }
- return $final_line_list;
- }
-
- /**
- * Function Description:获取运营主体id
- * Function Name: getMainCorpId
- * @param int $user_id 用户id
- *
- * @return int
- *
- * @author 温依莅
- */
- public function getMainCorpId($user_id=-1){
- //如果未传user_id,取cookie中的user_id
- if($user_id==-1){
- $user_id=Yii::$app->request->cookies->getValue('user_id');
- }
- $res=BaseUser::find()->select('id,main_corp_id')->where(['id'=>$user_id])->limit(1)->asArray()->one();
- $main_corp_id=$res['main_corp_id'];
- if($main_corp_id==0){ //在下单流程中,main_corp_id为0的 视为main_corp_id为1【蜘蛛国旅运营主体】
- $main_corp_id=1;
- }
- return $main_corp_id;
- }
-
- /**
- * Function Description:判断线路是否是代售
- * Function Name: judgeIsAgent
- * @param int $line_id 线路id
- * @param int $main_corp_id 用户所属运营主体
- *
- * @return array
- *
- * @author 温依莅
- */
- public function judgeIsAgent($line_id,$main_corp_id){
- $res=OperaLine::find()->select('line_id,main_corp_id')->where(['line_id'=>$line_id])->limit(1)->asArray()->one();
- $ori_main_corp_id=$res['main_corp_id'];
- $is_agent=0;
- if($main_corp_id!=$ori_main_corp_id){
- $is_agent=1;
- }
- $list=array();
- $list['is_agent']=$is_agent;
- $list['ori_main_corp_id']=$ori_main_corp_id;//线路所属运营主体
- return $list;
- }
- /**
- * Function Description:获取票种销售价格
- * Function Name: getTicketPrice
- * @param mixed $ticket_info 票种信息
- *
- * @return mixed
- *
- * @author 张帅
- */
- public function getTicketPrice($ticket_info)
- {
- $sale_type = empty($ticket_info['pri_sale_type']) ? $ticket_info['pub_sale_type'] : $ticket_info['pri_sale_type'];
- #region 获取票种价格 判断销售规则是否设定价格
- if (empty($ticket_info['ticket_price'])) {
- #region 判断销售类型
- if ($sale_type == 177) {
- $result = $ticket_info['prod_price'];
- } else {
- $result = $ticket_info['cus_price'];
- }
- #endregion
- } else {
- $result = $ticket_info['ticket_price'];
- }
- #endregion
- return $result;
- }
-
- /**
- * Function Description:获取库存
- * Function Name: getTicketStock
- * @param mixed $ticket_info 票种信息
- * @param mixed $stock_arr 库存信息
- *
- * @return int
- *
- * @author 张帅
- */
- public function getTicketStock($ticket_info, $stock_arr)
- {
- #region 获取库存
- $ticket_stock = -100;
- $stock_status = 0;
- foreach ($stock_arr as $stock_key => $stock_vel) {
- if ($stock_status == 2) {
- break;
- }
- if ($stock_key == $ticket_info['start_res_id']) {
- $stock_status = 1;
- }
- if ($stock_key == $ticket_info['end_res_id']) {
- $stock_status = 2;
- }
-
- if ($stock_status == 1) {
- if ($ticket_stock == -100 || $ticket_stock > $stock_vel['ticket_stock']) {
- $ticket_stock = $stock_vel['ticket_stock'];
- }
- }
- }
- #endregion
-
- return $ticket_stock;
- }
-
- /**
- * Function Description:获取门票产品详情
- * Function Name: getTicketProInfoById
- * @param $ticket_id
- * @param $run_date
- * @param $to_org_id
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 冒炎
- */
- public function getTicketProInfoById($ticket_id, $run_date,$to_org_id)
- {
- // $result = OperaProduct::find()
- // ->select([
- // 'son_ticket_id' => 'op.prod_id',//子票种id
- // 'son_ticket_name' => 'op.prod_name',//票种名称
- // 'opr.prod_price',//结算价
- // 'opr.cus_price',//零售价
- // 'ticket_stock' => new Expression("opr.total_count-opr.saled_count"),//库存
- // ])
- // ->from(OperaProduct::tableName() . ' as op')
- // ->leftJoin(OperaProductRun::tableName() . ' as opr', 'op.prod_id = opr.prod_id')
- // ->where([
- // 'and',
- // ['=', 'op.parent_id', $ticket_id],
- // ['=', 'opr.run_date', $run_date],
- // ['=', 'op.cancel_flag', 0],
- // ['=', 'op.is_onsale', 1],
- // ['=', 'opr.cancel_flag', 0],
- // ['=', 'opr.is_onsale', 1],
- // ])
- // ->groupBy(['son_ticket_id'])
- // ->asArray()->all();
- //
- // return $result;
- $model = new OperaProductRun();
- $result = $model->getProdInfo($ticket_id,$run_date,$to_org_id,true);
- if($result){
- if($result[0]['is_onsale'] == 0){
- $result=[];
- }
- return $result;
- }else{
- $res = $model->getProdInfo($ticket_id,$run_date,$to_org_id,false);
- if(!empty($res)&&$res[0]['is_onsale'] == 0){
- $res = [];
- }
- return $res;
- }
- }
-
- /**
- * Function Description:获取酒店产品详情
- * Function Name: getHotelProInfo
- * @param int $channel_id 渠道id
- * @param int $hotel_id 酒店id
- * @param int $base_room_type 基础房型
- * @param int $room_type 房型类型
- * @param string $start_date 入住日期
- * @param string $end_date 离店日期
- *
- * @return array|\yii\db\ActiveRecord[]
- *
- * @author 张帅
- */
- public function getHotelProInfo($channel_id, $hotel_id, $base_room_type, $room_type, $start_date, $end_date)
- {
- #region 获取每日房间属性
- $result = RunHotelDistrib::find()
- ->select([
- 'rhd.run_date',//入住日期
- 'remaining_count' => new Expression("case rhd.run_status when 326 then rhd.remaining_count when 329 then -1 else 0 end"),//库存剩余数量
- 'rhd.oversell_flag',//允许超卖标志 1:允许超卖 0:不允许超卖
- 'rhd.consume_stock_type',//下单时消耗的库存类型顺序
- 'price' => new Expression("case when bss.sale_type = 177 then rhd.prod_price else rhd.cus_price end"),//价格
- 'bss.sale_type',//销售类型
- 'bss.commision_flag',
- 'bss.commision_type',
- 'bss.back_commision_type',
- 'bss.back_commision_method',
- 'bss.back_percent',
- 'bss.back_value',
- ])
- ->from(RunHotelDistrib::tableName() . ' as rhd')
- ->leftJoin(BaseSupplierSale::tableName() . ' as bss', 'rhd.distrib_id = bss.supplier_id')
- ->where([
- 'and',
- ['=', 'rhd.distrib_id', $channel_id],
- ['=', 'rhd.hotel_id', $hotel_id],
- ['=', 'rhd.room_type', $room_type],
- ['=', 'rhd.base_room_type', $base_room_type],
- ['between', 'rhd.run_date', $start_date, date('Y-m-d', strtotime("$end_date -1 day"))],
- ['=', 'bss.parent_type', 25],
- ['=', 'bss.cancel_flag', 0],
- ['=', 'rhd.authority_status', 1],//run_hotel_distrib 授权
- ])
- ->asArray()->all();
- #endregion
-
- #region 获取不同库存类型
- foreach ($result as $key => $vel) {
- $stock_type_arr = explode(',', $vel['consume_stock_type']);//下单时消耗的库存类型顺序
- $stock_type_arr = array_unique($stock_type_arr);
- $result[$key]['stock_type_arr'] = $stock_type_arr;//下单时消耗的库存类型顺序
- }
- #endregion
-
- #region 获取不同库存类型的库存及价格
- $and_where = ['or'];
- foreach ($result as $key => $vel) {
- $and_where[] = [
- 'and',
- ['=', 'rh.run_date', $vel['run_date']],
- ['in', 'rh.stock_type', $vel['stock_type_arr']],
- ];
- }
-
- $stock_list = RunHotel::find()
- ->select([
- 'rh.run_date',//入住日期
- 'rh.stock_type',//库存类型
- 'rh.remaining_count',//库存剩余数量
- 'cost_price' => new Expression("case rh.stock_type when 228 then rhs.base_price_buyout when 230 then rhs.base_price_reserve when 229 then rhs.base_price_inquiry else 0 end"),//价格
- ])
- ->from(RunHotel::tableName() . ' as rh')
- ->leftJoin(RunHotelSubRoom::tableName() . ' as rhs', 'rh.hotel_id = rhs.hotel_id and rh.base_room_type = rhs.base_room_type and rh.run_date = rhs.run_date')
- ->where([
- 'and',
- ['=', 'rh.hotel_id', $hotel_id],
- ['=', 'rhs.room_type', $room_type],
- ['=', 'rh.base_room_type', $base_room_type],
- ['=', 'rhs.run_status', 1],
- ['=', 'rh.is_onsale', 1],//run_hotel上线
- ['=', 'rhs.is_onsale', 1],//run_hotel_sub_room 上线
- ])
- ->andWhere($and_where)
- ->asArray()->all();
- #endregion
-
- #region 处理数据
- $stock_list_arr = [];
- foreach ($stock_list as $key => $vel) {
- $stock_list_arr[$vel['run_date'] . '-' . $vel['stock_type']] = $vel;
- }
-
- foreach ($result as $key => $vel) {
- $result[$key]['room_stock'] = 0;
- if($vel['oversell_flag']==1){
- $byout_reserve=(int)$stock_list_arr[$vel['run_date'] . '-' . 228]['remaining_count']+(int)$stock_list_arr[$vel['run_date'] . '-' . 230]['remaining_count'];
- $inquiry=(int)$stock_list_arr[$vel['run_date'] . '-' . 229]['remaining_count'];
- $result[$key]['room_stock']=$byout_reserve>$inquiry ? $byout_reserve :$inquiry;
- }else{
- $result[$key]['room_stock']=$vel['remaining_count'];
- }
- foreach ($vel['stock_type_arr'] as $stock_key => $stock_vel) {
- if (isset($stock_list_arr[$vel['run_date'] . '-' . $stock_vel])) {
- $result[$key]['stock_type_arr'][$stock_key] = $stock_list_arr[$vel['run_date'] . '-' . $stock_vel];
- } else {
- unset($result[$key]['stock_type_arr'][$stock_key]);
- }
- }
- }
-
- foreach ($result as $key => $vel) {
- $result[$key]['stock_type_arr'] = array_merge($vel['stock_type_arr']);
- }
- #endregion
-
- return $result;
- }
-
- /**
- * Function Description:获取提交订单所需数据
- * Function Name: getSubmitGroupOrderData
- * @param string $product_name 产品名称
- * @param int $channel_id 渠道id
- * @param string $channel_order_no 渠道订单号
- * @param string $bus_product 巴士产品
- * @param string $hotel_product 酒店产品
- * @param string $ticket_product 门票产品
- * @param string $customer_info 乘客信息
- *
- * @return array
- *
- * @author 张帅
- */
- public function getSubmitGroupOrderData($product_name, $channel_id, $channel_order_no, $bus_product, $hotel_product, $ticket_product, $customer_info)
- {
- $result = [];
- $result['product_name'] = $product_name;//产品名称
- $result['bus_product'] = $this->checkBusProductData($bus_product);//巴士产品
- if ($result['bus_product'] === false) {
- $json['code'] = '1';
- $json['info'] = '巴士产品有误';
- return $json;
- }
-
- $result['hotel_product'] = $this->checkHotelProductData($hotel_product);//酒店产品
- if ($result['hotel_product'] === false) {
- $json['code'] = '1';
- $json['info'] = '酒店产品有误';
- return $json;
- }
-
- $result['ticket_product'] = $this->checkTicketProductData($ticket_product);//门票产品
- if ($result['ticket_product'] === false) {
- $json['code'] = '1';
- $json['info'] = '门票产品有误';
- return $json;
- }
-
- $result['customer_info'] = $this->checkCustomerInfoData($customer_info);//顾客信息
- if ($result['customer_info'] === false) {
- $json['code'] = '1';
- $json['info'] = '顾客信息有误';
- return $json;
- }
-
- $result['order_info'] = $this->getOrderInfoData($channel_id, $channel_order_no);//订单基础信息
- if ($result['order_info'] === false) {
- $json['code'] = '1';
- $json['info'] = '没有渠道商';
- return $json;
- }
-
- return $result;
- }
-
- /**
- * Function Description:检验巴士数据
- * Function Name: checkBusProductData
- * @param string $bus_product 巴士产品
- *
- * @return bool
- *
- * @author 张帅
- */
- public function checkBusProductData($bus_product)
- {
- $check_data = new CheckData();
- if ($bus_product != '') {
- #region 将json数据转为数组
- if (is_null(json_decode($bus_product, true))) {
- return false;
- }
- $bus_product_arr = json_decode($bus_product, true);
- #endregion
-
- foreach ($bus_product_arr as $key => $vel) {
- /**
- * 检验数据
- * 班次id 必有且不为空
- * 票种id 必有且不为空
- * 人数 必有且不为空,0 且必须为整数
- * 价格 不必有 有则比为数字
- * 车号 不必有 有则比为数字
- */
- if (!$check_data->checkArrayData($vel, [[['run_id', 'ticket_id'], 1], [['prod_num'], 4], [['prod_price', 'bus_no'], 3]])) {
- return false;
- }
- }
- }
- return $bus_product;
- }
-
- /**
- * Function Description:检验酒店数据
- * Function Name: checkHotelProductData
- * @param string $hotel_product 酒店产品
- *
- * @return bool
- *
- * @author 张帅
- */
- public function checkHotelProductData($hotel_product)
- {
- $check_data = new CheckData();
-
- if ($hotel_product != '') {
- #region 将json数据转为数组
- if (is_null(json_decode($hotel_product, true))) {
- return false;
- }
- $hotel_product_arr = json_decode($hotel_product, true);
- #endregion
-
- foreach ($hotel_product_arr as $key => $vel) {
- /**
- * 检验数据
- * 酒店id 必有且不为空
- * 基础房型id 必有且不为空
- * 房型好 必有且不为空
- * 房间数据 必有且数量大于0
- */
- if (!$check_data->checkArrayData($vel, [[['hotel_id', 'base_room_type', 'room_type'], 1], [['run_room'], 5]])) {
- return false;
- }
-
- foreach ($vel['run_room'] as $room_key => $room_vel) {
- /**
- * 检验数据
- * 入住日期 必有且是****-**-** 5
- * 人数 必有且不为空,0 且必须为整数
- * 价格 不必有 有则比为数字
- */
- if (!$check_data->checkArrayData($room_vel, [[['run_date'], 6], [['prod_num'], 4], [['prod_price', 'back_value'], 3]])) {
- return false;
- }
- }
- }
- }
- return $hotel_product;
- }
-
- /**
- * Function Description:检验门票数据
- * Function Name: checkTicketProductData
- * @param string $ticket_product 门票产品
- *
- * @return bool
- *
- * @author 张帅
- */
- public function checkTicketProductData($ticket_product)
- {
- $check_data = new CheckData();
-
- if ($ticket_product != '') {
- #region 将json数据转为数组
- if (is_null(json_decode($ticket_product, true))) {
- return false;
- }
- $ticket_product_arr = json_decode($ticket_product, true);
- #endregion
-
- foreach ($ticket_product_arr as $key => $vel) {
- /**
- * 检验数据
- * 门票id 必有且不为空
- * 游玩日期 必有且是****-**-** 5
- * 子票种 必有且数量大于0
- */
- if (!$check_data->checkArrayData($vel, [[['ticket_id'], 1], [['run_date'], 6], [['son_ticket'], 5]])) {
- return false;
- }
-
- foreach ($vel['son_ticket'] as $son_key => $son_vel) {
- /**
- * 检验数据
- * 子票种id 必有且不为空
- * 人数 必有且不为空,0 且必须为整数
- * 价格 不必有 有则比为数字
- */
- if (!$check_data->checkArrayData($son_vel, [[['son_ticket_id'], 1], [['prod_num'], 4], [['prod_price'], 3]])) {
- return false;
- }
- }
- }
- }
-
- return $ticket_product;
- }
-
- /**
- * Function Description:检验乘客数据
- * Function Name: checkCustomerInfoData
- * @param string $customer_info 乘客数据
- *
- * @return bool
- *
- * @author 张帅
- */
- public function checkCustomerInfoData($customer_info)
- {
- $check_data = new CheckData();
-
- #region 将json数据转为数组
- if (is_null(json_decode($customer_info, true)) || $customer_info == '') {
- return false;
- }
- $customer_info_arr = json_decode($customer_info, true);
- #endregion
-
- /**
- * 检验数据
- * 顾客名称 必有且不为空
- * 顾客电话 必有且不为空(可以为空)
- * 顾客证件类型 必有且不为空
- * 顾客证件号 必有且不为空
- */
- if (!$check_data->checkArrayData($customer_info_arr, [[['customer_name'/*, 'customer_mobile'*/, 'customer_id_type'], 1]])) {
- return false;
- }
-
- return $customer_info;
- }
-
- /**
- * Function Description:获取订单基础信息
- * Function Name: getOrderInfoData
- * @param int $channel_id 渠道id
- * @param string $channel_order_no 渠道订单号
- *
- * @return bool|string
- *
- * @author 张帅
- */
- public function getOrderInfoData($channel_id, $channel_order_no)
- {
- //获取cookies
- $cookies = Yii::$app->request->cookies;
-
- $result = [];
- if (empty($channel_id)) {
- return false;
- }
-
- $result['user_id'] = $cookies->getValue('user_id');
- $result['member_id'] = $cookies->getValue('user_id');
- $result['outside_sale_org_id'] = $channel_id;//外部下单id
- $result['outside_sale_order_no'] = $channel_order_no;//外部下单号
- $result['order_book_status'] = 0;//订单预订状态
- $result['pay_type'] = 275;//支付方式(授信,微信)
- $result['order_pay_status'] = 1;//是否支付
- $result['sales_man'] = '';//业务员
- return json_encode($result);
- }
- }
|