372 lines
13 KiB
PHP
372 lines
13 KiB
PHP
|
<?php
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
|||
|
// | 开源版本可自由商用,可去除界面版权logo
|
|||
|
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
|||
|
// | github下载:https://github.com/likeshop-github/likeadmin
|
|||
|
// | 访问官网:https://www.likeadmin.cn
|
|||
|
// | likeadmin团队 版权所有 拥有最终解释权
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
// | author: likeadminTeam
|
|||
|
// +----------------------------------------------------------------------
|
|||
|
|
|||
|
namespace app\common\logic\contract;
|
|||
|
|
|||
|
use app\common\controller\JunziqianController;
|
|||
|
use app\common\model\contract\Contract;
|
|||
|
use app\common\logic\BaseLogic;
|
|||
|
use app\common\model\company\Company;
|
|||
|
use app\common\model\user\WorkerUser;
|
|||
|
use think\facade\Db;
|
|||
|
use app\api\logic\SmsLogic;
|
|||
|
use app\common\logic\company\CompanyLogic;
|
|||
|
use app\common\logic\user\WorkerUserLogic;
|
|||
|
use think\facade\Log;
|
|||
|
|
|||
|
/**
|
|||
|
* Contract逻辑
|
|||
|
* Class ContractLogic
|
|||
|
* @package app\adminapi\logic\contract
|
|||
|
*/
|
|||
|
class ContractLogic extends BaseLogic
|
|||
|
{
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 添加
|
|||
|
* @param array $params
|
|||
|
* @return bool
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/07/18 14:28
|
|||
|
*/
|
|||
|
public static function add(array $params): bool
|
|||
|
{
|
|||
|
Db::startTrans();
|
|||
|
try {
|
|||
|
Contract::create([
|
|||
|
'company_id' => $params['company_id'],
|
|||
|
'contract_type' => $params['contract_type'],
|
|||
|
'contract_no' => $params['contract_no'],
|
|||
|
'file' => $params['file'],
|
|||
|
'status' => $params['status'],
|
|||
|
'party_a' => $params['party_a'],
|
|||
|
'party_b' => $params['party_b'],
|
|||
|
'area_manager' => $params['area_manager']
|
|||
|
]);
|
|||
|
|
|||
|
Db::commit();
|
|||
|
return true;
|
|||
|
} catch (\Exception $e) {
|
|||
|
Db::rollback();
|
|||
|
self::setError($e->getMessage());
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 编辑
|
|||
|
* @param array $params
|
|||
|
* @return bool
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/07/18 14:28
|
|||
|
*/
|
|||
|
public static function edit(array $params): bool
|
|||
|
{
|
|||
|
Db::startTrans();
|
|||
|
try {
|
|||
|
Contract::where('id', $params['id'])->update([
|
|||
|
'company_id' => $params['company_id'],
|
|||
|
'contract_type' => $params['contract_type'],
|
|||
|
'contract_no' => $params['contract_no'],
|
|||
|
'file' => $params['file'],
|
|||
|
'status' => $params['status'],
|
|||
|
'party_a' => $params['party_a'],
|
|||
|
'party_b' => $params['party_b'],
|
|||
|
'area_manager' => $params['area_manager']
|
|||
|
]);
|
|||
|
|
|||
|
Db::commit();
|
|||
|
return true;
|
|||
|
} catch (\Exception $e) {
|
|||
|
Db::rollback();
|
|||
|
self::setError($e->getMessage());
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 删除
|
|||
|
* @param array $params
|
|||
|
* @return bool
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/07/18 14:28
|
|||
|
*/
|
|||
|
public static function delete(array $params): bool
|
|||
|
{
|
|||
|
return Contract::destroy($params['id']);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
/**
|
|||
|
* @notes 获取详情
|
|||
|
* @param $params
|
|||
|
* @return array
|
|||
|
* @author likeadmin
|
|||
|
* @date 2023/07/18 14:28
|
|||
|
*/
|
|||
|
public static function detail($params)
|
|||
|
{
|
|||
|
$data = Db::connect('mysql2')->name('la_contract')->where('id', $params['id'])
|
|||
|
->withAttr('party_b_info', function ($value, $data) {
|
|||
|
if ($data['type'] == 1) {
|
|||
|
$field = ['id,company_name,company_type,company_type company_type_name,organization_code,
|
|||
|
province,city,area,street,village,brigade,address,province province_name,city city_name,area area_name,street street_name,village village_name,brigade brigade_name,master_phone,master_name,
|
|||
|
qualification'];
|
|||
|
$company = Company::where(['id' => $data['party_b']])->field($field)->find();
|
|||
|
if(empty($company)){
|
|||
|
return [];
|
|||
|
}else{
|
|||
|
$company=$company->toArray();
|
|||
|
}
|
|||
|
$company['qualification'] = json_decode($company['qualification'], true);
|
|||
|
if($company['qualification'] && isset($company['qualification']['other_qualifications'])){
|
|||
|
$company['qualification']['other_qualifications']=json_decode($company['qualification']['other_qualifications'],true);
|
|||
|
}
|
|||
|
return $company;
|
|||
|
} else {
|
|||
|
$filed = ['id,id_card,avatar,nickname,sex,mobile,
|
|||
|
province,city,area,street,village,brigade,address,province province_name,city city_name,area area_name,street street_name,village village_name,brigade brigade_name,nickname master_name,
|
|||
|
qualification'];
|
|||
|
$user = WorkerUser::where('id', $data['party_b'])->field($filed)->find();
|
|||
|
if(empty($user)){
|
|||
|
return [];
|
|||
|
}else{
|
|||
|
$user=$user->toArray();
|
|||
|
}
|
|||
|
$user['qualification'] = json_decode($user['qualification'], true);
|
|||
|
if($user['qualification'] && isset($user['qualification']['other_qualifications'])){
|
|||
|
$user['qualification']['other_qualifications']=json_decode($user['qualification']['other_qualifications'],true);
|
|||
|
}
|
|||
|
return $user;
|
|||
|
}
|
|||
|
})
|
|||
|
->withAttr('party_a_info', function ($value, $data) {
|
|||
|
$field = ['id,company_name,company_type,company_type company_type_name,organization_code,
|
|||
|
province,city,area,street,village,brigade,address,province province_name,city city_name,area area_name,street street_name,village village_name,brigade brigade_name,master_phone,master_name,
|
|||
|
qualification'];
|
|||
|
$company = Company::where(['id' => $data['party_a']])->field($field)->find()->toArray();
|
|||
|
$company['qualification'] = json_decode($company['qualification'], true);
|
|||
|
if($company['qualification'] && isset($company['qualification']['other_qualifications'])){
|
|||
|
$company['qualification']['other_qualifications']=json_decode($company['qualification']['other_qualifications'],true);
|
|||
|
}
|
|||
|
return $company;
|
|||
|
})
|
|||
|
->withAttr('area_manager_name', function ($value, $data) {
|
|||
|
return Db::connect('mysql2')->name('la_admin')->where('id', $data['area_manager'])->value('name');
|
|||
|
})
|
|||
|
->withAttr('contract_type_name', function ($value, $data) {
|
|||
|
return Db::connect('mysql2')->name('la_dict_data')->where('id', $data['contract_type'])->value('name');
|
|||
|
})
|
|||
|
->withAttr('type_name', function ($value, $data) {
|
|||
|
return $data['type'] == 1 ? '公司' : '个人';
|
|||
|
})
|
|||
|
->withAttr('status_name', function ($value, $data) {
|
|||
|
return $data['status'] == 1 ? '已签约' : '未签约';
|
|||
|
})
|
|||
|
->find();
|
|||
|
$data['signed_contract_url'] = self::getSignedContract($data);
|
|||
|
return $data;
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* 获取已签约盖章的合同
|
|||
|
*/
|
|||
|
public static function getSignedContract($contract)
|
|||
|
{
|
|||
|
$signedContractUrl = '';
|
|||
|
if($contract['status'] == 1){
|
|||
|
if ($contract['contract_url'] == '') {
|
|||
|
$res = app(JunziqianController::class)->download_file($contract['contract_no'])->getData();
|
|||
|
if ($res['code'] == 1) {
|
|||
|
$signedContractUrl = $res['data']['url'];
|
|||
|
}
|
|||
|
}else {
|
|||
|
$signedContractUrl = env('url.url_prefix').$contract['contract_url'];
|
|||
|
}
|
|||
|
}
|
|||
|
return $signedContractUrl;
|
|||
|
}
|
|||
|
|
|||
|
//生成合同
|
|||
|
public static function Initiate_contract($data)
|
|||
|
{
|
|||
|
// 平台公司可以直接签合同,其他类型的公司需要做过合同乙方才能签合同
|
|||
|
$partyACompamyInfo = Company::where(['id'=>$data['party_a']])->find();
|
|||
|
if ($partyACompamyInfo['company_type'] != 30) {
|
|||
|
$partyAModel = Contract::where(['party_b' => $data['party_a']])->find();
|
|||
|
if (empty($partyAModel)) {
|
|||
|
return self::setError('当前甲方暂无和平台或上级公司签约,请先进行签约');
|
|||
|
}
|
|||
|
}
|
|||
|
$model = Contract::where(['party_b' => $data['party_b'],'contract_type'=>$data['contract_type']])->find();
|
|||
|
if (empty($model)) {
|
|||
|
$model = new Contract();
|
|||
|
$model->contract_no = time();
|
|||
|
$model->create_time = time();
|
|||
|
}
|
|||
|
if($data['party_a']<=0){
|
|||
|
return self::setError('甲方不能为空');
|
|||
|
}
|
|||
|
if($data['party_b']<=0){
|
|||
|
return self::setError('乙方不能为空');
|
|||
|
}
|
|||
|
if($data['type']==1){
|
|||
|
if($data['party_a'] == $data['party_b']){
|
|||
|
return self::setError('甲方和乙方不能是同一个公司');
|
|||
|
}
|
|||
|
}
|
|||
|
try {
|
|||
|
$model->check_status = 1;
|
|||
|
$model->update_time = time();
|
|||
|
$model->setAttrs($data);
|
|||
|
$res = $model->save($data);
|
|||
|
if($res){
|
|||
|
return ['code'=>1,'msg'=>'发起成功,等待平台风控部上传合同','data'=>['id'=>$model->id]];
|
|||
|
}else{
|
|||
|
return ['code'=>0,'msg'=>'发起失败,请稍后重试',];
|
|||
|
}
|
|||
|
}catch(\Exception $e){
|
|||
|
return ['code'=>0,'msg'=>$e->getMessage()];
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/**发送合同
|
|||
|
* @type 1公司 2个人
|
|||
|
*/
|
|||
|
public static function Draftingcontracts($params,$type=1)
|
|||
|
{
|
|||
|
if($type==1){
|
|||
|
$result = CompanyLogic::detail($params);
|
|||
|
}else{
|
|||
|
$result = WorkerUserLogic::detail($params['id']);
|
|||
|
}
|
|||
|
$result['contract']= Contract::where('id',$params['contract_id'])->with(['party_a_info', 'contractType'])->find();
|
|||
|
if ($result && isset($result['contract']) && isset($result['contract']['file']) && $result['contract']['file'] != '') {
|
|||
|
if ($result['contract']['check_status'] == 3) {
|
|||
|
return self::setError('你已经生成过合同,请勿重复生成');
|
|||
|
}
|
|||
|
if($type==1){
|
|||
|
$name=$result['company_name'];
|
|||
|
$data = [
|
|||
|
'name' => $name . '的合同',
|
|||
|
'signatories' => [
|
|||
|
['fullName' => $name, 'identityType' => 12, 'identityCard' => $result['organization_code'], 'email' => $result['master_email'], 'noNeedVerify' => 1, 'signLevel' => 1], // 'authLevel'=>[11], 签约时验证人脸识别
|
|||
|
['fullName' => $result['contract']['party_a_info']['company_name'], 'identityType' => 12, 'identityCard' => $result['contract']['party_a_info']['organization_code'], 'email' => $result['contract']['party_a_info']['master_email'], 'noNeedVerify' => 1, 'signLevel' => 1]
|
|||
|
],
|
|||
|
'url' => $result['contract']['file'],
|
|||
|
];
|
|||
|
}else{
|
|||
|
$name=$result['nickname'];
|
|||
|
$data = [
|
|||
|
'name' => $name . '的合同',
|
|||
|
'signatories' => [
|
|||
|
['fullName' => $name, 'identityType' => 1, 'identityCard' => $result['id_card'], 'mobile' => $result['mobile'], 'noNeedVerify' => 1, 'signLevel' => 1],
|
|||
|
['fullName' => $result['contract']['party_a_info']['company_name'], 'identityType' => 12, 'identityCard' => $result['contract']['party_a_info']['organization_code'], 'email' => $result['contract']['party_a_info']['master_email'], 'noNeedVerify' => 1, 'signLevel' => 1]
|
|||
|
],
|
|||
|
'url' => $result['contract']['file']
|
|||
|
];
|
|||
|
}
|
|||
|
$res = app(JunziqianController::class)->Signing($data, $result['contract']['id']);
|
|||
|
if ($res->success == true) {
|
|||
|
Db::connect('mysql2')->name('la_contract')->where('id', $result['contract']['id'])->update(['contract_no' => $res->data, 'check_status' => 3]);
|
|||
|
self::postsms(['id'=>$result['contract']['id']]);
|
|||
|
return true;
|
|||
|
} else {
|
|||
|
return self::setError($res->msg);
|
|||
|
}
|
|||
|
} else {
|
|||
|
return self::setError('生成合同成功失败,联系管理员');
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
//**发送短信 */
|
|||
|
public static function postsms($params)
|
|||
|
{
|
|||
|
$result = self::detail($params);
|
|||
|
Log::info(['发送合同短信', $result]);
|
|||
|
if ($result && $result['file'] != '') {
|
|||
|
//发送短信
|
|||
|
$data = [
|
|||
|
[
|
|||
|
"applyNo" => $result['contract_no'], //TODO *
|
|||
|
"fullName" => $result['party_a_info']['company_name'], //TODO *
|
|||
|
"identityCard" => $result['party_a_info']['organization_code'], //TODO *
|
|||
|
"identityType" => 12, //TODO *
|
|||
|
"master_phone" => $result['party_a_info']['master_phone'],
|
|||
|
"type"=>"party_a"
|
|||
|
],
|
|||
|
];
|
|||
|
if($result['type']==1){
|
|||
|
$data[]= [
|
|||
|
"applyNo" => $result['contract_no'], //TODO *
|
|||
|
"fullName" => $result['party_b_info']['company_name'], //TODO *
|
|||
|
"identityCard" => $result['party_b_info']['organization_code'], //TODO *
|
|||
|
"identityType" => 12, //TODO *
|
|||
|
"master_phone" => $result['party_b_info']['master_phone'],
|
|||
|
"type"=>"party_b"
|
|||
|
|
|||
|
];
|
|||
|
}else{
|
|||
|
$data[]= [
|
|||
|
"applyNo" => $result['contract_no'], //TODO *
|
|||
|
"fullName" => $result['party_b_info']['nickname'], //TODO *
|
|||
|
"identityCard" => $result['party_b_info']['id_card'], //TODO *
|
|||
|
"identityType" => 1, //TODO *
|
|||
|
"master_phone" => $result['party_b_info']['mobile'],
|
|||
|
"type"=>"party_b"
|
|||
|
|
|||
|
];
|
|||
|
}
|
|||
|
$find = Db::connect('mysql2')->name('la_contract')->where('id', $params['id'])
|
|||
|
->withAttr('contract_type_name', function ($value, $data) {
|
|||
|
return Db::connect('mysql2')->name('la_dict_data')->where('id', $data['contract_type'])->value('name');
|
|||
|
})->find();
|
|||
|
|
|||
|
$url = [];
|
|||
|
foreach ($data as $k => $v) {
|
|||
|
$res = app(JunziqianController::class)->SigningLink($v);
|
|||
|
if ($res->success == true) {
|
|||
|
if ($v['type'] == 'party_a') {
|
|||
|
$url['party_a'] =$res->data;
|
|||
|
} else {
|
|||
|
$url['party_b'] =$res->data;
|
|||
|
}
|
|||
|
//发送短信
|
|||
|
$sms = [
|
|||
|
'mobile' => $v['master_phone'],
|
|||
|
'name' => $v['fullName'],
|
|||
|
'type' => '《' . $find['contract_type_name'] . '》',
|
|||
|
'code' => 'api/Hetong/url?id=' . $find['id'].'&type='.$v['type'],
|
|||
|
'scene' => 'WQ'
|
|||
|
];
|
|||
|
Log::info(['发送合同短信-消息体', $sms]);
|
|||
|
$result = SmsLogic::contractUrl($sms);
|
|||
|
if ($result != true) {
|
|||
|
return self::setError(SmsLogic::getError());
|
|||
|
}
|
|||
|
} else {
|
|||
|
return self::setError($res->msg);
|
|||
|
}
|
|||
|
}
|
|||
|
Db::connect('mysql2')->name('la_contract')->where('id', $find['id'])->update(['url' => json_encode($url)]);
|
|||
|
return true;
|
|||
|
}else{
|
|||
|
return self::setError('没找到合同,联系管理员');
|
|||
|
}
|
|||
|
}
|
|||
|
}
|