|
@@ -6,150 +6,13 @@
|
|
|
<div class="page">
|
|
|
<div class="fixed-bar">
|
|
|
<div class="item-title">
|
|
|
- <h3>订单列表</h3>
|
|
|
+ <h3>订单监控列表</h3>
|
|
|
<ul class="tab-base">
|
|
|
<li><a href="JavaScript:void(0);" class="current"><span>管理</span></a></li>
|
|
|
</ul>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="fixed-empty"></div>
|
|
|
- <form method="get" action="index.php" name="formSearch" id="formSearch">
|
|
|
- <input type="hidden" name="act" value="merchant"/>
|
|
|
- <input type="hidden" name="op" value="OrderSendList"/>
|
|
|
- <table class="tb-type1 noborder search">
|
|
|
- <tbody>
|
|
|
- <tr>
|
|
|
- <th><label>我方订单号</label></th>
|
|
|
- <td><input class="txt2" type="text" name="order_sn" value="<?php echo $_GET['order_sn']; ?>"/></td>
|
|
|
- <th><label>客户订单号</label></th>
|
|
|
- <td><input class="txt2" type="text" name="mch_order" value="<?php echo $_GET['mch_order']; ?>"/></td>
|
|
|
- <th><label>供方订单号</label></th>
|
|
|
- <td><input class="txt2" type="text" name="ch_trade_no" value="<?php echo $_GET['ch_trade_no']; ?>"/></td>
|
|
|
-
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th><label>客户名称</label></th>
|
|
|
- <td><input class="txt2" type="text" name="mchid" value="<?php echo $_GET['mchid']; ?>"/></td>
|
|
|
- <th><label>供方名称</label></th>
|
|
|
- <td>
|
|
|
- <select name="store_id" class="querySelect">
|
|
|
- <option value=""><?php echo $lang['nc_please_choose']; ?></option>
|
|
|
- <?php foreach($output['provider_list'] as $provider){?>
|
|
|
- <option value="<?php echo $provider['store_id']?>"
|
|
|
- <?php if ($_GET['store_id'] == $provider['store_id']){ ?>selected<?php } ?>><?php echo $provider['name']?>
|
|
|
- </option>
|
|
|
- <?php }?>
|
|
|
- </select>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <th><label>充值卡卡号</label></th>
|
|
|
- <td><input class="txt2" type="text" name="card_no" value="<?php echo $_GET['card_no']; ?>"/></td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <th><label for="query_start_time">下单时间</label></th>
|
|
|
- <td>
|
|
|
- <input class="txt date" type="text" value="<?php echo $_GET['query_start_time']; ?>"
|
|
|
- id="startTime" name="query_start_time" autocomplete="off" style="width:120px" />
|
|
|
- <label for="query_start_time">~</label>
|
|
|
- <input class="txt date" type="text" value="<?php echo $_GET['query_end_time']; ?>"
|
|
|
- id="endTime" name="query_end_time" autocomplete="off" style="width:120px" /></td>
|
|
|
- <th><label>充值类型</label></th>
|
|
|
- <td>
|
|
|
- <select name="card_type" class="querySelect">
|
|
|
- <option value=""><?php echo $lang['nc_please_choose']; ?></option>
|
|
|
- <option value="1"
|
|
|
- <?php if ($_GET['card_type'] == '1'){ ?>selected<?php } ?>>中石油</option>
|
|
|
- <option value="2"
|
|
|
- <?php if ($_GET['card_type'] == '2'){ ?>selected<?php } ?>>中石化</option>
|
|
|
- <option value="4"
|
|
|
- <?php if ($_GET['card_type'] == '4'){ ?>selected<?php } ?>>中国移动</option>
|
|
|
- <option value="5"
|
|
|
- <?php if ($_GET['card_type'] == '5'){ ?>selected<?php } ?>>中国联通</option>
|
|
|
- <option value="6"
|
|
|
- <?php if ($_GET['card_type'] == '6'){ ?>selected<?php } ?>>中国电信</option>
|
|
|
- <option value="oil"
|
|
|
- <?php if ($_GET['card_type'] == 'oil'){ ?>selected<?php } ?>>油费</option>
|
|
|
- <option value="phone"
|
|
|
- <?php if ($_GET['card_type'] == 'phone'){ ?>selected<?php } ?>>手机费</option>
|
|
|
- </select>
|
|
|
- </td>
|
|
|
- <th><label>交易面额</label></th>
|
|
|
- <td>
|
|
|
- <select name="refill_amount" class="querySelect">
|
|
|
- <option value=""><?php echo $lang['nc_please_choose']; ?></option>
|
|
|
- <option value="10"
|
|
|
- <?php if ($_GET['refill_amount'] == '10'){ ?>selected<?php } ?>>10</option>
|
|
|
- <option value="20"
|
|
|
- <?php if ($_GET['refill_amount'] == '20'){ ?>selected<?php } ?>>20</option>
|
|
|
- <option value="30"
|
|
|
- <?php if ($_GET['refill_amount'] == '30'){ ?>selected<?php } ?>>30</option>
|
|
|
- <option value="50"
|
|
|
- <?php if ($_GET['refill_amount'] == '50'){ ?>selected<?php } ?>>50</option>
|
|
|
- <option value="100"
|
|
|
- <?php if ($_GET['refill_amount'] == '100'){ ?>selected<?php } ?>>100</option>
|
|
|
- <option value="200"
|
|
|
- <?php if ($_GET['refill_amount'] == '200'){ ?>selected<?php } ?>>200</option>
|
|
|
- <option value="300"
|
|
|
- <?php if ($_GET['refill_amount'] == '300'){ ?>selected<?php } ?>>300</option>
|
|
|
- <option value="500"
|
|
|
- <?php if ($_GET['refill_amount'] == '500'){ ?>selected<?php } ?>>500</option>
|
|
|
- <option value="1000"
|
|
|
- <?php if ($_GET['refill_amount'] == '1000'){ ?>selected<?php } ?>>1000</option>
|
|
|
- <option value="2000"
|
|
|
- <?php if ($_GET['refill_amount'] == '2000'){ ?>selected<?php } ?>>2000</option>
|
|
|
- </select>
|
|
|
- <label>充值耗时</label>
|
|
|
- <select name="time" class="querySelect">
|
|
|
- <option value=""><?php echo $lang['nc_please_choose']; ?></option>
|
|
|
- <option value="1"
|
|
|
- <?php if ($_GET['time'] == '1'){ ?>selected<?php } ?>>耗时3分钟</option>
|
|
|
- <option value="2"
|
|
|
- <?php if ($_GET['time'] == '2'){ ?>selected<?php } ?>>耗时5分钟</option>
|
|
|
- </select>
|
|
|
- </td>
|
|
|
- <td>
|
|
|
- <a href="javascript:void(0);" id="ncsubmit" class="btn-search "
|
|
|
- title="<?php echo $lang['nc_query']; ?>">
|
|
|
- </a>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td></td>
|
|
|
- <td>
|
|
|
- <a href="#" class="btns" onclick="hCopyChannel(event)">
|
|
|
- <span><i class="icon-edit"></i>拷贝供方单号</span>
|
|
|
- </a>
|
|
|
- <a href="#" class="btns" onclick="hCopyCardNo(event)">
|
|
|
- <span><i class="icon-edit"></i>拷贝充值卡号</span>
|
|
|
- </a>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- </form>
|
|
|
- <table class="table tb-type2" id="prompt">
|
|
|
- <tbody>
|
|
|
- <tr class="space odd">
|
|
|
- <th colspan="12"><div class="title"><h5>
|
|
|
- 金额统计</h5><span class="arrow"></span></div></th>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td>
|
|
|
- <ul>
|
|
|
- <li>总计充值金额:<?php echo $output['stat']['refill_amounts'] ?? 0?></li>
|
|
|
- <li>总计供方扣款金额:<?php echo $output['stat']['channel_amounts'] ?? 0?></li>
|
|
|
- <li>总计客户扣款金额:<?php echo $output['stat']['mch_amounts'] ?? 0?></li>
|
|
|
- <li>总计利润:<?php echo ncPriceFormat($output['stat']['mch_amounts'] - $output['stat']['channel_amounts'])?></li>
|
|
|
- <li>总计订单数量:<?php echo $output['stat']['order_count'] ?? 0?></li>
|
|
|
- <li>超过3分钟订单数量:<?php echo $output['count']['exceed_three'] ?? 0?></li>
|
|
|
- <li>超过5分钟订单数量:<?php echo $output['count']['exceed_five'] ?? 0?></li>
|
|
|
- </ul>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
<table class="table tb-type2 nobdb">
|
|
|
<thead>
|
|
|
<tr class="thead">
|