diff --git a/app/admin/lists/store_order/StoreOrderLists.php b/app/admin/lists/store_order/StoreOrderLists.php index fe210d17..441200b8 100644 --- a/app/admin/lists/store_order/StoreOrderLists.php +++ b/app/admin/lists/store_order/StoreOrderLists.php @@ -51,6 +51,9 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface $query->whereTime('create_time', '>=', $this->params['start_time']); }) ->when(!empty($this->params['end_time']), function ($query) { + if ($this->params['end_time'] == $this->params['start_time']) { + $this->params['end_time'] = strtotime($this->params['end_time']) + 86399; + } $query->whereTime('create_time', '<=', $this->params['end_time']); }) ->when(!empty($this->request->adminInfo['store_id']), function ($query) { @@ -85,6 +88,9 @@ class StoreOrderLists extends BaseAdminDataLists implements ListsSearchInterface $query->whereTime('create_time', '>=', $this->params['start_time']); }) ->when(!empty($this->params['end_time']), function ($query) { + if ($this->params['end_time'] == $this->params['start_time']) { + $this->params['end_time'] = strtotime($this->params['end_time']) + 86399; + } $query->whereTime('create_time', '<=', $this->params['end_time']); }) ->count(); diff --git a/app/common/lists/order/StoreRefundOrderLists.php b/app/common/lists/order/StoreRefundOrderLists.php index ca54da8e..f5410f87 100644 --- a/app/common/lists/order/StoreRefundOrderLists.php +++ b/app/common/lists/order/StoreRefundOrderLists.php @@ -48,6 +48,9 @@ class StoreRefundOrderLists extends BaseAdminDataLists implements ListsSearchInt $query->whereTime('refund_reason_time', '>=', $this->params['start_time']); }) ->when(!empty($this->params['end_time']), function ($query) { + if ($this->params['end_time'] == $this->params['start_time']) { + $this->params['end_time'] = strtotime($this->params['end_time']) + 86399; + } $query->whereTime('refund_reason_time', '<=', $this->params['end_time']); }) ->field(['id', 'store_id', 'staff_id', 'order_id', 'pay_price', 'pay_time', 'pay_type', 'status', 'uid', 'refund_status', 'refund_type', 'refund_reason_wap', 'refund_reason_time', 'refund_reason_wap_explain', 'refund_reason_wap_img']) @@ -80,6 +83,9 @@ class StoreRefundOrderLists extends BaseAdminDataLists implements ListsSearchInt $query->whereTime('refund_reason_time', '>=', $this->params['start_time']); }) ->when(!empty($this->params['end_time']), function ($query) { + if ($this->params['end_time'] == $this->params['start_time']) { + $this->params['end_time'] = strtotime($this->params['end_time']) + 86399; + } $query->whereTime('refund_reason_time', '<=', $this->params['end_time']); }) ->count(); diff --git a/app/common/validate/ListsValidate.php b/app/common/validate/ListsValidate.php index 6bf1fcd3..4b024b9b 100644 --- a/app/common/validate/ListsValidate.php +++ b/app/common/validate/ListsValidate.php @@ -33,7 +33,7 @@ class ListsValidate extends BaseValidate 'page_type' => 'in:0,1', 'order_by' => 'in:desc,asc', 'start_time' => 'date', - 'end_time' => 'date|gt:start_time', + 'end_time' => 'date|egt:start_time', 'start' => 'number', 'end' => 'number', 'export' => 'in:1,2', @@ -63,4 +63,4 @@ class ListsValidate extends BaseValidate } -} \ No newline at end of file +} diff --git a/app/store/controller/store_order/StoreOrderController.php b/app/store/controller/store_order/StoreOrderController.php index e0641a56..1bedb5d4 100644 --- a/app/store/controller/store_order/StoreOrderController.php +++ b/app/store/controller/store_order/StoreOrderController.php @@ -7,7 +7,6 @@ use app\admin\lists\store_order\StoreOrderLists; use app\common\controller\Definitions; use app\common\enum\PayEnum; use app\common\logic\SystemStoreStaffLogic; -use app\common\model\store_order\StoreOrder; use app\store\controller\BaseAdminController; use app\common\logic\store_order\StoreOrderLogic; use app\store\validate\store_order\StoreOrderValidate;