@@ -56,57 +56,41 @@ class Collection extends \Magento\Catalog\Model\ResourceModel\Collection\Abstrac
56
56
protected $ _idFieldName = 'entity_id ' ;
57
57
58
58
/**
59
- * Catalog Product Flat is enabled cache per store
60
- *
61
59
* @var array
62
60
*/
63
61
protected $ _flatEnabled = [];
64
62
65
63
/**
66
- * Product websites table name
67
- *
68
64
* @var string
69
65
*/
70
66
protected $ _productWebsiteTable ;
71
67
72
68
/**
73
- * Product categories table name
74
- *
75
69
* @var string
76
70
*/
77
71
protected $ _productCategoryTable ;
78
72
79
73
/**
80
- * Is add URL rewrites to collection flag
81
- *
82
74
* @var bool
83
75
*/
84
76
protected $ _addUrlRewrite = false ;
85
77
86
78
/**
87
- * Add URL rewrite for category
88
- *
89
79
* @var int
90
80
*/
91
81
protected $ _urlRewriteCategory = '' ;
92
82
93
83
/**
94
- * Is add final price to product collection flag
95
- *
96
84
* @var bool
97
85
*/
98
86
protected $ _addFinalPrice = false ;
99
87
100
88
/**
101
- * All ids cache
102
- *
103
89
* @var array
104
90
*/
105
91
protected $ _allIdsCache = null ;
106
92
107
93
/**
108
- * Is add tax percents flag to product collection
109
- *
110
94
* @var bool
111
95
*/
112
96
protected $ _addTaxPercents = false ;
@@ -136,43 +120,31 @@ class Collection extends \Magento\Catalog\Model\ResourceModel\Collection\Abstrac
136
120
protected $ _priceDataFieldFilters = [];
137
121
138
122
/**
139
- * Product Price expression sql
140
- *
141
123
* @var string|null
142
124
*/
143
125
protected $ _priceExpression ;
144
126
145
127
/**
146
- * Additional product price expression sql part
147
- *
148
128
* @var string|null
149
129
*/
150
130
protected $ _additionalPriceExpression ;
151
131
152
132
/**
153
- * Product max price (statistics data)
154
- *
155
133
* @var float
156
134
*/
157
135
protected $ _maxPrice ;
158
136
159
137
/**
160
- * Product min price (statistics data)
161
- *
162
138
* @var float
163
139
*/
164
140
protected $ _minPrice ;
165
141
166
142
/**
167
- * Standard deviation of product price (statistics data)
168
- *
169
143
* @var float
170
144
*/
171
145
protected $ _priceStandardDeviation ;
172
146
173
147
/**
174
- * Product Prices count (statistics data)
175
- *
176
148
* @var int
177
149
*/
178
150
protected $ _pricesCount = null ;
@@ -249,8 +221,6 @@ class Collection extends \Magento\Catalog\Model\ResourceModel\Collection\Abstrac
249
221
protected $ _groupManagement ;
250
222
251
223
/**
252
- * Need to add website names to result flag
253
- *
254
224
* @var bool
255
225
*/
256
226
protected $ needToAddWebsiteNamesToResult ;
0 commit comments