From 57abd846c605d03a4a66eb90bceb7317ca290c17 Mon Sep 17 00:00:00 2001 From: chenzhi Date: Fri, 19 Mar 2021 17:04:01 +0800 Subject: [PATCH 1/8] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=B4=A2=E5=8A=A1?= =?UTF-8?q?=E6=B1=87=E6=80=BB=E9=87=8D=E7=AE=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FinancialSummaryController.class.php | 15 +-- .../Admin/View/FinancialSummary/index.html | 100 ++++++++++++++---- 2 files changed, 86 insertions(+), 29 deletions(-) diff --git a/Application/Admin/Controller/FinancialSummaryController.class.php b/Application/Admin/Controller/FinancialSummaryController.class.php index b75b0de48..0998a121f 100644 --- a/Application/Admin/Controller/FinancialSummaryController.class.php +++ b/Application/Admin/Controller/FinancialSummaryController.class.php @@ -29,13 +29,7 @@ class FinancialSummaryController extends AdminController if(!IS_ROOT){ $this->OpAuthList= getModuleControllerAuth(); } - $this->assign('menubtn',$this->menuAuth()); - $lastRecount = D("CmdTasks")->getTypeLastTask("FinancialSummary"); - if(!$lastRecount){ - $lastRecount = "无"; - } - $this->assign('lastRecount',$lastRecount); - + $this->assign('menubtn',$this->menuAuth()); $this->getYearList(); $this->getYearData(); $this->display(); @@ -43,9 +37,10 @@ class FinancialSummaryController extends AdminController } public function updateStatement() { - - $temp = date('Y-m',strtotime(date('Y',time()).'-'.(date('m',time())-1).'-01')); - $params = "php ".SUBSITE_INDEX." FinancialSummarySet/setMonthFinancialSummary/recount/1/count_date/{$temp}"; + if(!isset($_REQUEST['time'])) $this->error("参数错误"); + + $time = $_REQUEST['time']; + $params = "php ".SUBSITE_INDEX." FinancialSummarySet/setMonthFinancialSummary/recount/1/count_date/{$time}"; $r = D("CmdTasks")->addTask("FinancialSummary",$params); if($r){ $this->ajaxReturn(["success"=>"ok"]); diff --git a/Application/Admin/View/FinancialSummary/index.html b/Application/Admin/View/FinancialSummary/index.html index d24b8ff3a..9d912a930 100644 --- a/Application/Admin/View/FinancialSummary/index.html +++ b/Application/Admin/View/FinancialSummary/index.html @@ -225,6 +225,24 @@
+ @@ -285,26 +303,70 @@ window.location.href = url; }); $("#updateStatement").on("click",function(){ - layer.confirm("重算需要花费2分钟左右时间,并且只统计上个月信息,无需重算请取消,上次重算时间【{$lastRecount}】",{title:false}, function(index){ - $.ajax({ - type: 'post', - url: "{:U('updateStatement')}", - data:{}, - success: function(data) { - if(data.success){ - layer.alert('添加重算任务成功,请2分钟后刷新查看',function(){ - window.location.reload(); - }); - }else{ - layer.alert('添加任务失败,已有重算任务。请等待上个重算任务完成'); + var html = $("#updateStatementTpl").html(); + layer.open({ + type: 1, + title: "汇总重算", + maxWidth:720, + closeBtn: 1, + shadeClose: true, + content: html, + success:function(){ + $("#updateStatementSubmit").off("click"); + $("#updateStatementTime").datetimepicker({ + format: 'yyyy-mm', + language: "zh-CN", + showMeridian:true, + pickDate:true, + startView: 3, + minView: 3, + autoclose: true, + pickTime:true + }); + $("#updateStatementSubmit").on("click",function() { + var subtime= $("#updateStatementTime").val(); + if(subtime == ''){ + layer.msg('请先选择要重算的月份'); + return false; } - }, - error:function(){ - layer.alert("网络错误或超时"); - return false; - } - }); - }); + var subtimeArr = subtime.split("-"); + + var today = new Date(); + today.setTime(today.getTime()); + var year = today.getFullYear(); + var month = today.getMonth()+1; + + if(subtimeArr[0] > year){ + layer.msg('要重算的月份必须小于当前时间'); + return false; + } + if(subtimeArr[0] == year && subtimeArr[1] >= month){ + layer.msg('要重算的月份必须小于当前时间'); + return false; + } + + $.ajax({ + type: 'post', + url: "{:U('updateStatement')}", + data:{time:subtime}, + success: function(data) { + if(data.success){ + layer.alert('添加重算任务成功,请2分钟后刷新查看',function(){ + window.location.reload(); + }); + }else{ + layer.alert('添加任务失败,已有重算任务。请等待上个重算任务完成'); + } + }, + error:function(){ + layer.alert("网络错误或超时"); + return false; + } + }); + }); + + } + }); }) //回车自动提交 From abb88719b5cfb1981979a82f4ab9421b85065af2 Mon Sep 17 00:00:00 2001 From: chenzhi Date: Mon, 22 Mar 2021 18:28:27 +0800 Subject: [PATCH 2/8] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E8=A1=A8=E5=90=8C?= =?UTF-8?q?=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Admin/Conf/config.php | 5 +- .../Controller/PlatformController.class.php | 8 +- .../SubSynTableController.class.php | 73 +++++++++++++++++++ 3 files changed, 81 insertions(+), 5 deletions(-) create mode 100644 Application/Admin/Controller/SubSynTableController.class.php diff --git a/Application/Admin/Conf/config.php b/Application/Admin/Conf/config.php index e3319f786..30a1267bb 100644 --- a/Application/Admin/Conf/config.php +++ b/Application/Admin/Conf/config.php @@ -129,6 +129,9 @@ return array( "tab_reward_detail", "tab_reward_record", "tab_new_company_statement_info", - "tab_spend" + "tab_game", + "tab_spend", + "tab_promote", + "tab_promote_company", ] ); \ No newline at end of file diff --git a/Application/Admin/Controller/PlatformController.class.php b/Application/Admin/Controller/PlatformController.class.php index 63e746e58..ca209d71d 100644 --- a/Application/Admin/Controller/PlatformController.class.php +++ b/Application/Admin/Controller/PlatformController.class.php @@ -1174,7 +1174,7 @@ class PlatformController extends ThinkController } D("Spend")->addSubsiteWhere($map,"s"); - $data = M('promote', 'tab_')->alias('tp1') + $data = SM('promote', 'tab_')->alias('tp1') ->field('tp1.account as promote_account,tp1.id,g.relation_game_id,g.relation_game_name, floor(sum(IF(is_check=1,pay_amount,0))*100) as count,IFNULL(sum(IF(is_check=2,pay_amount,0)),0) unpay_count') ->join("tab_promote AS tp2 ON tp2.`chain` LIKE CONCAT('%/', tp1.id, '/%') OR tp2.id = tp1.id", 'left') @@ -1190,7 +1190,7 @@ class PlatformController extends ThinkController if(isset($map['pay_time'])){ $tmap['pay_time'] = ['between', array($tmin,$tmonth[1][1])]; } - $tdata = M('promote', 'tab_')->alias('tp1') + $tdata = SM('promote', 'tab_')->alias('tp1') ->field('tp1.account as promote_account,tp1.id,g.relation_game_id,g.relation_game_name, floor(sum(IF(s.pay_time ' . $today . ' and is_check=1,pay_amount,0))*100) as today, floor(sum(IF(s.pay_time ' . $week . ' and is_check=1,pay_amount,0))*100) as week, @@ -1248,11 +1248,11 @@ class PlatformController extends ThinkController $user_auth_promote_ids = session('user_auth_promote_ids'); if ($user_auth_promote_ids == 'all' || in_array('0', explode(",", $user_auth_promote_ids))) { //官方渠道数据添加 - $authorityData = M('spend', 'tab_')->alias('s') + $authorityData = SM('spend', 'tab_')->alias('s') ->field('floor(sum(IF(is_check=1,pay_amount,0))*100) as count,IFNULL(sum(IF(is_check=2,pay_amount,0)),0) unpay_count') ->where($map) ->find(); - $tauthorityData = M('spend', 'tab_')->alias('s') + $tauthorityData = SM('spend', 'tab_')->alias('s') ->field(' floor(sum(IF(s.pay_time ' . $today . ' and is_check=1,pay_amount,0))*100) as today, floor(sum(IF(s.pay_time ' . $week . ' and is_check=1,pay_amount,0))*100) as week, diff --git a/Application/Admin/Controller/SubSynTableController.class.php b/Application/Admin/Controller/SubSynTableController.class.php new file mode 100644 index 000000000..abed98117 --- /dev/null +++ b/Application/Admin/Controller/SubSynTableController.class.php @@ -0,0 +1,73 @@ +SubSynTableModel = M("syn_table","sub_",SUBSITE_DB);//指定子库 + } + + public function run(){ + $synList = $this->SubSynTableModel->field("id,table_name,table_prefix,check_sum")->select(); + foreach ($synList as $k => $v) { + $this->doSyn($v); + } + } + + public function synOneTable($table_prefix,$tab_name) + { + $synInfo = $this->SubSynTableModel->where("table_name = '{$tab_name}' and table_prefix = '{$table_prefix}'")->field("id,table_name,table_prefix,check_sum")->find(); + $this->doSyn($synInfo); + } + + protected function doSyn($dbarr) + { + //获取最新check_sum + $table_prefix = $dbarr['table_prefix']; + $table_name = $dbarr['table_name']; + $res = M()->query(self::CHECK_SUM_SQL.$table_prefix.$table_name); + $now = time(); + $check_sum = $res[0]['checksum']; + if($check_sum !== $dbarr['check_sum']){ + $this->clearTable($table_prefix,$table_name); + $this->synTable($table_prefix,$table_name); + $dbarr['syn_time'] = $now; + $dbarr['check_sum'] = $check_sum; + } + $dbarr['update_time'] = $now; + $this->SubSynTableModel->save($dbarr); + echo $table_prefix.$table_name." success".PHP_EOL; + } + protected function clearTable($table_prefix,$table_name) + { + return SM()->query(self::TRUNCATE_SQL.$table_prefix.$table_name); + } + protected function synTable($table_prefix,$table_name) + { + $count = M($table_name,$table_prefix)->count(); + if(empty($count)) return true; + $pageCount = ceil($count/self::LIMIT); + for ($i=1; $i <= $pageCount; $i++) { + $tres = M($table_name,$table_prefix)->page($i,self::LIMIT)->select(); + $addRes = M($table_name,$table_prefix,SUBSITE_DB)->addAll($tres); + echo "[{$i}/{$pageCount}] {$addRes}".PHP_EOL; + } + return true; + } + +} From 6c46dd0ea568e1829858bb3f88deae2cffc957c3 Mon Sep 17 00:00:00 2001 From: chenzhi Date: Tue, 23 Mar 2021 10:47:30 +0800 Subject: [PATCH 3/8] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=B1=87=E6=80=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Admin/Controller/FinancialSummarySetController.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Application/Admin/Controller/FinancialSummarySetController.class.php b/Application/Admin/Controller/FinancialSummarySetController.class.php index 3a51e78d4..1e6e34a1b 100644 --- a/Application/Admin/Controller/FinancialSummarySetController.class.php +++ b/Application/Admin/Controller/FinancialSummarySetController.class.php @@ -266,12 +266,13 @@ class FinancialSummarySetController extends \Think\Controller */ public function setPromoteMoney() { + $SpendModel = SM("spend",'tab_'); $map = array( "payed_time"=> array('BETWEEN',array($this->beginThismonth, $this->endThismonth)), "pay_status"=>1, ); D("Spend")->addSubsiteWhere($map,"s"); - $res = $this->SpendModel + $res = $SpendModel ->alias('s') ->field("IFNULL(SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END),0) as cash_count, IFNULL(SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END),0) as balance_coin_count, @@ -358,7 +359,7 @@ class FinancialSummarySetController extends \Think\Controller $unmap = $map; $unmap['is_check'] = 2; - $unSettlementRes = $this->SpendModel + $unSettlementRes = $SpendModel ->alias('s') ->field("IFNULL(SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END),0) as cash_count, IFNULL(SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END),0) as balance_coin_count, From 7ca675b520d4b25ea0437edf4eecc4c75db46390 Mon Sep 17 00:00:00 2001 From: chenzhi Date: Tue, 23 Mar 2021 11:01:36 +0800 Subject: [PATCH 4/8] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=8E=A8=E5=B9=BF?= =?UTF-8?q?=E5=91=98=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Admin/Controller/PlatformController.class.php | 1 - Application/Admin/View/Platform/promotepay_statistics.html | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Application/Admin/Controller/PlatformController.class.php b/Application/Admin/Controller/PlatformController.class.php index ca209d71d..bacd17353 100644 --- a/Application/Admin/Controller/PlatformController.class.php +++ b/Application/Admin/Controller/PlatformController.class.php @@ -255,7 +255,6 @@ class PlatformController extends ThinkController "pay_time"=>["between",$yearMap], "pay_status"=>1 ]; - D("Spend")->addSubsiteWhere($map); $Payamount = SM("Spend","tab_")->field("sum(IF(is_check=1,pay_amount,0)) pay_amount,IFNULL(sum(IF(is_check=2,pay_amount,0)),0) unpay_amount,FROM_UNIXTIME(`pay_time`, '%Y-%m') paytime")->where($map)->group("paytime")->select(); if(empty($Payamount)) return ; foreach ($Payamount as $v) { diff --git a/Application/Admin/View/Platform/promotepay_statistics.html b/Application/Admin/View/Platform/promotepay_statistics.html index 397b1b053..3dd22b267 100644 --- a/Application/Admin/View/Platform/promotepay_statistics.html +++ b/Application/Admin/View/Platform/promotepay_statistics.html @@ -36,7 +36,7 @@

推广员充值统计

-

说明:针对所有推广员下的充值金额,进行充值排行统计:游戏、平台币、绑币的现金充值总额

+

说明:针对所有推广员下的充值金额,进行充值排行统计:游戏、平台币、绑币的现金充值总额/ 支付信息仅统计已固定的订单数据

From 6bc17ad982ef29770920bfaabd9e8f5de564d106 Mon Sep 17 00:00:00 2001 From: ELF <360197197@qq.com> Date: Tue, 23 Mar 2021 12:16:56 +0800 Subject: [PATCH 5/8] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B9=9D=E5=A4=A9?= =?UTF-8?q?=E4=BB=99=E5=B0=98=E8=90=BD=E5=9C=B0=E9=A1=B5=E5=90=8D=E7=A7=B0?= =?UTF-8?q?=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Application/Home/Controller/HomeController.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Application/Home/Controller/HomeController.class.php b/Application/Home/Controller/HomeController.class.php index 30ed4bc2a..6933ad4de 100644 --- a/Application/Home/Controller/HomeController.class.php +++ b/Application/Home/Controller/HomeController.class.php @@ -307,9 +307,9 @@ class HomeController extends Controller $ssgUrl = $downloadDomain . '/mobile.php/Ssg/pay/game_id/' . $game['id'] . '/promote_id/' . $promoteId; - /* if(in_array($game['id'], [187, 188])) { - $game['relation_game_name'] = '游戏下载'; - } */ + if(in_array($game['id'], [191, 192])) { + $game['relation_game_name'] = '九灵神域'; + } $this->assign("serviceQQ", $serviceQQ); $this->assign('isNewIos', $isNewIos); From 3b447b70d004cbab93fa4eec1cc12c8f3ffe2d2c Mon Sep 17 00:00:00 2001 From: chenzhi Date: Tue, 23 Mar 2021 14:35:29 +0800 Subject: [PATCH 6/8] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=85=AC=E4=BC=9A?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../FinancePromoteController.class.php | 23 ++++----- Application/Admin/Model/SpendModel.class.php | 19 +++++++ .../Admin/View/FinancePromote/index.html | 51 ++++++++++++------- 3 files changed, 63 insertions(+), 30 deletions(-) diff --git a/Application/Admin/Controller/FinancePromoteController.class.php b/Application/Admin/Controller/FinancePromoteController.class.php index 93fb2af19..0c7ab2198 100644 --- a/Application/Admin/Controller/FinancePromoteController.class.php +++ b/Application/Admin/Controller/FinancePromoteController.class.php @@ -294,13 +294,12 @@ class FinancePromoteController extends AdminController } $map['s.pay_status']=1; $map['s.is_check']=2; - D("Spend")->addSubsiteWhere($map,"s"); $field= "SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END) as cash_count, SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END) as balance_coin_count, SUM(CASE WHEN pay_way = -1 THEN pay_amount ELSE 0 END) as bind_coin_count, IFNULL(if(substring_index(substring_index(promote.`chain`,'/',2),'/',-1)='',s.promote_id,substring_index(substring_index(promote.`chain`,'/',2),'/',-1)),0) p_id, IFNULL(company_id,0) company_id,company_name,develop_type,IFNULL(promote.company_belong,0) company_belong"; - $query = M() + $query = SM() ->table("tab_spend s use index(promote_time)") ->field($field) ->where($map) @@ -379,13 +378,12 @@ class FinancePromoteController extends AdminController } $map['s.pay_status']=1; // $map['s.is_check']=1; - D("Spend")->addSubsiteWhere($map,"s"); $field= "SUM(CASE WHEN pay_way > 0 and s.is_check=1 THEN pay_amount ELSE 0 END) as cash_count, SUM(CASE WHEN pay_way = 0 and s.is_check=1 THEN pay_amount ELSE 0 END) as balance_coin_count, SUM(CASE WHEN pay_way = -1 and s.is_check=1 THEN pay_amount ELSE 0 END) as bind_coin_count, IFNULL(if(substring_index(substring_index(promote.`chain`,'/',2),'/',-1)='',s.promote_id,substring_index(substring_index(promote.`chain`,'/',2),'/',-1)),0) p_id, IFNULL(company_id,0) company_id,company_name,develop_type,IFNULL(promote.company_belong,0) company_belong"; - $query = M() + $query = SM() ->table("tab_spend s use index(promote_time)") ->field($field) ->where($map) @@ -610,13 +608,12 @@ class FinancePromoteController extends AdminController } $map['s.pay_status']=1; $map['s.is_check']=1; - D("Spend")->addSubsiteWhere($map,"s"); // dd($map); $field= "SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END) as cash_count, SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END) as balance_coin_count, SUM(CASE WHEN pay_way = -1 THEN pay_amount ELSE 0 END) as bind_coin_count, IFNULL(company_id,0) company_id,company_name,promote_id,promote.account promote_account,develop_type,IFNULL(promote.company_belong,0) company_belong"; - $query = M() + $query = SM() ->table("tab_spend s use index(promote_time)") ->field($field) ->where($map) @@ -895,9 +892,9 @@ class FinancePromoteController extends AdminController $group = ""; $order = "pay_time DESC"; if(isset($_REQUEST['export'])){ - $data = D('spend')->getSpendData($map,$field,$group,$order); + $data = D('spend')->getSubSpendData($map,$field,$group,$order); }else { - $data = D('spend')->getSpendData($map,$field,$group,$order,$page,$row); + $data = D('spend')->getSubSpendData($map,$field,$group,$order,$page,$row); } $marketAdmins = []; @@ -965,7 +962,7 @@ class FinancePromoteController extends AdminController $this->assign('sumInside', $sumInside); $this->assign('sumAll', null_to_0($sumAll)); - $count = D("spend")->getSpendData($map,$field,$group,$order); + $count = D("spend")->getSubSpendData($map,$field,$group,$order); $count = count($count); $page = set_pagination($count,$row); @@ -996,7 +993,7 @@ class FinancePromoteController extends AdminController $map['s.pay_status']=1; $map['s.is_check']=1; - $query = M("spend","tab_")->alias("s") + $query = SM("spend","tab_")->alias("s") ->field("s.game_id,s.game_name,s.sdk_version,p.partner as partner_name, SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END) as cash_count, SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END) as balance_coin_count, @@ -1039,7 +1036,7 @@ class FinancePromoteController extends AdminController $map['s.market_admin_id'] = $adminId; } - $query = M("spend","tab_")->alias("s") + $query = SM("spend","tab_")->alias("s") ->field("SUM(CASE WHEN pay_way > 0 THEN pay_amount ELSE 0 END) as cash_count, SUM(CASE WHEN pay_way = 0 THEN pay_amount ELSE 0 END) as balance_coin_count, SUM(CASE WHEN pay_way = -1 THEN pay_amount ELSE 0 END) as inside_cash_count"); @@ -1099,7 +1096,7 @@ class FinancePromoteController extends AdminController $row = 10; } $map['pay_status'] = 1; - $map['is_check'] = 1; + $map['tab_spend.is_check'] = 1; if (!empty(I('user_account'))) { $map['tab_spend.user_account'] = array('like','%'.I("user_account").'%'); @@ -1107,7 +1104,7 @@ class FinancePromoteController extends AdminController if (!empty(I('user_nickname'))) { $map['tab_spend.game_player_name'] = array('like',I("user_nickname").'%'); } - D("Spend")->addSubsiteWhere($map,"s"); + D("Spend")->addSubsiteWhere($map,"tab_spend"); $field = "pay_order_number,FROM_UNIXTIME(payed_time) as pay_time,tab_spend.user_account, tab_spend.user_nickname,tab_spend.game_name,tab_spend.promote_account,spend_ip,tab_spend.server_name,tab_spend.sdk_version, game_player_name,pay_amount,cost,pay_way"; diff --git a/Application/Admin/Model/SpendModel.class.php b/Application/Admin/Model/SpendModel.class.php index 0ce2fb602..51fecfd41 100644 --- a/Application/Admin/Model/SpendModel.class.php +++ b/Application/Admin/Model/SpendModel.class.php @@ -843,6 +843,19 @@ class SpendModel extends Model } return $data; } + public function getSubSpendData($map = [], $field = '', $group = '', $order = '', $page = 0, $row = 0, $join = false) + { + $query = SM('spend',"tab_")->field($field)->where($map)->group($group)->order($order); + if ($join) { + $query = $query->join($join); + } + if ($row == 0) { + $data = $query->select(); + } else { + $data = $query->page($page, $row)->select(); + } + return $data; + } public function sumSpend($map = [], $field = '') { @@ -850,6 +863,12 @@ class SpendModel extends Model return $sum; } + public function sumSubSpend($map = [], $field = '') + { + $sum = SM('spend',"tab_")->where($map)->sum($field); + + return $sum; + } private function getGameMapByGameStatMap($map) { diff --git a/Application/Admin/View/FinancePromote/index.html b/Application/Admin/View/FinancePromote/index.html index 4094d65e6..c6605e1b5 100644 --- a/Application/Admin/View/FinancePromote/index.html +++ b/Application/Admin/View/FinancePromote/index.html @@ -85,7 +85,7 @@