You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
4.7 KiB
137 lines
4.7 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author: CRMEB Team <admin@crmeb.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
namespace app\controller\merchant\system;
|
|
|
|
use app\validate\merchant\MerchantApplymentsValidate;
|
|
use think\App;
|
|
use think\facade\Config;
|
|
use think\facade\Queue;
|
|
use crmeb\basic\BaseController;
|
|
use app\common\repositories\system\merchant\MerchantApplymentsRepository;
|
|
|
|
class MerchantApplyments extends BaseController
|
|
{
|
|
/**
|
|
* @var MerchantRepository
|
|
*/
|
|
protected $repository;
|
|
|
|
/**
|
|
* Merchant constructor.
|
|
* @param App $app
|
|
* @param MerchantRepository $repository
|
|
*/
|
|
public function __construct(App $app, MerchantApplymentsRepository $repository)
|
|
{
|
|
parent::__construct($app);
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
/**
|
|
* TODO 创建申请
|
|
* @param MerchantApplymentsValidate $validate
|
|
* @return \think\response\Json
|
|
* @author Qinii
|
|
* @day 6/22/21
|
|
*/
|
|
public function create(MerchantApplymentsValidate $validate)
|
|
{
|
|
if(!systemConfig('open_wx_sub_mch')) return app('json')->fail('未开启子商户入驻');
|
|
$data = $this->checkParams($validate);
|
|
|
|
$this->repository->create($data,$this->request->merId());
|
|
|
|
return app('json')->success('申请提交成功');
|
|
}
|
|
|
|
public function detail()
|
|
{
|
|
$merId = $this->request->merId();
|
|
$data = $this->repository->detail($merId);
|
|
$data['open_wx_sub_mch'] = systemConfig('open_wx_sub_mch');
|
|
return app('json')->success($data);
|
|
}
|
|
|
|
public function update($id,MerchantApplymentsValidate $validate)
|
|
{
|
|
if(!systemConfig('open_wx_sub_mch')) return app('json')->fail('未开启子商户入驻');
|
|
$data = $this->checkParams($validate);
|
|
unset($data['id']);
|
|
$this->repository->edit($id,$data);
|
|
|
|
return app('json')->success('编辑提交成功');
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
$mer_id = $this->request->merId();
|
|
$this->repository->check($mer_id);
|
|
return app('json')->success('查询状态已更新');
|
|
}
|
|
|
|
public function uploadImage($field)
|
|
{
|
|
$file = $this->request->file($field);
|
|
$water = $this->request->param('water');
|
|
if (!$file) return app('json')->fail('请上传图片');
|
|
$file = is_array($file) ? $file[0] : $file;
|
|
validate(["$field|图片" => [
|
|
'fileSize' => config('upload.filesize'),
|
|
'fileExt' => 'jpg,jpeg,png,bmp,gif',
|
|
'fileMime' => 'image/jpeg,image/png,image/gif',
|
|
function ($file) {
|
|
$ext = $file->extension();
|
|
if ($ext != strtolower($file->extension())) {
|
|
return '图片后缀必须为小写';
|
|
}
|
|
return true;
|
|
}
|
|
]])->check([$field => $file]);
|
|
|
|
$res = $this->repository->uploadImage($field,$water);
|
|
|
|
return app('json')->success($res);
|
|
}
|
|
|
|
|
|
public function checkParams(MerchantApplymentsValidate $validate)
|
|
{
|
|
//'organization_cert_info',
|
|
$data = $this->request->params([
|
|
'organization_type','business_license_info','id_doc_type','id_card_info','id_doc_info','need_account_info','account_info','contact_info','sales_scene_info','merchant_shortname','qualifications','business_addition_pics','business_addition_desc'
|
|
]);
|
|
|
|
if($data['id_doc_type'] == 1){
|
|
unset($data['id_doc_info']);
|
|
}else{
|
|
unset($data['id_card_info']);
|
|
}
|
|
|
|
if(in_array($data['organization_type'],['2401','2500'])){
|
|
unset($data['business_license_info']);
|
|
// unset($data['organization_cert_info']);
|
|
}
|
|
|
|
// if(isset($data['organization_cert_info']) && !is_array($data['organization_cert_info'])) unset($data['organization_cert_info']);
|
|
|
|
if(isset($data['qualifications']) && !$data['qualifications']) unset($data['qualifications']);
|
|
|
|
if(isset($data['business_addition_pics']) && !$data['business_addition_pics']) unset($data['business_addition_pics']);
|
|
if($data['organization_type'] !== 2 && isset($data['id_card_info']['id_card_address'])){
|
|
unset($data['id_card_info']['id_card_address']);
|
|
}
|
|
$validate->check($data);
|
|
return $data;
|
|
}
|
|
}
|
|
|