From 2fefd44d0ca05cacb75f83a2f79436619fd18387 Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Tue, 14 Jul 2020 14:16:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E4=BC=9A=E7=BB=9F=E8=AE=A1=E6=8E=A8?= =?UTF-8?q?=E5=B9=BF=E5=91=98=E6=94=AF=E4=BB=98=E6=97=B6=E9=97=B4=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin/Controller/FinancePromoteController.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Application/Admin/Controller/FinancePromoteController.class.php b/Application/Admin/Controller/FinancePromoteController.class.php index 2b7c62f5e..22df560c2 100644 --- a/Application/Admin/Controller/FinancePromoteController.class.php +++ b/Application/Admin/Controller/FinancePromoteController.class.php @@ -582,11 +582,11 @@ class FinancePromoteController extends AdminController } if (isset($_REQUEST['time_start']) && isset($_REQUEST['time_end'])) { - $map['s.pay_time'] = ['between', [strtotime($_REQUEST['time_start']), strtotime($_REQUEST['time_end']) + 86399]]; + $map['s.payed_time'] = ['between', [strtotime($_REQUEST['time_start']), strtotime($_REQUEST['time_end']) + 86399]]; } elseif (isset($_REQUEST['time_start'])) { - $map['s.pay_time'] = ['GT', strtotime($_REQUEST['time_start'])]; + $map['s.payed_time'] = ['GT', strtotime($_REQUEST['time_start'])]; } elseif (isset($_REQUEST['time_end'])) { - $map['s.pay_time'] = ['LT', strtotime($_REQUEST['time_end']) + 86399]; + $map['s.payed_time'] = ['LT', strtotime($_REQUEST['time_end']) + 86399]; } if (!empty(I('develop_type'))) { // $map['develop_type'] = I('develop_type');