|
@@ -3241,7 +3241,7 @@ class Sale extends Base
|
|
|
$end_sendtime = isset($this->post['end_sendtime']) && $this->post['end_sendtime'] !== "" ? $this->post['end_sendtime'] : "";
|
|
|
|
|
|
if ($start_sendtime != "" && $end_sendtime != "") {
|
|
|
- $where[] = ["a.sendtime", 'between', [$start_sendtime, $end_sendtime]];
|
|
|
+ $where[] = ["a.sendtime", 'between', [$start_sendtime." 00:00:00", $end_sendtime." 223:59:59"]];
|
|
|
$where[] = ["a.status", '>=', 2];//搜索发货时间时,要指定状态为已发货及之后的状态值(0待发货,1待库管发货,2已发货待收货,3已收货,4已全部退货',)
|
|
|
}
|
|
|
|