Commit 3466b1ab by 朱继来

订单金额统计添加尽调账号条件

parent 92d68250
Showing with 5 additions and 0 deletions
...@@ -145,6 +145,11 @@ Class OrderCountController extends Controller ...@@ -145,6 +145,11 @@ Class OrderCountController extends Controller
$map['checkTime'] = $checkTime = $request->input('checkTime', '1'); // 默认选择订单付款时间 $map['checkTime'] = $checkTime = $request->input('checkTime', '1'); // 默认选择订单付款时间
$map['checkStatus'] = $checkStatus = $request->input('checkStatus', '1'); // 默认选择查询全部 $map['checkStatus'] = $checkStatus = $request->input('checkStatus', '1'); // 默认选择查询全部
// 竞调账号
if ($info['username'] != 'vpadmin@ichunt.com') {
$map['is_fake'] = 0;
}
// 调用API // 调用API
$url = Config('website.api_domain').'order/getAllOrder'; $url = Config('website.api_domain').'order/getAllOrder';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment