Update UserRebateService.php

This commit is contained in:
邹景立 2021-03-24 16:41:48 +08:00
parent 41230a61df
commit 39662b781a

View File

@ -42,7 +42,7 @@ class UserRebateService extends Service
*/
public function confirm(string $orderNo): array
{
$map = [['status', '>', 3], ['order_no', '=', $orderNo]];
$map = [['status', '>=', 4], ['order_no', '=', $orderNo]];
$order = $this->app->db->name('ShopOrder')->where($map)->find();
if (empty($order)) return [0, '需处理的订单状态异常!'];