Forráskód Böngészése

商户超时订单监控,面额检索

lowkeyman 1 hónapja
szülő
commit
754c1ebdae

+ 4 - 0
admin/control/ordersendlist.php

@@ -150,6 +150,10 @@ class ordersendlistControl extends SystemControl
             }
         }
 
+        if (!empty($_GET['refill_amount'])) {
+            $base_cond['refill_order.refill_amount'] = $_GET['refill_amount'];
+        }
+
         if (!empty($_GET['quality'])) {
             $base_cond['refill_order.quality'] = $_GET['quality'];
         }

+ 16 - 0
admin/templates/default/refill.order.send.index.php

@@ -154,6 +154,22 @@
                         </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>
+                </td>
                 <th><label>通道质量</label></th>
                 <td>
                     <select name="quality" class="querySelect">