cache responces achyklar

This commit is contained in:
merdan 2022-12-17 16:52:20 +05:00
parent 286bdacea9
commit 3783dbd96c
1 changed files with 5 additions and 5 deletions

View File

@ -94,7 +94,7 @@ class ProductRepository extends WProductRepository
// ->whereNotNull('product_flat.url_key');
if ($categoryId) {
$qb->leftJoin('product_categories', 'product_categories.product_id', '=', 'product_flat.product_id')
$qb->join('product_categories', 'product_categories.product_id', '=', 'product_flat.product_id')
->whereIn('product_categories.category_id', explode(',', $categoryId));
}
@ -106,7 +106,9 @@ class ProductRepository extends WProductRepository
$qb->whereIn('product_flat.cinsiyet', explode(',', $params['cinsiyet']));
}
if(isset($params['discount']) && $params['discount']){
$qb->where('product_flat.special_price','>',0);
}
if (! core()->getConfigData('catalog.products.homepage.out_of_stock_items')) {
$qb = $this->checkOutOfStockItem($qb);
@ -238,9 +240,7 @@ class ProductRepository extends WProductRepository
});
# apply scope query so we can fetch the raw sql and perform a count
if(isset($params['discount']) && $params['discount']){
$repository->where('product_flat.special_price','>',0);
}
$repository->applyScope();