Merge branch 'preview'

This commit is contained in:
chenbo 2024-01-13 14:39:56 +08:00
commit 9176344524
3 changed files with 24 additions and 17 deletions

View File

@ -829,12 +829,12 @@ class IndexController extends BaseApiController
public function getCompanyBankInfo()
{
$parmas = $this->request->param();
$company = Db::query("select company_name,qualification from la_company where company_type=:company_type and FIND_IN_SET(:street,responsible_area)", ['company_type' => 41,'street'=>$parmas['street_code']], true)[0];
$company = Db::query("select company_name,qualification from la_company where company_type=:company_type and FIND_IN_SET(:street,responsible_area)", ['company_type' => 41,'street'=>$parmas['street_code']], true);
if (empty($company)) {
return $this->success('成功', ['corporate_account'=> '22170201040004168', 'corporate_bank'=> '中国农业银行股份有限公司泸州石洞支行', 'company_name' => '泸州里海农业科技有限公司', 'corporate_bank_address'=> '泸州市龙马潭区张家祠东路竹林馨居东侧约60米']);
}
$company=$company[0];
$company['qualification'] = json_decode($company['qualification'], true);
if (!empty($company['qualification']['corporate_account']) && !empty($company['qualification']['corporate_bank'])) {

View File

@ -16,5 +16,12 @@ use think\facade\Log;
*/
class ShopCallController extends BaseApiController
{
public array $notNeedLogin = ['getVillageCompany'];
public function getVillageCompany()
{
$param = $this->request->param();
$geoVillage = Db::name('geo_village')->where('village_id', $param['village_id'])->find();
$company = Company::where(['village' =>$geoVillage['village_code'], 'company_type'=>17])->find();
return $this->success('成功', compact('company'));
}
}

View File

@ -57,13 +57,13 @@ class TaskTemplateLogic extends BaseLogic
}
}
if($params['type']==33){
$count=UserInformationg::where('company_id',$params['company_id'])->where('status',1)->count();
if($count<300){
self::setError('用户档案数量300不足无法创建任务模板');
return false;
}
}
// if($params['type']==33){
// $count=UserInformationg::where('company_id',$params['company_id'])->where('status',1)->count();
// if($count<300){
// self::setError('用户档案数量300不足无法创建任务模板');
// return false;
// }
// }
$moeny=TaskTemplate::where('company_id', $params['company_id'])->sum('money');
if($moeny+$params['money']>200){
@ -148,13 +148,13 @@ class TaskTemplateLogic extends BaseLogic
self::setError('已经有同一种任务类型了');
return false;
}
if($params['type']==33){
$count=UserInformationg::where('company_id',$params['company_id'])->where('status',1)->count();
if($count<300){
self::setError('用户档案数量300不足无法创建任务模板');
return false;
}
}
// if($params['type']==33){
// $count=UserInformationg::where('company_id',$params['company_id'])->where('status',1)->count();
// if($count<300){
// self::setError('用户档案数量300不足无法创建任务模板');
// return false;
// }
// }
$moeny=TaskTemplate::where('company_id', $params['company_id'])->sum('money');
if($moeny+$params['money']-$find['money']>$taskScheduleAmount){
self::setError('任务模板一阶段合计金额不能大于任务调度金额');