data($result); } /** * @notes 全局配置 * @return Json * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/9/21 19:41 */ public function config() { $result = IndexLogic::getConfigData(); return $this->data($result); } /** * @notes 政策协议 * @return Json * @author 段誉 * @date 2022/9/20 20:00 */ public function policy() { $type = $this->request->get('type/s', ''); $result = IndexLogic::getPolicyByType($type); return $this->data($result); } /** * @notes 装修信息 * @return Json * @author 段誉 * @date 2022/9/21 18:37 */ public function decorate() { $id = $this->request->get('id/d'); $result = IndexLogic::getDecorate($id); return $this->data($result); } public function notifyUrl() { $params = Request()->get(['id']); if(empty($params['id'])){ return json(['success' => false, 'msg' => '缺少参数']); } //获取合同数据 $contract = Contract::where('id',$params['id'])->find(); if(empty($contract)){ return json(['success' => false, 'msg' => '参数错误']); } if($contract['status'] != 2){ return json(['success' => false, 'msg' => '合同状态错误']); } $vehicle = json_decode($contract['cars_info'],true); if ($contract['signing_timer'] == 0) { //更新本地合同状态 Contract::where('id',$contract['id'])->update(['signing_timer'=>1]); //更新远程 curl_post($this->domain.'/api/index/notifyVehicleContractUpdate',[],[ 'contract_logistic_id' => $contract['id'], 'signing_timer' => 1, ]); }else if($contract['signing_timer'] == 1) { //更新本地合同状态 Contract::where('id',$params['id'])->update(['signing_timer'=>2,'status'=>3]); //更新远程 Vehicle::where('id','in',array_column($vehicle,'id'))->update(['status'=>2]); $data = []; foreach($vehicle as $v){ $data[] = [ 'car_id' => $v['id'], 'contract_id' => $contract['id'], 'company_id' => $contract['company_b_id'], 'company_name' => $contract['company_b_name'], 'company_user' => $contract['company_b_user'], 'company_phone' => $contract['company_b_phone'], 'create_time' => time() ]; } $vehicleRent = new VehicleRent(); $vehicleRent -> saveAll($data); curl_post($this->domain.'/api/index/notifyVehicleContractUpdate',[],[ 'contract_logistic_id' => $contract['id'], 'signing_timer' => 2, 'status' => 3 ]); curl_post($this->domain.'/api/v1/notify_property',[],[ 'company_id' => $contract['company_b_id'], 'object_id' => implode(',',array_column($vehicle,'id')) ]); } return json(['success' => true, 'msg' => '成功']); } }