This commit is contained in:
mkm 2023-09-02 20:01:59 +08:00
parent 28e635401b
commit 959b241975
6 changed files with 107 additions and 85 deletions

View File

@ -197,8 +197,9 @@ class CompanyController extends BaseAdminController
]; ];
$res = app(JunziqianController::class)->EnterpriseCertification($data); $res = app(JunziqianController::class)->EnterpriseCertification($data);
if ($res->success == true) { if ($res->success == true) {
Db::name('company')->where('id', $params['id'])->update(['master_email' => $res->data]); Db::name('company')->where('id', $params['id'])->update(['master_email' => $res->data,'is_authentication'=>1]);
return $this->success('系统认证中,请稍后刷新页面查看', ['email' => $res->data], 1, 1); return $this->success('认证成功',[],1, 1);
// return $this->success('系统认证中,请稍后刷新页面查看', ['email' => $res->data], 1, 1);
} else { } else {
return $this->fail($res->msg); return $this->fail($res->msg);
} }

View File

@ -30,7 +30,7 @@ use think\response\Json;
*/ */
class IndexController extends BaseApiController class IndexController extends BaseApiController
{ {
public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl','notifyProperty','notifyAuthentication','notifyVehicleContractUpdate','systemCarRent','selfCarRent','cancelRent']; public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl', 'notifyProperty', 'notifyAuthentication', 'notifyVehicleContractUpdate', 'systemCarRent', 'selfCarRent', 'cancelRent'];
private $domain = 'https://logistics.lihaink.cn'; private $domain = 'https://logistics.lihaink.cn';
@ -61,9 +61,9 @@ class IndexController extends BaseApiController
*/ */
public function config() public function config()
{ {
$parmas=$this->request->param(); $parmas = $this->request->param();
$group_id=$this->userInfo?$this->userInfo['group_id']:1; $group_id = $this->userInfo ? $this->userInfo['group_id'] : 1;
$result = IndexLogic::getConfigData($group_id,$parmas); $result = IndexLogic::getConfigData($group_id, $parmas);
return $this->data($result); return $this->data($result);
} }
@ -121,44 +121,45 @@ class IndexController extends BaseApiController
} }
//系统车辆租赁回来 //系统车辆租赁回来
public function systemCarRent() { public function systemCarRent()
{
//获取参数 //获取参数
$id = $this->request->get('id'); $id = $this->request->get('id');
if(empty($id)){ if (empty($id)) {
return json(['success' => false, 'msg' => '失败1.1']); return json(['success' => false, 'msg' => '失败1.1']);
} }
//获取合同数据 //获取合同数据
$contract = VehicleContract::where('id',$id)->find(); $contract = VehicleContract::where('id', $id)->find();
if(empty($contract)){ if (empty($contract)) {
return json(['success' => false, 'msg' => '失败1.2']); return json(['success' => false, 'msg' => '失败1.2']);
} }
if($contract['type'] != 0){ if ($contract['type'] != 0) {
return json(['success' => false, 'msg' => '失败1.3']); return json(['success' => false, 'msg' => '失败1.3']);
} }
if($contract['status'] != 2){ if ($contract['status'] != 2) {
return json(['success' => false, 'msg' => '失败1.4']); return json(['success' => false, 'msg' => '失败1.4']);
} }
//判断签约方 //判断签约方
if ($contract['signing_timer'] == 0) { if ($contract['signing_timer'] == 0) {
//更新合同的签约次数 //更新合同的签约次数
$res = VehicleContract::where('id',$id)->update(['signing_timer'=>1]); $res = VehicleContract::where('id', $id)->update(['signing_timer' => 1]);
if(!$res){ if (!$res) {
return json(['success' => false, 'msg' => '失败1.5']); return json(['success' => false, 'msg' => '失败1.5']);
} }
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else if($contract['signing_timer'] == 1) { } else if ($contract['signing_timer'] == 1) {
//更改合同状态 //更改合同状态
VehicleContract::where('id',$id)->update(['signing_timer'=>2,'status'=>3]); VehicleContract::where('id', $id)->update(['signing_timer' => 2, 'status' => 3]);
//添加车辆到租赁列表 //添加车辆到租赁列表
$vehicle = json_decode($contract['cars_info'],true); $vehicle = json_decode($contract['cars_info'], true);
VehicleRent::where('car_id',$vehicle['id'])->update([ VehicleRent::where('car_id', $vehicle['id'])->update([
'status' => 2, 'status' => 2,
'rent_time' => time(), 'rent_time' => time(),
'rent_company_id' => $contract['company_b_id'], 'rent_company_id' => $contract['company_b_id'],
]); ]);
$party_b = Company::where('id',$contract['company_b_id'])->find(); $party_b = Company::where('id', $contract['company_b_id'])->find();
//通知物流系统跟新 //通知物流系统跟新
curl_post($this->domain.'/api/updateVehicleRent',[],[ curl_post($this->domain . '/api/updateVehicleRent', [], [
'car_id' => $vehicle['id'], 'car_id' => $vehicle['id'],
'use_user_id' => $party_b['user_id'], 'use_user_id' => $party_b['user_id'],
'use_user_name' => $party_b['master_name'], 'use_user_name' => $party_b['master_name'],
@ -170,51 +171,52 @@ class IndexController extends BaseApiController
'type' => 1 'type' => 1
]); ]);
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else{ } else {
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
} }
} }
//自有车辆租赁回答 //自有车辆租赁回答
public function selfCarRent() { public function selfCarRent()
{
//获取参数 //获取参数
$id = $this->request->get('id'); $id = $this->request->get('id');
if(empty($id)){ if (empty($id)) {
return json(['success' => false, 'msg' => '失败2.1']); return json(['success' => false, 'msg' => '失败2.1']);
} }
//获取合同数据 //获取合同数据
$contract = VehicleContract::where('id',$id)->find(); $contract = VehicleContract::where('id', $id)->find();
if(empty($contract)){ if (empty($contract)) {
return json(['success' => false, 'msg' => '失败2.2']); return json(['success' => false, 'msg' => '失败2.2']);
} }
if($contract['type'] != 1){ if ($contract['type'] != 1) {
return json(['success' => false, 'msg' => '失败2.3']); return json(['success' => false, 'msg' => '失败2.3']);
} }
if($contract['status'] != 2){ if ($contract['status'] != 2) {
return json(['success' => false, 'msg' => '失败2.4']); return json(['success' => false, 'msg' => '失败2.4']);
} }
//判断签约方 //判断签约方
if ($contract['signing_timer'] == 0) { if ($contract['signing_timer'] == 0) {
$res = VehicleContract::where('id',$id)->update(['signing_timer'=>1]); $res = VehicleContract::where('id', $id)->update(['signing_timer' => 1]);
if(!$res){ if (!$res) {
return json(['success' => false, 'msg' => '失败2.5']); return json(['success' => false, 'msg' => '失败2.5']);
} }
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else if($contract['signing_timer'] == 1) { } else if ($contract['signing_timer'] == 1) {
//添加车辆到物流系统 //添加车辆到物流系统
$vehicle = json_decode($contract['cars_info'],true); $vehicle = json_decode($contract['cars_info'], true);
$curl_res = curl_post($this->domain.'/api/addSelfCar',[],[ $curl_res = curl_post($this->domain . '/api/addSelfCar', [], [
'license'=>$vehicle['license'], 'license' => $vehicle['license'],
'company_id' => $contract['company_a_id'], 'company_id' => $contract['company_a_id'],
'company_name' => $contract['company_a_name'], 'company_name' => $contract['company_a_name'],
'company_user' => $contract['company_a_user'], 'company_user' => $contract['company_a_user'],
'company_phone' => $contract['company_a_phone'], 'company_phone' => $contract['company_a_phone'],
]); ]);
if(!$curl_res || $curl_res['code'] == 0){ if (!$curl_res || $curl_res['code'] == 0) {
return json(['success' => false, 'msg' => '失败2.6']); return json(['success' => false, 'msg' => '失败2.6']);
} }
$cars_info = json_encode(['id'=>$curl_res['data']['car_id'],'license'=>$vehicle['license']]); $cars_info = json_encode(['id' => $curl_res['data']['car_id'], 'license' => $vehicle['license']]);
VehicleContract::where('id',$id)->update(['cars_info'=>$cars_info,'update_time'=>time(),'signing_timer'=>2,'status'=>3]); VehicleContract::where('id', $id)->update(['cars_info' => $cars_info, 'update_time' => time(), 'signing_timer' => 2, 'status' => 3]);
VehicleRent::create([ VehicleRent::create([
'car_id' => $curl_res['data']['car_id'], 'car_id' => $curl_res['data']['car_id'],
'contract_id' => $contract['id'], 'contract_id' => $contract['id'],
@ -227,9 +229,9 @@ class IndexController extends BaseApiController
'type' => 1 'type' => 1
]); ]);
$car_id = $curl_res['data']['car_id']; $car_id = $curl_res['data']['car_id'];
$party_b = Company::where('id',$contract['company_b_id'])->find(); $party_b = Company::where('id', $contract['company_b_id'])->find();
//通知物流系统跟新 //通知物流系统跟新
curl_post($this->domain.'/api/updateVehicleRent',[],[ curl_post($this->domain . '/api/updateVehicleRent', [], [
'car_id' => $car_id, 'car_id' => $car_id,
'use_user_id' => $party_b['user_id'], 'use_user_id' => $party_b['user_id'],
'use_user_name' => $party_b['master_name'], 'use_user_name' => $party_b['master_name'],
@ -241,76 +243,78 @@ class IndexController extends BaseApiController
'type' => 1 'type' => 1
]); ]);
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else{ } else {
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
} }
} }
//解除合同回调 //解除合同回调
public function cancelRent() { public function cancelRent()
{
//获取参数 //获取参数
$id = $this->request->get('id'); $id = $this->request->get('id');
if(empty($id)){ if (empty($id)) {
return json(['success' => false, 'msg' => '失败3.1']); return json(['success' => false, 'msg' => '失败3.1']);
} }
//获取合同数据 //获取合同数据
$contract = VehicleContract::where('id',$id)->find(); $contract = VehicleContract::where('id', $id)->find();
if(empty($contract)){ if (empty($contract)) {
return json(['success' => false, 'msg' => '失败3.2']); return json(['success' => false, 'msg' => '失败3.2']);
} }
if($contract['type'] != 2){ if ($contract['type'] != 2) {
return json(['success' => false, 'msg' => '失败3.3']); return json(['success' => false, 'msg' => '失败3.3']);
} }
if($contract['status'] != 2){ if ($contract['status'] != 2) {
return json(['success' => false, 'msg' => '失败3.4']); return json(['success' => false, 'msg' => '失败3.4']);
} }
if($contract['signing_timer'] == 0){ if ($contract['signing_timer'] == 0) {
$res = VehicleContract::where('id',$id)->update(['signing_timer'=>1]); $res = VehicleContract::where('id', $id)->update(['signing_timer' => 1]);
if(!$res){ if (!$res) {
return json(['success' => false, 'msg' => '失败3.5']); return json(['success' => false, 'msg' => '失败3.5']);
} }
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else if($contract['signing_timer'] == 1) { } else if ($contract['signing_timer'] == 1) {
//更改合同状态 //更改合同状态
VehicleContract::where('id',$id)->update(['signing_timer'=>2,'status'=>3]); VehicleContract::where('id', $id)->update(['signing_timer' => 2, 'status' => 3]);
//更改租赁列表车辆状态 //更改租赁列表车辆状态
$vehicle = json_decode($contract['cars_info'],true); $vehicle = json_decode($contract['cars_info'], true);
//获取租赁车辆信息 //获取租赁车辆信息
$vehicleRentInfo = VehicleRent::where('car_id',$vehicle['id'])->find(); $vehicleRentInfo = VehicleRent::where('car_id', $vehicle['id'])->find();
//更新原始合同类型 //更新原始合同类型
VehicleContract::where('id',$vehicleRentInfo['contract_id'])->update(['type'=>2]); VehicleContract::where('id', $vehicleRentInfo['contract_id'])->update(['type' => 2]);
VehicleRent::where('car_id',$vehicle['id'])->update([ VehicleRent::where('car_id', $vehicle['id'])->update([
'status' => 3, 'status' => 3,
]); ]);
//通知物流系统跟新 //通知物流系统跟新
curl_post($this->domain.'/api/cancelRent',[],[ curl_post($this->domain . '/api/cancelRent', [], [
'car_id' => $vehicle['id'], 'car_id' => $vehicle['id'],
'status' => 1 'status' => 1
]); ]);
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
}else{ } else {
return json(['success' => true, 'msg' => '成功']); return json(['success' => true, 'msg' => '成功']);
} }
} }
//车辆租赁签约合同状态更改 //车辆租赁签约合同状态更改
public function notifyVehicleContractUpdate(){ public function notifyVehicleContractUpdate()
if(!$this->request->isPost()){ {
if (!$this->request->isPost()) {
return $this->fail('请求方式错误'); return $this->fail('请求方式错误');
} }
$param = $this->request->post(); $param = $this->request->post();
if(empty($param['contract_logistic_id'])){ if (empty($param['contract_logistic_id'])) {
return $this->fail('缺少必要参数'); return $this->fail('缺少必要参数');
} }
$model = VehicleContract::where('contract_logistic_id',$param['contract_logistic_id'])->find(); $model = VehicleContract::where('contract_logistic_id', $param['contract_logistic_id'])->find();
if(empty($model)){ if (empty($model)) {
return $this->fail('数据不存在'); return $this->fail('数据不存在');
} }
$cars = json_decode($model['cars_info'],true); $cars = json_decode($model['cars_info'], true);
$result = $model->where('id',$model['id'])->save($param); $result = $model->where('id', $model['id'])->save($param);
if($result && isset($param['status']) && $param['status'] == 3){ if ($result && isset($param['status']) && $param['status'] == 3) {
$data= []; $data = [];
foreach($cars as $k=>$v) { foreach ($cars as $k => $v) {
$data[$k]['car_id'] = $v['id']; $data[$k]['car_id'] = $v['id'];
$data[$k]['car_license'] = $v['license']; $data[$k]['car_license'] = $v['license'];
$data[$k]['type'] = 0; $data[$k]['type'] = 0;
@ -319,7 +323,7 @@ class IndexController extends BaseApiController
$data[$k]['create_time'] = strtotime($model['create_time']); $data[$k]['create_time'] = strtotime($model['create_time']);
} }
$vehicleRent = new VehicleRent(); $vehicleRent = new VehicleRent();
$vehicleRent -> saveAll($data); $vehicleRent->saveAll($data);
} }
//返回 //返回
return $result ? $this->success('更新成功') : $this->fail('更新失败'); return $result ? $this->success('更新成功') : $this->fail('更新失败');
@ -338,16 +342,16 @@ class IndexController extends BaseApiController
if (!isset($parmas['object_id'])) { if (!isset($parmas['object_id'])) {
return json(['success' => false, 'msg' => '对象id不能为空']); return json(['success' => false, 'msg' => '对象id不能为空']);
} }
$data=[]; $data = [];
$object_id = explode(',',$parmas['object_id']); $object_id = explode(',', $parmas['object_id']);
foreach($object_id as $k=>$v){ foreach ($object_id as $k => $v) {
if($v>0){ if ($v > 0) {
$data[$k]['company_id']=$parmas['company_id']; $data[$k]['company_id'] = $parmas['company_id'];
$data[$k]['object_id']=$v; $data[$k]['object_id'] = $v;
$data[$k]['type']=1; $data[$k]['type'] = 1;
} }
} }
if (count($data)<=0){ if (count($data) <= 0) {
return json(['success' => false, 'msg' => '失败']); return json(['success' => false, 'msg' => '失败']);
} }
$res = CompanyProperty::insertAll($data); $res = CompanyProperty::insertAll($data);
@ -360,18 +364,24 @@ class IndexController extends BaseApiController
return json(['success' => false, 'msg' => '失败,没有参数']); return json(['success' => false, 'msg' => '失败,没有参数']);
} }
/** /**
* 认证回调 * 认证回调
*/ */
public function notifyAuthentication() public function notifyAuthentication()
{ {
$parmas = Request()->param(); $parmas = Request()->param();
Log::error('notifyAuthentication', $parmas); Log::error($parmas);
if ($parmas) { try {
Company::where('id',$parmas['id'])->update(['is_authentication'=>1]); Log::error('notifyAuthentication' . json_encode($parmas));
return json(['success' => true, 'msg' => '成功']);
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' => '失败,没有参数']); return json(['success' => false, 'msg' => '失败,没有参数']);
} }
} }

View File

@ -21,7 +21,12 @@ class JunziqianController extends BaseApiController
private $appkey = '3121e0d911b7943d'; private $appkey = '3121e0d911b7943d';
/**secret*/ /**secret*/
private $appSecret = '1e66d8b73121e0d911b7943d82bba174'; private $appSecret = '1e66d8b73121e0d911b7943d82bba174';
/**请求地址*/
// private $serviceUrl = 'https://api.junziqian.com';
// /**appkey*/
// private $appkey = '62dc4ab579153712';
// /**secret*/
// private $appSecret = 'b7f65acc62dc4ab579153712fc9ebfc5';
/**默认加密方式:不输入使用sha256,其它可选择项md5,sha1,sha3-256*/ /**默认加密方式:不输入使用sha256,其它可选择项md5,sha1,sha3-256*/
private $encryMethod; private $encryMethod;
/**默认ts单位:1毫秒,2秒*/ /**默认ts单位:1毫秒,2秒*/
@ -74,7 +79,9 @@ class JunziqianController extends BaseApiController
if (isset($data['master_email'])) { if (isset($data['master_email'])) {
$request->emailOrMobile = $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); $response = $requestUtils->doPost("/v2/user/organizationCreate", $request);
return $response; return $response;

View File

@ -246,9 +246,9 @@ class CompanyLogic extends BaseLogic
$data['responsible_area'] = explode(',', $data['responsible_area']); $data['responsible_area'] = explode(',', $data['responsible_area']);
$where[]=['party_b','=', $data['id']]; $where[]=['party_b','=', $data['id']];
if(isset($params['contract_type'])){ 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; return $data;

View File

@ -5,6 +5,8 @@ namespace junziqian\sdk\util;
use junziqian\sdk\util\exception\ResultInfoException; use junziqian\sdk\util\exception\ResultInfoException;
use junziqian\sdk\util\http\HttpClientUtils; use junziqian\sdk\util\http\HttpClientUtils;
use think\facade\Log;
/** /**
* Class RequestUtils http请求 * Class RequestUtils http请求
* @package com\junziqian\sdk\bean * @package com\junziqian\sdk\bean
@ -60,7 +62,9 @@ class RequestUtils{
throw new ResultInfoException("不支持的请求req"); throw new ResultInfoException("不支持的请求req");
} }
$req=$this->fillSign($req); $req=$this->fillSign($req);
// Log::error([$url,json_encode($req)]);
//请求服务端sass //请求服务端sass
// halt($url,$req);
//print_r(CommonUtil::json_encode($req)); //print_r(CommonUtil::json_encode($req));
$response= HttpClientUtils::getPost($url,$req); $response= HttpClientUtils::getPost($url,$req);
$res=json_decode($response); $res=json_decode($response);

View File

@ -35,5 +35,5 @@ Route::rule('crontab', function () {
}); });
Route::post('/notify_url', IndexController::class . '@notifyUrl'); 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'); Route::get('/api/junziqian/download_file',JunziqianController::class . '@download_file');