From 5b604ab0739908ee7eedb2b1d2a7946fd7bdf631 Mon Sep 17 00:00:00 2001 From: yulingwei <2436953959@qq.com> Date: Tue, 23 Jun 2020 16:02:02 +0800 Subject: [PATCH] upt --- .../PromoteCompanyController.class.php | 18 +++++++++++++++--- .../PromoteCompany/service_agreement_list.html | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/Application/Admin/Controller/PromoteCompanyController.class.php b/Application/Admin/Controller/PromoteCompanyController.class.php index 512e9206b..66bbb590b 100644 --- a/Application/Admin/Controller/PromoteCompanyController.class.php +++ b/Application/Admin/Controller/PromoteCompanyController.class.php @@ -604,8 +604,8 @@ WHERE old_change_promote_id in ({$promoteData})"; if(in_array($defaultService['id'], $ids)) { return $this->error('无法删除默认模板'); } - $useingService = M('promote_company', 'tab_')->where(['service_agreement_show'=>['in', $ids]])->find(); - if (!empty($useingService)) return $this->error('有正在使用该服务合同的公司,无法删除'); + $usingService = M('promote_company', 'tab_')->where(['service_agreement_show'=>['in', $ids]])->find(); + if (!empty($usingService)) return $this->error('有正在使用该服务合同的公司,无法删除'); $result = M('service_agreement', 'tab_')->where(['id'=>['in', $ids]])->delete(); return $result ? $this->success('删除完成') : $this->error('删除失败'); } @@ -625,6 +625,18 @@ WHERE old_change_promote_id in ({$promoteData})"; } } else { if (!empty($id)) { + if ($delete) { + $ids = [$id]; + // 获取默认合同id + $defaultService = M('service_agreement', 'tab_')->where(['status'=>2])->find(); + if(in_array($defaultService['id'], $ids)) { + return $this->error('无法删除默认模板'); + } + $usingService = M('promote_company', 'tab_')->where(['service_agreement_show'=>['in', $ids]])->find(); + if (!empty($usingService)) return $this->error('有正在使用该服务合同的公司,无法删除'); + $result = M('service_agreement', 'tab_')->where(['id'=>['in', $ids]])->delete(); + return $result ? $this->success('删除完成') : $this->error('删除失败'); + } $info = M('service_agreement', 'tab_')->where(['id'=>$id])->find(); if (empty($info)) return $this->error('未找到协议'); $this->assign('info', $info); @@ -635,7 +647,7 @@ WHERE old_change_promote_id in ({$promoteData})"; public function serviceAgreementSetDefault($id) { - M('service_agreement', 'tab_')->save(['status'=>1]); + M('service_agreement', 'tab_')->where('id > 0')->save(['status'=>1]); M('service_agreement', 'tab_')->where(['id'=>$id])->save(['status'=>2]); return $this->success('设置完成'); } diff --git a/Application/Admin/View/PromoteCompany/service_agreement_list.html b/Application/Admin/View/PromoteCompany/service_agreement_list.html index 4c616895b..b4b9680cf 100644 --- a/Application/Admin/View/PromoteCompany/service_agreement_list.html +++ b/Application/Admin/View/PromoteCompany/service_agreement_list.html @@ -77,7 +77,7 @@