From 2c005d1996cb1aaf5753f973791354c79ab6898b Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Wed, 26 Aug 2020 11:08:31 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=B9=E6=AE=8A=E8=A1=A5=E7=82=B9=E6=B1=87?= =?UTF-8?q?=E6=80=BB=E5=8A=9F=E8=83=BD=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Controller/CompanyStatementLackController.class.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Application/Admin/Controller/CompanyStatementLackController.class.php b/Application/Admin/Controller/CompanyStatementLackController.class.php index 425229108..dacf289f1 100644 --- a/Application/Admin/Controller/CompanyStatementLackController.class.php +++ b/Application/Admin/Controller/CompanyStatementLackController.class.php @@ -113,6 +113,9 @@ class CompanyStatementLackController extends ThinkController } //获取基本信息 $dbres = $this->DBModel->where("id='{$id}'")->select(); + + $withdraw_type = $dbres[0]['withdraw_type']; + $title = $dbres[0]['company_name']; $this->assign("title",$title); @@ -121,9 +124,9 @@ class CompanyStatementLackController extends ThinkController A("CompanyStatementPool")->viewCpPool($dbres,$is_export); }elseif($dbres[0]['company_type'] == 1){ //下游公司 - A("CompanyStatementPool")->viewPcPool($dbres,$is_export); + A("CompanyStatementPool")->viewPcPool($dbres,$is_export,$withdraw_type); }else{ - A("CompanyStatementPool")->viewPuPool($dbres,$is_export); + A("CompanyStatementPool")->viewPuPool($dbres,$is_export,$withdraw_type); } }