|
@@ -792,14 +792,7 @@ class merchantControl extends SystemControl
|
|
|
{
|
|
|
$model_refill_order = Model('refill_order');
|
|
|
$condition['refill_order.inner_status'] = 0;
|
|
|
-<<<<<<< HEAD
|
|
|
|
|
|
- $condition['refill_order.order_time'] = ['time', [strtotime(date("Y-m-d")), strtotime(date("Y-m-d"))]];
|
|
|
- if($_GET['order_state'] == ORDER_STATE_SEND) {
|
|
|
- unset($condition['refill_order.order_time']);
|
|
|
- }
|
|
|
-=======
|
|
|
->>>>>>> 1de126e5d3206897880a77c3e9c76394d5ba526d
|
|
|
if (!empty($_GET['order_sn'])) {
|
|
|
$condition['refill_order.order_sn'] = $_GET['order_sn'];
|
|
|
}
|
|
@@ -838,16 +831,10 @@ class merchantControl extends SystemControl
|
|
|
}
|
|
|
|
|
|
$start_unixtime = strtotime($_GET['query_start_time']);
|
|
|
-<<<<<<< HEAD
|
|
|
- $end_unixtime = strtotime($_GET['query_end_time']);
|
|
|
- if ($start_unixtime > 0 && $end_unixtime > 0) {
|
|
|
- $condition['refill_order.order_time'] = ['time', [$start_unixtime, $end_unixtime]];
|
|
|
-=======
|
|
|
$end_unixtime = strtotime($_GET['query_end_time']);
|
|
|
|
|
|
if ($start_unixtime >0 && $end_unixtime >0) {
|
|
|
$condition['refill_order.order_time'] = ['between', [$start_unixtime, $end_unixtime]];
|
|
|
->>>>>>> 1de126e5d3206897880a77c3e9c76394d5ba526d
|
|
|
}
|
|
|
|
|
|
if (in_array($_GET['order_state'], ['0', '10', '20', '30', '40']))
|