diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 0c69da7fb..343bf518b 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -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'])) { diff --git a/app/api/controller/ShopCallController.php b/app/api/controller/ShopCallController.php index 1e0f84c86..5aa4ee727 100644 --- a/app/api/controller/ShopCallController.php +++ b/app/api/controller/ShopCallController.php @@ -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')); + } } \ No newline at end of file diff --git a/app/common/logic/task_template/TaskTemplateLogic.php b/app/common/logic/task_template/TaskTemplateLogic.php index 50c532f9b..3b23a7b33 100644 --- a/app/common/logic/task_template/TaskTemplateLogic.php +++ b/app/common/logic/task_template/TaskTemplateLogic.php @@ -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('任务模板一阶段合计金额不能大于任务调度金额');