00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Mage_CatalogInventory_Model_Stock extends Mage_Core_Model_Abstract
00033 {
00034 const BACKORDERS_NO = 0;
00035 const BACKORDERS_YES_NONOTIFY = 1;
00036 const BACKORDERS_YES_NOTIFY = 2;
00037
00038
00039 const BACKORDERS_BELOW = 1;
00040 const BACKORDERS_YES = 2;
00041
00042 const STOCK_OUT_OF_STOCK = 0;
00043 const STOCK_IN_STOCK = 1;
00044
00045 const DEFAULT_STOCK_ID = 1;
00046
00047 protected function _construct()
00048 {
00049 $this->_init('cataloginventory/stock');
00050 }
00051
00052
00053
00054
00055
00056
00057 public function getId()
00058 {
00059 return self::DEFAULT_STOCK_ID;
00060 }
00061
00062
00063
00064
00065
00066
00067
00068 public function addItemsToProducts($productCollection)
00069 {
00070 $items = $this->getItemCollection()
00071 ->addProductsFilter($productCollection)
00072 ->joinStockStatus($productCollection->getStoreId())
00073 ->load();
00074 foreach ($items as $item) {
00075 foreach($productCollection as $product){
00076 if($product->getId()==$item->getProductId()){
00077 if($product instanceof Mage_Catalog_Model_Product) {
00078 $item->assignProduct($product);
00079 }
00080 }
00081 }
00082 }
00083 return $this;
00084 }
00085
00086
00087
00088
00089
00090
00091 public function getItemCollection()
00092 {
00093 return Mage::getResourceModel('cataloginventory/stock_item_collection')
00094 ->addStockFilter($this->getId());
00095 }
00096
00097
00098
00099
00100
00101
00102
00103 public function registerItemSale(Varien_Object $item)
00104 {
00105 if ($productId = $item->getProductId()) {
00106 $stockItem = Mage::getModel('cataloginventory/stock_item')->loadByProduct($productId);
00107 if (Mage::helper('catalogInventory')->isQty($stockItem->getTypeId())) {
00108 if ($item->getStoreId()) {
00109 $stockItem->setStoreId($item->getStoreId());
00110 }
00111 if ($stockItem->checkQty($item->getQtyOrdered()) || Mage::app()->getStore()->isAdmin()) {
00112 $stockItem->subtractQty($item->getQtyOrdered());
00113 $stockItem->save();
00114 }
00115 }
00116 }
00117 else {
00118 Mage::throwException(Mage::helper('cataloginventory')->__('Can not specify product identifier for order item'));
00119 }
00120 return $this;
00121 }
00122
00123
00124
00125
00126
00127
00128
00129
00130 public function backItemQty($productId, $qty)
00131 {
00132 $stockItem = Mage::getModel('cataloginventory/stock_item')->loadByProduct($productId);
00133 if ($stockItem->getId() && Mage::helper('catalogInventory')->isQty($stockItem->getTypeId())) {
00134 $stockItem->addQty($qty);
00135 if ($stockItem->getCanBackInStock() && $stockItem->getQty() > $stockItem->getMinQty()) {
00136 $stockItem->setIsInStock(true)
00137 ->setStockStatusChangedAutomaticallyFlag(true);
00138 }
00139 $stockItem->save();
00140 }
00141 return $this;
00142 }
00143
00144
00145
00146
00147
00148
00149
00150 public function lockProductItems($productIds)
00151 {
00152 $this->_getResource()->lockProductItems($this, $productIds);
00153 return $this;
00154 }
00155
00156
00157
00158
00159
00160
00161
00162 public function addInStockFilterToCollection($collection)
00163 {
00164 $this->getResource()->setInStockFilterToCollection($collection);
00165 return $this;
00166 }
00167 }