1: <?php
2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
26:
27:
28: 29: 30: 31: 32: 33: 34:
35: class Mage_Sales_Model_Resource_Quote_Item_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract
36: {
37: 38: 39: 40: 41:
42: protected $_quote;
43:
44: 45: 46: 47: 48:
49: protected $_productIds = array();
50:
51: 52: 53: 54:
55: protected function _construct()
56: {
57: $this->_init('sales/quote_item');
58: }
59:
60: 61: 62: 63: 64:
65: public function getStoreId()
66: {
67: return (int)$this->_quote->getStoreId();
68: }
69:
70: 71: 72: 73: 74: 75:
76: public function setQuote($quote)
77: {
78: $this->_quote = $quote;
79: $quoteId = $quote->getId();
80: if ($quoteId) {
81: $this->addFieldToFilter('quote_id', $quote->getId());
82: } else {
83: $this->_totalRecords = 0;
84: $this->_setIsLoaded(true);
85: }
86: return $this;
87: }
88:
89: 90: 91: 92: 93: 94: 95: 96:
97: public function resetJoinQuotes($quotesTableName, $productId = null)
98: {
99: $this->getSelect()->reset()
100: ->from(
101: array('qi' => $this->getResource()->getMainTable()),
102: array('item_id', 'qty', 'quote_id'))
103: ->joinInner(
104: array('q' => $quotesTableName),
105: 'qi.quote_id = q.entity_id',
106: array('store_id', 'items_qty', 'items_count')
107: );
108: if ($productId) {
109: $this->getSelect()->where('qi.product_id = ?', (int)$productId);
110: }
111: return $this;
112: }
113:
114: 115: 116: 117: 118:
119: protected function _afterLoad()
120: {
121: parent::_afterLoad();
122:
123: 124: 125:
126: foreach ($this as $item) {
127: if ($item->getParentItemId()) {
128: $item->setParentItem($this->getItemById($item->getParentItemId()));
129: }
130: if ($this->_quote) {
131: $item->setQuote($this->_quote);
132: }
133: }
134:
135: 136: 137:
138: $this->_assignOptions();
139: $this->_assignProducts();
140: $this->resetItemsDataChanged();
141:
142: return $this;
143: }
144:
145: 146: 147: 148: 149:
150: protected function _assignOptions()
151: {
152: $itemIds = array_keys($this->_items);
153: $optionCollection = Mage::getModel('sales/quote_item_option')->getCollection()
154: ->addItemFilter($itemIds);
155: foreach ($this as $item) {
156: $item->setOptions($optionCollection->getOptionsByItem($item));
157: }
158: $productIds = $optionCollection->getProductIds();
159: $this->_productIds = array_merge($this->_productIds, $productIds);
160:
161: return $this;
162: }
163:
164: 165: 166: 167: 168:
169: protected function _assignProducts()
170: {
171: Varien_Profiler::start('QUOTE:'.__METHOD__);
172: $productIds = array();
173: foreach ($this as $item) {
174: $productIds[] = (int)$item->getProductId();
175: }
176: $this->_productIds = array_merge($this->_productIds, $productIds);
177:
178: $productCollection = Mage::getModel('catalog/product')->getCollection()
179: ->setStoreId($this->getStoreId())
180: ->addIdFilter($this->_productIds)
181: ->addAttributeToSelect(Mage::getSingleton('sales/quote_config')->getProductAttributes())
182: ->addOptionsToResult()
183: ->addStoreFilter()
184: ->addUrlRewrite()
185: ->addTierPriceData();
186:
187: Mage::dispatchEvent('prepare_catalog_product_collection_prices', array(
188: 'collection' => $productCollection,
189: 'store_id' => $this->getStoreId(),
190: ));
191: Mage::dispatchEvent('sales_quote_item_collection_products_after_load', array(
192: 'product_collection' => $productCollection
193: ));
194:
195: $recollectQuote = false;
196: foreach ($this as $item) {
197: $product = $productCollection->getItemById($item->getProductId());
198: if ($product) {
199: $product->setCustomOptions(array());
200: $qtyOptions = array();
201: $optionProductIds = array();
202: foreach ($item->getOptions() as $option) {
203: 204: 205:
206: $product->getTypeInstance(true)->assignProductToOption(
207: $productCollection->getItemById($option->getProductId()),
208: $option,
209: $product
210: );
211:
212: if (is_object($option->getProduct()) && $option->getProduct()->getId() != $product->getId()) {
213: $optionProductIds[$option->getProduct()->getId()] = $option->getProduct()->getId();
214: }
215: }
216:
217: if ($optionProductIds) {
218: foreach ($optionProductIds as $optionProductId) {
219: $qtyOption = $item->getOptionByCode('product_qty_' . $optionProductId);
220: if ($qtyOption) {
221: $qtyOptions[$optionProductId] = $qtyOption;
222: }
223: }
224: }
225: $item->setQtyOptions($qtyOptions);
226:
227: $item->setProduct($product);
228: } else {
229: $item->isDeleted(true);
230: $recollectQuote = true;
231: }
232: $item->checkData();
233: }
234:
235: if ($recollectQuote && $this->_quote) {
236: $this->_quote->collectTotals();
237: }
238: Varien_Profiler::stop('QUOTE:'.__METHOD__);
239:
240: return $this;
241: }
242: }
243:
244: