123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Sms as Smslib;
- use app\common\model\Ad;
- use app\common\model\Mobile;
- use app\common\model\MobileOrder;
- use app\common\model\User;
- use think\Hook;
- use app\service\GantanhaoService;
- use app\common\model\LogisticsCompany;
- /**
- * 首页
- * @inheritdoc
- */
- class Index extends Api
- {
- protected $noNeedLogin = '*';
- protected $noNeedRight = '*';
- /**
- * 敢探号订单异步通知
- */
- public function gantanhaoNotify(){
- $data = request()->param();
- user_log('gantanhaoNotify', $data);
- if(isset($data['msg']) && $data['msg'] == 'success'){
- die('SUCCESS');
- }
- elseif(GantanhaoService::checkSignNotify($data)){
- $order = MobileOrder::where('order_no', $data['outer_id'])->find();
- if($order){
- if(in_array($data['status'], ['-120', '-200', '-460'])){
- $order->status = 110;
- }
- //已发货
- elseif($data['status'] == '550'){
- $order->status = 23;
-
- //$id = LogisticsCompany::where('name', 'like', '%'.$data['tracking_company'].'%')->value('id');
- $id = LogisticsCompany::where('gth_name',$data['tracking_company'])->value('id');
- $order->trans_name = $data['tracking_company'];
- $order->trans_id = $id ?: null;
- $order->trans_no = $data['tracking_number'];
- $order->send_time= time();
- }
- //订单终止
- elseif($data['status'] == '0'){
- $order->status = 50;
- }
- $order->gantanhao_data_notify = json_encode($data);
- $order->save();
- die('SUCCESS');
- }
- }
- }
- }
|