Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
joshine
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
joshine
Commits
fc575724
Commit
fc575724
authored
Dec 01, 2022
by
lmf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化可能感兴趣产品获取
parent
914312cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php
+2
-2
No files found.
app/code/Magento/Catalog/Block/Product/ProductList/Upsell.php
View file @
fc575724
...
...
@@ -131,9 +131,9 @@ class Upsell extends AbstractProduct implements IdentityInterface
if
(
!
count
(
$this
->
_itemCollection
->
getItems
())){
$collection
=
$this
->
_collectionFactory
->
create
();
$collection
->
addAttributeToSelect
(
'*'
);
$collection
->
addCategoriesFilter
([
'
not
in'
=>
$product
->
getCategoryIds
()]);
$collection
->
addCategoriesFilter
([
'in'
=>
$product
->
getCategoryIds
()]);
$collection
->
setVisibility
(
$this
->
_catalogProductVisibility
->
getVisibleInCatalogIds
());
$collection
->
getSelect
()
->
order
(
'
rand()
'
);
$collection
->
getSelect
()
->
order
(
'
id
'
);
$collection
->
setPageSize
(
10
);
$collection
->
addStoreFilter
(
$product
->
getStoreId
());
$this
->
_itemCollection
=
$collection
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment