Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

838 řádky
32 KiB

  1. <?php
  2. /**
  3. *
  4. * ============================================================================
  5. * * 版权所有 蜘蛛出行 * *
  6. * 网站地址: http://www.zhizhuchuxing.com
  7. * ----------------------------------------------------------------------------
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和
  9. * 使用;不允许对程序代码以任何形式任何目的的再发布。
  10. * ============================================================================
  11. * Author By: 张帅
  12. * PhpStorm SubmitOrder.php
  13. * Create By 2017/4/5 14:21 $
  14. */
  15. namespace backend\modules\zzcs\logic;
  16. use backend\modules\zzcs\models\OperaTicketsAgent;
  17. use backend\modules\zzcs\models\BaseUser;
  18. use common\models\CheckData;
  19. use backend\modules\zzcs\models\BaseArea;
  20. use backend\modules\zzcs\models\BaseResource;
  21. use backend\modules\zzcs\models\BaseSupplier;
  22. use backend\modules\zzcs\models\BaseSupplierSale;
  23. use backend\modules\zzcs\models\OperaLine;
  24. use backend\modules\zzcs\models\OperaProduct;
  25. use backend\modules\zzcs\models\OperaProductRun;
  26. use backend\modules\zzcs\models\OperaTickets;
  27. use backend\modules\zzcs\models\OperaTicketsDistrib;
  28. use backend\modules\zzcs\models\RunHotel;
  29. use backend\modules\zzcs\models\RunHotelDistrib;
  30. use backend\modules\zzcs\models\RunHotelSubRoom;
  31. use backend\modules\zzcs\models\RunMain;
  32. use backend\modules\zzcs\models\RunProd;
  33. use backend\modules\zzcs\models\RunStation;
  34. use backend\modules\zzcs\models\RunStock;
  35. use yii\db\Expression;
  36. use yii\db\Query;
  37. use Yii;
  38. class SubmitGroupOrder extends Query
  39. {
  40. /**
  41. * Function Description:获取巴士产品数据
  42. * Function Name: getBusProInfoByLine
  43. * @param $channel_id
  44. * @param $line_id
  45. * @param $run_date
  46. * @param $line_type
  47. *
  48. * @return array
  49. *
  50. * @author 张帅
  51. */
  52. public function getBusProInfoByLine($channel_id, $line_id, $run_date, $line_type)
  53. {
  54. //1,判断是否是代售
  55. $main_corp_id=$this->getMainCorpId();
  56. $res=$this->judgeIsAgent($line_id,$main_corp_id);
  57. $is_agent=$res['is_agent'];
  58. $opera_ticket_name = $is_agent ? 'opera_tickets_agent' : 'opera_tickets';
  59. $agent_condition=$is_agent?['and',['=','ot.authority_status',1],['=', 'ot.to_main_corp_id', $main_corp_id]]:'';
  60. //2,获取巴士产品数据
  61. $result = [];
  62. #region 班次票种数据列表
  63. $ticket_list = RunMain::find()
  64. ->select([
  65. 'rm.run_id',//班次id
  66. 'rm.run_time',
  67. 'ot.ticket_id',//票种id
  68. 'ot.cus_price',//零售价
  69. 'ot.prod_price',//分销价
  70. 'start_area_id' => 'rp.start_station_area_id',//出发地
  71. 'start_area_name' => BaseArea::find()->select('area_name')->where('id = rp.start_station_area_id')->limit(1),
  72. 'end_area_id' => 'rp.end_station_area_id',//目的地
  73. 'end_area_name' => BaseArea::find()->select('area_name')->where('id = rp.end_station_area_id')->limit(1),
  74. 'start_res_id' => 'rp.start_station_res_id',//上车站
  75. 'start_res_name' => BaseResource::find()->select('res_name')->where('res_id = rp.start_station_res_id')->limit(1),
  76. 'end_res_id' => 'rp.end_station_res_id',//下车站
  77. 'end_res_name' => BaseResource::find()->select('res_name')->where('res_id = rp.end_station_res_id')->limit(1),
  78. 'pub_sale_type' => 'bs.sale_type',//公有销售方式-->177 分销,277 代理,312 直营
  79. 'pri_sale_type' => 'otd.sale_type',//销售方式-->177 分销,277 代理,312 直营
  80. 'ticket_price' => 'otd.prod_price',//销售价格-->分销价格?
  81. //'otd.authority_status' //该渠道该票种是否授权
  82. ])
  83. ->from(RunMain::tableName() . ' as rm')
  84. ->leftJoin(RunProd::tableName() . ' as rp', 'rm.run_id = rp.run_id')
  85. ->leftJoin(RunStation::tableName() . ' as rst1', 'rst1.run_id = rp.run_id and rst1.station_res_id = rp.start_station_res_id ')
  86. ->leftJoin(RunStation::tableName() . ' as rst2', 'rst2.run_id = rp.run_id and rst2.station_res_id = rp.end_station_res_id ')
  87. ->leftJoin($opera_ticket_name . ' as ot', 'rp.prod_id = ot.ticket_id')
  88. ->leftJoin(OperaLine::tableName() . ' as ol', 'rm.prod_id = ol.line_id')
  89. ->leftJoin(BaseSupplierSale::tableName() . ' as bs', 'bs.supplier_id = ' . $channel_id . ' and bs.parent_type = 310 and bs.product_type in (0,' . $line_type . ')')
  90. ->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')
  91. ->where([
  92. 'and',
  93. ['=', 'rm.run_date', $run_date],
  94. ['=', 'rm.prod_id', $line_id],
  95. ['=', 'rp.cancel_flag', 0],
  96. ['=', 'ot.cancel_flag', 0],
  97. ['=', 'ot.is_onsale', 1],
  98. ['=', 'ot.ticket_type', 1],
  99. $agent_condition,
  100. ['=', 'bs.cancel_flag', 0],
  101. ['!=', 'rst1.station_inout_type', 114],
  102. ['!=', 'rst2.station_inout_type', 114],
  103. ['!=', 'rm.run_status', 142],
  104. ['!=', 'rm.run_status', 137],
  105. ['or', 'otd.authority_status=1', 'otd.authority_status is null'],
  106. ])
  107. ->groupBy(['run_id', 'ticket_id'])
  108. ->asArray()->all();
  109. #endregion
  110. #region 班次站点库存数据列表
  111. $station_list = RunStation::find()
  112. ->select([
  113. 'rs.run_id',//班次id
  114. 'rt.seq_id',//顺序
  115. 'res_id' => 'rs.station_res_id',//站点id
  116. 'res_time' => 'rs.start_time',//开始时间
  117. 'ticket_stock' => new Expression("rt.total_count-rt.saled_count"),
  118. ])
  119. ->from(RunStation::tableName() . ' as rs')
  120. ->leftJoin(RunStock::tableName() . ' as rt', 'rs.run_id = rt.run_id and rs.station_order_id = rt.seq_id')
  121. ->where([
  122. 'and',
  123. ['=', 'rs.prod_id', $line_id],
  124. ['=', 'rt.cancel_flag', 0],
  125. ['in', 'seat_type', [0, 72]],
  126. ])
  127. ->orderBy(['run_id' => SORT_ASC, 'seq_id' => SORT_ASC,])
  128. ->asArray()->all();
  129. #endregion
  130. $station_list_arr = [];
  131. foreach ($station_list as $key => $vel) {
  132. $station_list_arr[$vel['run_id']][$vel['res_id']] = $vel;
  133. }
  134. foreach ($ticket_list as $key => $vel) {
  135. #region 获取班次信息
  136. if (!isset($result[$vel['run_id']])) {
  137. $run_info['run_id'] = $vel['run_id'];
  138. $run_info['run_time'] = $vel['run_time'];
  139. $result[$vel['run_id']]['run_info'] = $run_info;
  140. }
  141. #endregion
  142. #region 获取开始站站点信息
  143. if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']])) {
  144. $start_res_info['res_id'] = $vel['start_res_id'];
  145. $start_res_info['res_name'] = $vel['start_res_name'];
  146. $start_res_info['area_id'] = $vel['start_area_id'];
  147. $start_res_info['area_name'] = $vel['start_area_name'];
  148. $start_res_info['res_time'] = $station_list_arr[$vel['run_id']][$vel['start_res_id']]['res_time'];
  149. $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['res_info'] = $start_res_info;
  150. }
  151. #endregion
  152. #region 获取终点站站点信息
  153. if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']])) {
  154. $end_res_info['res_id'] = $vel['end_res_id'];
  155. $end_res_info['res_name'] = $vel['end_res_name'];
  156. $end_res_info['area_id'] = $vel['end_area_id'];
  157. $end_res_info['area_name'] = $vel['end_area_name'];
  158. $end_res_info['res_time'] = $station_list_arr[$vel['run_id']][$vel['end_res_id']]['res_time'];
  159. $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['res_info'] = $end_res_info;
  160. }
  161. #endregion
  162. #region 获取票种信息
  163. if (!isset($result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['ticket_info'])) {
  164. $ticket_info['run_id'] = $vel['run_id'];
  165. $ticket_info['ticket_id'] = $vel['ticket_id'];
  166. $ticket_info['ticket_price'] = $this->getTicketPrice($vel);
  167. $ticket_info['ticket_stock'] = $this->getTicketStock($vel, $station_list_arr[$vel['run_id']]);
  168. $result[$vel['run_id']]['start_res_arr'][$vel['start_res_id']]['end_res_arr'][$vel['end_res_id']]['ticket_info'] = $ticket_info;
  169. }
  170. #endregion
  171. }
  172. #region 整理数据
  173. foreach ($result as $run_key => $run_vel) {
  174. foreach ($run_vel['start_res_arr'] as $start_key => $start_vel) {
  175. $result[$run_key]['start_res_arr'][$start_key]['end_res_arr'] = array_merge($start_vel['end_res_arr']);
  176. }
  177. $result[$run_key]['start_res_arr'] = array_merge($result[$run_key]['start_res_arr']);
  178. }
  179. $result = array_merge($result);
  180. #endregion
  181. return $result;
  182. }
  183. /**
  184. * Function Description:获取渠道的销售类型
  185. * Function Name: getChannelSaleType
  186. * @param int $channel_id 渠道id
  187. *
  188. * @return mixed
  189. *
  190. * @author 张帅
  191. */
  192. public function getChannelSaleType($channel_id)
  193. {
  194. $sale_list = BaseSupplierSale::find()
  195. ->select([
  196. 'bss.product_type',//子类:255 直通 256 穿梭 284 城际商务车
  197. 'bss.parent_type',//父类 :310 巴士,311 门票,25 酒店
  198. ])
  199. ->from(BaseSupplierSale::tableName() . ' as bss')
  200. ->leftJoin(BaseSupplier::tableName() . ' as bs', 'bss.supplier_id = bs.id')
  201. ->where([
  202. 'and',
  203. ['=', 'bss.supplier_id', $channel_id],
  204. ['=', 'bs.cancel_flag', 0],
  205. ['=', 'bs.is_disabled', 0],
  206. ['=', 'bs.supplier_type', 301],
  207. ['=', 'bss.cancel_flag', 0],
  208. ])
  209. ->asArray()->all();
  210. #region 整理数据
  211. $result = [];
  212. foreach ($sale_list as $key => $vel) {
  213. $result[$vel['parent_type']][] = $vel['product_type'];
  214. }
  215. #endregion
  216. return $result;
  217. }
  218. /**
  219. * Function Description:获取指定线路类型
  220. * Function Name: getLineInfo
  221. * @param int $line_type 线路类型
  222. * @param int $channel_id 渠道id
  223. * @return array
  224. *
  225. * @author 张帅
  226. */
  227. public function getLineInfo($line_type, $channel_id)
  228. {
  229. $line_type = explode(',', $line_type);
  230. if (in_array(0, $line_type)) {
  231. $line_type = [255, 256];
  232. }
  233. //1,根据运营主体获取自营线路
  234. $main_corp_id = $this->getMainCorpId();
  235. //$real_main_corp_id = $main_corp_id == 0 ? 1 : $main_corp_id;//如果user_id对应运营主体为0,按1(蜘蛛国旅)算
  236. $result = OperaLine::find()
  237. ->select([
  238. 'line_id',
  239. 'line_name',
  240. 'line_type',
  241. 'line_code',
  242. ])
  243. ->where([
  244. 'and',
  245. ['in', 'line_type', $line_type],
  246. ['=', 'is_onsale', 1],
  247. ['=', 'if_disabled', 0],
  248. ['=', 'cancel_flag', 0],
  249. ['!=', 'line_code', ''],
  250. ['=', 'main_corp_id', $main_corp_id]
  251. ])
  252. ->orderBy(['line_type' => SORT_ASC])
  253. ->asArray()->all();
  254. //2,获取代售线路(如果在opera_tickets_agent里有授权给自己的运营主体)
  255. $res = OperaTicketsAgent::find()
  256. //->select('a.id,a.ticket_id,c.line_id,a.to_main_corp_id,c.line_name,c.line_type,c.line_code')
  257. ->select('a.line_id,c.line_name,c.line_type,c.line_code')
  258. ->from(OperaTicketsAgent::tableName() . ' as a')
  259. ->leftJoin(OperaLine::tableName() . ' as c', 'a.line_id=c.line_id')
  260. ->leftJoin(OperaTicketsDistrib::tableName() . ' as b', 'a.ticket_id=b.ticket_id and b.supplier_id=' . $channel_id)
  261. ->where([
  262. 'and',
  263. 'a.to_main_corp_id=' . $main_corp_id,
  264. 'a.authority_status=1',
  265. 'a.is_onsale=1',
  266. 'a.cancel_flag=0',
  267. ['in', 'c.line_type', $line_type],
  268. ['=', 'c.is_onsale', 1],
  269. ['=', 'c.if_disabled', 0],
  270. ['=', 'c.cancel_flag', 0],
  271. ['or', 'b.cancel_flag=0', 'b.cancel_flag is null'],
  272. ['or', 'b.authority_status=1', 'b.authority_status is null']
  273. ])->distinct()->asArray()->all();
  274. //3 处理合并线路数组
  275. $final_line_list=$result;
  276. if(!empty($res)){
  277. foreach($res as $k=>$v){
  278. $final_line_list[]=$v;
  279. }
  280. }
  281. return $final_line_list;
  282. }
  283. /**
  284. * Function Description:获取运营主体id
  285. * Function Name: getMainCorpId
  286. * @param int $user_id 用户id
  287. *
  288. * @return int
  289. *
  290. * @author 温依莅
  291. */
  292. public function getMainCorpId($user_id=-1){
  293. //如果未传user_id,取cookie中的user_id
  294. if($user_id==-1){
  295. $user_id=Yii::$app->request->cookies->getValue('user_id');
  296. }
  297. $res=BaseUser::find()->select('id,main_corp_id')->where(['id'=>$user_id])->limit(1)->asArray()->one();
  298. $main_corp_id=$res['main_corp_id'];
  299. if($main_corp_id==0){ //在下单流程中,main_corp_id为0的 视为main_corp_id为1【蜘蛛国旅运营主体】
  300. $main_corp_id=1;
  301. }
  302. return $main_corp_id;
  303. }
  304. /**
  305. * Function Description:判断线路是否是代售
  306. * Function Name: judgeIsAgent
  307. * @param int $line_id 线路id
  308. * @param int $main_corp_id 用户所属运营主体
  309. *
  310. * @return array
  311. *
  312. * @author 温依莅
  313. */
  314. public function judgeIsAgent($line_id,$main_corp_id){
  315. $res=OperaLine::find()->select('line_id,main_corp_id')->where(['line_id'=>$line_id])->limit(1)->asArray()->one();
  316. $ori_main_corp_id=$res['main_corp_id'];
  317. $is_agent=0;
  318. if($main_corp_id!=$ori_main_corp_id){
  319. $is_agent=1;
  320. }
  321. $list=array();
  322. $list['is_agent']=$is_agent;
  323. $list['ori_main_corp_id']=$ori_main_corp_id;//线路所属运营主体
  324. return $list;
  325. }
  326. /**
  327. * Function Description:获取票种销售价格
  328. * Function Name: getTicketPrice
  329. * @param mixed $ticket_info 票种信息
  330. *
  331. * @return mixed
  332. *
  333. * @author 张帅
  334. */
  335. public function getTicketPrice($ticket_info)
  336. {
  337. $sale_type = empty($ticket_info['pri_sale_type']) ? $ticket_info['pub_sale_type'] : $ticket_info['pri_sale_type'];
  338. #region 获取票种价格 判断销售规则是否设定价格
  339. if (empty($ticket_info['ticket_price'])) {
  340. #region 判断销售类型
  341. if ($sale_type == 177) {
  342. $result = $ticket_info['prod_price'];
  343. } else {
  344. $result = $ticket_info['cus_price'];
  345. }
  346. #endregion
  347. } else {
  348. $result = $ticket_info['ticket_price'];
  349. }
  350. #endregion
  351. return $result;
  352. }
  353. /**
  354. * Function Description:获取库存
  355. * Function Name: getTicketStock
  356. * @param mixed $ticket_info 票种信息
  357. * @param mixed $stock_arr 库存信息
  358. *
  359. * @return int
  360. *
  361. * @author 张帅
  362. */
  363. public function getTicketStock($ticket_info, $stock_arr)
  364. {
  365. #region 获取库存
  366. $ticket_stock = -100;
  367. $stock_status = 0;
  368. foreach ($stock_arr as $stock_key => $stock_vel) {
  369. if ($stock_status == 2) {
  370. break;
  371. }
  372. if ($stock_key == $ticket_info['start_res_id']) {
  373. $stock_status = 1;
  374. }
  375. if ($stock_key == $ticket_info['end_res_id']) {
  376. $stock_status = 2;
  377. }
  378. if ($stock_status == 1) {
  379. if ($ticket_stock == -100 || $ticket_stock > $stock_vel['ticket_stock']) {
  380. $ticket_stock = $stock_vel['ticket_stock'];
  381. }
  382. }
  383. }
  384. #endregion
  385. return $ticket_stock;
  386. }
  387. /**
  388. * Function Description:获取门票产品详情
  389. * Function Name: getTicketProInfoById
  390. * @param $ticket_id
  391. * @param $run_date
  392. * @param $to_org_id
  393. *
  394. * @return array|\yii\db\ActiveRecord[]
  395. *
  396. * @author 冒炎
  397. */
  398. public function getTicketProInfoById($ticket_id, $run_date,$to_org_id)
  399. {
  400. // $result = OperaProduct::find()
  401. // ->select([
  402. // 'son_ticket_id' => 'op.prod_id',//子票种id
  403. // 'son_ticket_name' => 'op.prod_name',//票种名称
  404. // 'opr.prod_price',//结算价
  405. // 'opr.cus_price',//零售价
  406. // 'ticket_stock' => new Expression("opr.total_count-opr.saled_count"),//库存
  407. // ])
  408. // ->from(OperaProduct::tableName() . ' as op')
  409. // ->leftJoin(OperaProductRun::tableName() . ' as opr', 'op.prod_id = opr.prod_id')
  410. // ->where([
  411. // 'and',
  412. // ['=', 'op.parent_id', $ticket_id],
  413. // ['=', 'opr.run_date', $run_date],
  414. // ['=', 'op.cancel_flag', 0],
  415. // ['=', 'op.is_onsale', 1],
  416. // ['=', 'opr.cancel_flag', 0],
  417. // ['=', 'opr.is_onsale', 1],
  418. // ])
  419. // ->groupBy(['son_ticket_id'])
  420. // ->asArray()->all();
  421. //
  422. // return $result;
  423. $model = new OperaProductRun();
  424. $result = $model->getProdInfo($ticket_id,$run_date,$to_org_id,true);
  425. if($result){
  426. if($result[0]['is_onsale'] == 0){
  427. $result=[];
  428. }
  429. return $result;
  430. }else{
  431. $res = $model->getProdInfo($ticket_id,$run_date,$to_org_id,false);
  432. if(!empty($res)&&$res[0]['is_onsale'] == 0){
  433. $res = [];
  434. }
  435. return $res;
  436. }
  437. }
  438. /**
  439. * Function Description:获取酒店产品详情
  440. * Function Name: getHotelProInfo
  441. * @param int $channel_id 渠道id
  442. * @param int $hotel_id 酒店id
  443. * @param int $base_room_type 基础房型
  444. * @param int $room_type 房型类型
  445. * @param string $start_date 入住日期
  446. * @param string $end_date 离店日期
  447. *
  448. * @return array|\yii\db\ActiveRecord[]
  449. *
  450. * @author 张帅
  451. */
  452. public function getHotelProInfo($channel_id, $hotel_id, $base_room_type, $room_type, $start_date, $end_date)
  453. {
  454. #region 获取每日房间属性
  455. $result = RunHotelDistrib::find()
  456. ->select([
  457. 'rhd.run_date',//入住日期
  458. 'remaining_count' => new Expression("case rhd.run_status when 326 then rhd.remaining_count when 329 then -1 else 0 end"),//库存剩余数量
  459. 'rhd.oversell_flag',//允许超卖标志 1:允许超卖 0:不允许超卖
  460. 'rhd.consume_stock_type',//下单时消耗的库存类型顺序
  461. 'price' => new Expression("case when bss.sale_type = 177 then rhd.prod_price else rhd.cus_price end"),//价格
  462. 'bss.sale_type',//销售类型
  463. 'bss.commision_flag',
  464. 'bss.commision_type',
  465. 'bss.back_commision_type',
  466. 'bss.back_commision_method',
  467. 'bss.back_percent',
  468. 'bss.back_value',
  469. ])
  470. ->from(RunHotelDistrib::tableName() . ' as rhd')
  471. ->leftJoin(BaseSupplierSale::tableName() . ' as bss', 'rhd.distrib_id = bss.supplier_id')
  472. ->where([
  473. 'and',
  474. ['=', 'rhd.distrib_id', $channel_id],
  475. ['=', 'rhd.hotel_id', $hotel_id],
  476. ['=', 'rhd.room_type', $room_type],
  477. ['=', 'rhd.base_room_type', $base_room_type],
  478. ['between', 'rhd.run_date', $start_date, date('Y-m-d', strtotime("$end_date -1 day"))],
  479. ['=', 'bss.parent_type', 25],
  480. ['=', 'bss.cancel_flag', 0],
  481. ['=', 'rhd.authority_status', 1],//run_hotel_distrib 授权
  482. ])
  483. ->asArray()->all();
  484. #endregion
  485. #region 获取不同库存类型
  486. foreach ($result as $key => $vel) {
  487. $stock_type_arr = explode(',', $vel['consume_stock_type']);//下单时消耗的库存类型顺序
  488. $stock_type_arr = array_unique($stock_type_arr);
  489. $result[$key]['stock_type_arr'] = $stock_type_arr;//下单时消耗的库存类型顺序
  490. }
  491. #endregion
  492. #region 获取不同库存类型的库存及价格
  493. $and_where = ['or'];
  494. foreach ($result as $key => $vel) {
  495. $and_where[] = [
  496. 'and',
  497. ['=', 'rh.run_date', $vel['run_date']],
  498. ['in', 'rh.stock_type', $vel['stock_type_arr']],
  499. ];
  500. }
  501. $stock_list = RunHotel::find()
  502. ->select([
  503. 'rh.run_date',//入住日期
  504. 'rh.stock_type',//库存类型
  505. 'rh.remaining_count',//库存剩余数量
  506. '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"),//价格
  507. ])
  508. ->from(RunHotel::tableName() . ' as rh')
  509. ->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')
  510. ->where([
  511. 'and',
  512. ['=', 'rh.hotel_id', $hotel_id],
  513. ['=', 'rhs.room_type', $room_type],
  514. ['=', 'rh.base_room_type', $base_room_type],
  515. ['=', 'rhs.run_status', 1],
  516. ['=', 'rh.is_onsale', 1],//run_hotel上线
  517. ['=', 'rhs.is_onsale', 1],//run_hotel_sub_room 上线
  518. ])
  519. ->andWhere($and_where)
  520. ->asArray()->all();
  521. #endregion
  522. #region 处理数据
  523. $stock_list_arr = [];
  524. foreach ($stock_list as $key => $vel) {
  525. $stock_list_arr[$vel['run_date'] . '-' . $vel['stock_type']] = $vel;
  526. }
  527. foreach ($result as $key => $vel) {
  528. $result[$key]['room_stock'] = 0;
  529. if($vel['oversell_flag']==1){
  530. $byout_reserve=(int)$stock_list_arr[$vel['run_date'] . '-' . 228]['remaining_count']+(int)$stock_list_arr[$vel['run_date'] . '-' . 230]['remaining_count'];
  531. $inquiry=(int)$stock_list_arr[$vel['run_date'] . '-' . 229]['remaining_count'];
  532. $result[$key]['room_stock']=$byout_reserve>$inquiry ? $byout_reserve :$inquiry;
  533. }else{
  534. $result[$key]['room_stock']=$vel['remaining_count'];
  535. }
  536. foreach ($vel['stock_type_arr'] as $stock_key => $stock_vel) {
  537. if (isset($stock_list_arr[$vel['run_date'] . '-' . $stock_vel])) {
  538. $result[$key]['stock_type_arr'][$stock_key] = $stock_list_arr[$vel['run_date'] . '-' . $stock_vel];
  539. } else {
  540. unset($result[$key]['stock_type_arr'][$stock_key]);
  541. }
  542. }
  543. }
  544. foreach ($result as $key => $vel) {
  545. $result[$key]['stock_type_arr'] = array_merge($vel['stock_type_arr']);
  546. }
  547. #endregion
  548. return $result;
  549. }
  550. /**
  551. * Function Description:获取提交订单所需数据
  552. * Function Name: getSubmitGroupOrderData
  553. * @param string $product_name 产品名称
  554. * @param int $channel_id 渠道id
  555. * @param string $channel_order_no 渠道订单号
  556. * @param string $bus_product 巴士产品
  557. * @param string $hotel_product 酒店产品
  558. * @param string $ticket_product 门票产品
  559. * @param string $customer_info 乘客信息
  560. *
  561. * @return array
  562. *
  563. * @author 张帅
  564. */
  565. public function getSubmitGroupOrderData($product_name, $channel_id, $channel_order_no, $bus_product, $hotel_product, $ticket_product, $customer_info)
  566. {
  567. $result = [];
  568. $result['product_name'] = $product_name;//产品名称
  569. $result['bus_product'] = $this->checkBusProductData($bus_product);//巴士产品
  570. if ($result['bus_product'] === false) {
  571. $json['code'] = '1';
  572. $json['info'] = '巴士产品有误';
  573. return $json;
  574. }
  575. $result['hotel_product'] = $this->checkHotelProductData($hotel_product);//酒店产品
  576. if ($result['hotel_product'] === false) {
  577. $json['code'] = '1';
  578. $json['info'] = '酒店产品有误';
  579. return $json;
  580. }
  581. $result['ticket_product'] = $this->checkTicketProductData($ticket_product);//门票产品
  582. if ($result['ticket_product'] === false) {
  583. $json['code'] = '1';
  584. $json['info'] = '门票产品有误';
  585. return $json;
  586. }
  587. $result['customer_info'] = $this->checkCustomerInfoData($customer_info);//顾客信息
  588. if ($result['customer_info'] === false) {
  589. $json['code'] = '1';
  590. $json['info'] = '顾客信息有误';
  591. return $json;
  592. }
  593. $result['order_info'] = $this->getOrderInfoData($channel_id, $channel_order_no);//订单基础信息
  594. if ($result['order_info'] === false) {
  595. $json['code'] = '1';
  596. $json['info'] = '没有渠道商';
  597. return $json;
  598. }
  599. return $result;
  600. }
  601. /**
  602. * Function Description:检验巴士数据
  603. * Function Name: checkBusProductData
  604. * @param string $bus_product 巴士产品
  605. *
  606. * @return bool
  607. *
  608. * @author 张帅
  609. */
  610. public function checkBusProductData($bus_product)
  611. {
  612. $check_data = new CheckData();
  613. if ($bus_product != '') {
  614. #region 将json数据转为数组
  615. if (is_null(json_decode($bus_product, true))) {
  616. return false;
  617. }
  618. $bus_product_arr = json_decode($bus_product, true);
  619. #endregion
  620. foreach ($bus_product_arr as $key => $vel) {
  621. /**
  622. * 检验数据
  623. * 班次id 必有且不为空
  624. * 票种id 必有且不为空
  625. * 人数 必有且不为空,0 且必须为整数
  626. * 价格 不必有 有则比为数字
  627. * 车号 不必有 有则比为数字
  628. */
  629. if (!$check_data->checkArrayData($vel, [[['run_id', 'ticket_id'], 1], [['prod_num'], 4], [['prod_price', 'bus_no'], 3]])) {
  630. return false;
  631. }
  632. }
  633. }
  634. return $bus_product;
  635. }
  636. /**
  637. * Function Description:检验酒店数据
  638. * Function Name: checkHotelProductData
  639. * @param string $hotel_product 酒店产品
  640. *
  641. * @return bool
  642. *
  643. * @author 张帅
  644. */
  645. public function checkHotelProductData($hotel_product)
  646. {
  647. $check_data = new CheckData();
  648. if ($hotel_product != '') {
  649. #region 将json数据转为数组
  650. if (is_null(json_decode($hotel_product, true))) {
  651. return false;
  652. }
  653. $hotel_product_arr = json_decode($hotel_product, true);
  654. #endregion
  655. foreach ($hotel_product_arr as $key => $vel) {
  656. /**
  657. * 检验数据
  658. * 酒店id 必有且不为空
  659. * 基础房型id 必有且不为空
  660. * 房型好 必有且不为空
  661. * 房间数据 必有且数量大于0
  662. */
  663. if (!$check_data->checkArrayData($vel, [[['hotel_id', 'base_room_type', 'room_type'], 1], [['run_room'], 5]])) {
  664. return false;
  665. }
  666. foreach ($vel['run_room'] as $room_key => $room_vel) {
  667. /**
  668. * 检验数据
  669. * 入住日期 必有且是****-**-** 5
  670. * 人数 必有且不为空,0 且必须为整数
  671. * 价格 不必有 有则比为数字
  672. */
  673. if (!$check_data->checkArrayData($room_vel, [[['run_date'], 6], [['prod_num'], 4], [['prod_price', 'back_value'], 3]])) {
  674. return false;
  675. }
  676. }
  677. }
  678. }
  679. return $hotel_product;
  680. }
  681. /**
  682. * Function Description:检验门票数据
  683. * Function Name: checkTicketProductData
  684. * @param string $ticket_product 门票产品
  685. *
  686. * @return bool
  687. *
  688. * @author 张帅
  689. */
  690. public function checkTicketProductData($ticket_product)
  691. {
  692. $check_data = new CheckData();
  693. if ($ticket_product != '') {
  694. #region 将json数据转为数组
  695. if (is_null(json_decode($ticket_product, true))) {
  696. return false;
  697. }
  698. $ticket_product_arr = json_decode($ticket_product, true);
  699. #endregion
  700. foreach ($ticket_product_arr as $key => $vel) {
  701. /**
  702. * 检验数据
  703. * 门票id 必有且不为空
  704. * 游玩日期 必有且是****-**-** 5
  705. * 子票种 必有且数量大于0
  706. */
  707. if (!$check_data->checkArrayData($vel, [[['ticket_id'], 1], [['run_date'], 6], [['son_ticket'], 5]])) {
  708. return false;
  709. }
  710. foreach ($vel['son_ticket'] as $son_key => $son_vel) {
  711. /**
  712. * 检验数据
  713. * 子票种id 必有且不为空
  714. * 人数 必有且不为空,0 且必须为整数
  715. * 价格 不必有 有则比为数字
  716. */
  717. if (!$check_data->checkArrayData($son_vel, [[['son_ticket_id'], 1], [['prod_num'], 4], [['prod_price'], 3]])) {
  718. return false;
  719. }
  720. }
  721. }
  722. }
  723. return $ticket_product;
  724. }
  725. /**
  726. * Function Description:检验乘客数据
  727. * Function Name: checkCustomerInfoData
  728. * @param string $customer_info 乘客数据
  729. *
  730. * @return bool
  731. *
  732. * @author 张帅
  733. */
  734. public function checkCustomerInfoData($customer_info)
  735. {
  736. $check_data = new CheckData();
  737. #region 将json数据转为数组
  738. if (is_null(json_decode($customer_info, true)) || $customer_info == '') {
  739. return false;
  740. }
  741. $customer_info_arr = json_decode($customer_info, true);
  742. #endregion
  743. /**
  744. * 检验数据
  745. * 顾客名称 必有且不为空
  746. * 顾客电话 必有且不为空(可以为空)
  747. * 顾客证件类型 必有且不为空
  748. * 顾客证件号 必有且不为空
  749. */
  750. if (!$check_data->checkArrayData($customer_info_arr, [[['customer_name'/*, 'customer_mobile'*/, 'customer_id_type'], 1]])) {
  751. return false;
  752. }
  753. return $customer_info;
  754. }
  755. /**
  756. * Function Description:获取订单基础信息
  757. * Function Name: getOrderInfoData
  758. * @param int $channel_id 渠道id
  759. * @param string $channel_order_no 渠道订单号
  760. *
  761. * @return bool|string
  762. *
  763. * @author 张帅
  764. */
  765. public function getOrderInfoData($channel_id, $channel_order_no)
  766. {
  767. //获取cookies
  768. $cookies = Yii::$app->request->cookies;
  769. $result = [];
  770. if (empty($channel_id)) {
  771. return false;
  772. }
  773. $result['user_id'] = $cookies->getValue('user_id');
  774. $result['member_id'] = $cookies->getValue('user_id');
  775. $result['outside_sale_org_id'] = $channel_id;//外部下单id
  776. $result['outside_sale_order_no'] = $channel_order_no;//外部下单号
  777. $result['order_book_status'] = 0;//订单预订状态
  778. $result['pay_type'] = 275;//支付方式(授信,微信)
  779. $result['order_pay_status'] = 1;//是否支付
  780. $result['sales_man'] = '';//业务员
  781. return json_encode($result);
  782. }
  783. }