推广平台->数据汇总--bug更新

master
chenxiaojun 5 years ago
parent c923a58536
commit e24550b993

@ -565,4 +565,22 @@ class FinanceController extends BaseController
$this->assign('modelList', $modelList);
$this->display();
}
//审核拒绝 重新审核
public function renewReview($id)
{
//是否是会长
$this->purview();
//验证安全密码
$metaTitle = '结算明细';
$modelList = ['财务管理', $metaTitle];
$res = $this->verifyPasswordView($modelList, false);
if ($res == false) {
$data['status'] = 0;
$data['msg'] = '权限异常';
$this->ajaxReturn($data);
}
$id = intval($id);
}
}

@ -1733,7 +1733,7 @@ class QueryController extends BaseController
$pagination = '';
$count = 0;
if (intval($endTime - $begTime) / (24 * 3600) <= 31) {
$map[] = [
$map = [
'_logic' => 'or',
'id' => $queryPromote['id'],
'chain' => ['like', $queryPromote['chain'] . $queryPromote['id'] . '/%']

@ -173,8 +173,10 @@
<a href="{:U('withdrawDtl', array('id'=>$vo['id']))}">提现明细</a>
<if condition="$vo['status'] eq 2">
<a data-href="{:U('download/Remittancecer',['id'=>$vo['id']])}" class="ajax-get">汇款证明</a>
<elseif condition="$vo['status'] eq -1"/>
<a href="{:U('settlementOrder', array('id'=>$vo['id']))}" style="color: #0bb20c;">重新审核</a>
</if>
<a href="{:U('settlementOrder', array('id'=>$vo['id']))}">结算单</a>
<a href="{:U('renewReview', array('id'=>$vo['id']))}">结算单</a>
</td>
</tr>
</volist>

Loading…
Cancel
Save