264 lines
10 KiB
PHP
264 lines
10 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\adminapi\logic;
|
||
|
||
|
||
use app\api\controller\JunziqianController;
|
||
use app\api\logic\SmsLogic;
|
||
use app\common\logic\CompanyLogic;
|
||
use app\common\logic\contract\ContractLogic;
|
||
use app\common\logic\UserLogic;
|
||
use app\common\model\ShopContract;
|
||
use app\common\logic\BaseLogic;
|
||
use app\common\model\ShopMerchant;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* ShopContract逻辑
|
||
* Class ShopContractLogic
|
||
* @package app\adminapi\logic
|
||
*/
|
||
class ShopContractLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/09/13 17:01
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ShopContract::create([
|
||
'contract_no' => $params['contract_no'],
|
||
'type' => $params['type'],
|
||
'contract_url' => $params['contract_url'],
|
||
'evidence_url' => $params['evidence_url'],
|
||
'url' => $params['url'],
|
||
'signing_timer' => $params['signing_timer'],
|
||
]);
|
||
|
||
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/09/13 17:01
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ShopContract::where('id', $params['id'])->update([
|
||
'file' => $params['file'],
|
||
]);
|
||
|
||
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/09/13 17:01
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return ShopContract::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/09/13 17:01
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = Db::name('shop_contract')->where('id', $params['id'])
|
||
->withAttr('party_b_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'];
|
||
$shopMerchant = ShopMerchant::where(['id' => $data['party_b']])->field($field)->find()->toArray();
|
||
$shopMerchant['qualification'] = json_decode($shopMerchant['qualification'], true);
|
||
if($shopMerchant['qualification'] && isset($shopMerchant['qualification']['other_qualifications'])){
|
||
$shopMerchant['qualification']['other_qualifications']=json_decode($shopMerchant['qualification']['other_qualifications'],true);
|
||
}
|
||
return $shopMerchant;
|
||
})
|
||
->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'];
|
||
$shopMerchant = ShopMerchant::where(['id' => $data['party_a']])->field($field)->find()->toArray();
|
||
if($shopMerchant['qualification'] && isset($shopMerchant['qualification']['other_qualifications'])){
|
||
$shopMerchant['qualification']['other_qualifications']=json_decode($shopMerchant['qualification']['other_qualifications'],true);
|
||
}
|
||
return $shopMerchant;
|
||
})
|
||
->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_shop_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 Draftingcontracts($params,$type=1)
|
||
{
|
||
$result = ShopMerchantLogic::detail($params);
|
||
if ($result && isset($result['contract']) && isset($result['contract']['file']) && $result['contract']['file'] != '') {
|
||
if ($result['contract']['check_status'] == 3) {
|
||
return self::setError('你已经生成过合同,请勿重复生成');
|
||
}
|
||
|
||
$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'],
|
||
];
|
||
|
||
$res = app(JunziqianController::class)->shopContractSigning($data, $result['contract']['id']);
|
||
if ($res->success == true) {
|
||
Db::name('shop_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);
|
||
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"
|
||
],
|
||
];
|
||
|
||
$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"
|
||
|
||
];
|
||
|
||
$find = Db::name('shop_contract')->where('id', $params['id'])
|
||
->withAttr('contract_type_name', function ($value, $data) {
|
||
return Db::name('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['a'] =$res->data;
|
||
} else {
|
||
$url['b'] =$res->data;
|
||
}
|
||
if ($v['type'] == 'party_a') {
|
||
$v['type'] = 'a';
|
||
}
|
||
if ($v['type'] == 'party_b') {
|
||
$v['type'] = 'b';
|
||
}
|
||
//发送短信
|
||
$sms = [
|
||
'mobile' => $v['master_phone'],
|
||
'name' => $v['fullName'],
|
||
'type' => '《商户入驻合同》',
|
||
'code' => 'api/Hetong/url?id=' . $find['id'].'&type='.$v['type'].'&t=1',
|
||
'scene' => 'WQ'
|
||
];
|
||
$result = SmsLogic::contractUrl($sms);
|
||
if ($result != true) {
|
||
return self::setError(SmsLogic::getError());
|
||
}
|
||
} else {
|
||
return self::setError($res->msg);
|
||
}
|
||
}
|
||
Db::name('shop_contract')->where('id', $find['id'])->update(['url' => json_encode($url)]);
|
||
return true;
|
||
}else{
|
||
return self::setError('没找到合同,联系管理员');
|
||
}
|
||
}
|
||
} |