瀏覽代碼

修改商品名称关键字读取

shichen 5 月之前
父節點
當前提交
a92d891df9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/common/dao/store/order/StoreOrderDao.php

+ 1 - 1
app/common/dao/store/order/StoreOrderDao.php

@@ -127,7 +127,7 @@ class StoreOrderDao extends BaseDao
127 127
                 $query->where(function ($query) use ($where) {
128 128
                     /** @var StoreOrderProductRepository $storeOrderProductRepository */
129 129
                     $storeOrderProductRepository = app()->make(StoreOrderProductRepository::class);
130
-                    $orderIdList = $storeOrderProductRepository->getOrderIdListByKeyword($where['keywords']);
130
+                    $orderIdList = $storeOrderProductRepository->getOrderIdListByKeyword($where['product_keywords']);
131 131
                     $query->where('order_id', 'in', $orderIdList);
132 132
                 });
133 133
             })