更新
This commit is contained in:
parent
28e635401b
commit
959b241975
@ -197,8 +197,9 @@ class CompanyController extends BaseAdminController
|
||||
];
|
||||
$res = app(JunziqianController::class)->EnterpriseCertification($data);
|
||||
if ($res->success == true) {
|
||||
Db::name('company')->where('id', $params['id'])->update(['master_email' => $res->data]);
|
||||
return $this->success('系统认证中,请稍后刷新页面查看', ['email' => $res->data], 1, 1);
|
||||
Db::name('company')->where('id', $params['id'])->update(['master_email' => $res->data,'is_authentication'=>1]);
|
||||
return $this->success('认证成功',[],1, 1);
|
||||
// return $this->success('系统认证中,请稍后刷新页面查看', ['email' => $res->data], 1, 1);
|
||||
} else {
|
||||
return $this->fail($res->msg);
|
||||
}
|
||||
|
@ -121,7 +121,8 @@ class IndexController extends BaseApiController
|
||||
}
|
||||
|
||||
//系统车辆租赁回来
|
||||
public function systemCarRent() {
|
||||
public function systemCarRent()
|
||||
{
|
||||
//获取参数
|
||||
$id = $this->request->get('id');
|
||||
if (empty($id)) {
|
||||
@ -176,7 +177,8 @@ class IndexController extends BaseApiController
|
||||
}
|
||||
|
||||
//自有车辆租赁回答
|
||||
public function selfCarRent() {
|
||||
public function selfCarRent()
|
||||
{
|
||||
//获取参数
|
||||
$id = $this->request->get('id');
|
||||
if (empty($id)) {
|
||||
@ -247,7 +249,8 @@ class IndexController extends BaseApiController
|
||||
}
|
||||
|
||||
//解除合同回调
|
||||
public function cancelRent() {
|
||||
public function cancelRent()
|
||||
{
|
||||
//获取参数
|
||||
$id = $this->request->get('id');
|
||||
if (empty($id)) {
|
||||
@ -294,7 +297,8 @@ class IndexController extends BaseApiController
|
||||
}
|
||||
|
||||
//车辆租赁签约合同状态更改
|
||||
public function notifyVehicleContractUpdate(){
|
||||
public function notifyVehicleContractUpdate()
|
||||
{
|
||||
if (!$this->request->isPost()) {
|
||||
return $this->fail('请求方式错误');
|
||||
}
|
||||
@ -366,12 +370,18 @@ class IndexController extends BaseApiController
|
||||
public function notifyAuthentication()
|
||||
{
|
||||
$parmas = Request()->param();
|
||||
Log::error('notifyAuthentication', $parmas);
|
||||
Log::error($parmas);
|
||||
try {
|
||||
Log::error('notifyAuthentication' . json_encode($parmas));
|
||||
|
||||
if ($parmas) {
|
||||
Company::where('id', $parmas['id'])->update(['is_authentication' => 1]);
|
||||
return json(['success' => true, 'msg' => '成功']);
|
||||
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
Log::error($e->getMessage());
|
||||
}
|
||||
|
||||
return json(['success' => false, 'msg' => '失败,没有参数']);
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,12 @@ class JunziqianController extends BaseApiController
|
||||
private $appkey = '3121e0d911b7943d';
|
||||
/**secret*/
|
||||
private $appSecret = '1e66d8b73121e0d911b7943d82bba174';
|
||||
|
||||
/**请求地址*/
|
||||
// private $serviceUrl = 'https://api.junziqian.com';
|
||||
// /**appkey*/
|
||||
// private $appkey = '62dc4ab579153712';
|
||||
// /**secret*/
|
||||
// private $appSecret = 'b7f65acc62dc4ab579153712fc9ebfc5';
|
||||
/**默认加密方式:不输入使用sha256,其它可选择项md5,sha1,sha3-256*/
|
||||
private $encryMethod;
|
||||
/**默认ts单位:1毫秒,2秒*/
|
||||
@ -74,7 +79,9 @@ class JunziqianController extends BaseApiController
|
||||
if (isset($data['master_email'])) {
|
||||
$request->emailOrMobile = $data['master_email']; //邮箱
|
||||
}
|
||||
$request->notifyUrl = env('url.url_prefix').'/notify_authentication?id=' . $data['id'];
|
||||
// $request->notifyUrl = env('url.url_prefix').'/notifyAuthentication?ids=22222';
|
||||
$request->notifyUrl = env('url.url_prefix').'/notifyAuthentication?id='.$data['id'];
|
||||
// halt($request);
|
||||
//发起创建企业请求
|
||||
$response = $requestUtils->doPost("/v2/user/organizationCreate", $request);
|
||||
return $response;
|
||||
|
@ -246,9 +246,9 @@ class CompanyLogic extends BaseLogic
|
||||
$data['responsible_area'] = explode(',', $data['responsible_area']);
|
||||
$where[]=['party_b','=', $data['id']];
|
||||
if(isset($params['contract_type'])){
|
||||
$wehre[]=['contract_type','=',$params['contract_type']];
|
||||
$where[]=['contract_type','=',$params['contract_type']];
|
||||
}
|
||||
$data['contract'] = Contract::where($wehre)->with(['party_a_info', 'contractType'])->find();
|
||||
$data['contract'] = Contract::where($where)->with(['party_a_info', 'contractType'])->find();
|
||||
|
||||
}
|
||||
return $data;
|
||||
|
@ -5,6 +5,8 @@ namespace junziqian\sdk\util;
|
||||
|
||||
use junziqian\sdk\util\exception\ResultInfoException;
|
||||
use junziqian\sdk\util\http\HttpClientUtils;
|
||||
use think\facade\Log;
|
||||
|
||||
/**
|
||||
* Class RequestUtils http请求
|
||||
* @package com\junziqian\sdk\bean
|
||||
@ -60,7 +62,9 @@ class RequestUtils{
|
||||
throw new ResultInfoException("不支持的请求req");
|
||||
}
|
||||
$req=$this->fillSign($req);
|
||||
// Log::error([$url,json_encode($req)]);
|
||||
//请求服务端sass
|
||||
// halt($url,$req);
|
||||
//print_r(CommonUtil::json_encode($req));
|
||||
$response= HttpClientUtils::getPost($url,$req);
|
||||
$res=json_decode($response);
|
||||
|
@ -35,5 +35,5 @@ Route::rule('crontab', function () {
|
||||
});
|
||||
|
||||
Route::post('/notify_url', IndexController::class . '@notifyUrl');
|
||||
Route::post('/notify_authentication',IndexController::class . '@notifyAuthentication');
|
||||
Route::post('/notifyAuthentication',IndexController::class . '@notifyAuthentication');
|
||||
Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file');
|
Loading…
x
Reference in New Issue
Block a user