|
@@ -18,6 +18,9 @@ class refill_refundControl extends SystemControl
|
|
if(!empty($_GET['mchid'])) {
|
|
if(!empty($_GET['mchid'])) {
|
|
$condition['mchid'] = $_GET['mchid'];
|
|
$condition['mchid'] = $_GET['mchid'];
|
|
}
|
|
}
|
|
|
|
+ if(!empty($_GET['card_no'])) {
|
|
|
|
+ $condition['card_no'] = $_GET['card_no'];
|
|
|
|
+ }
|
|
$start_unixtime = intval(strtotime($_GET['query_start_time']));
|
|
$start_unixtime = intval(strtotime($_GET['query_start_time']));
|
|
$end_unixtime = intval(strtotime($_GET['query_end_time']));
|
|
$end_unixtime = intval(strtotime($_GET['query_end_time']));
|
|
if ($start_unixtime > 0 && $end_unixtime > $start_unixtime) {
|
|
if ($start_unixtime > 0 && $end_unixtime > $start_unixtime) {
|