Example #1
0
 /**
  * Save child collections
  *
  * @return Mage_Sales_Model_Quote_Address
  */
 protected function _afterSave()
 {
     parent::_afterSave();
     if (null !== $this->_items) {
         $this->getItemsCollection()->save();
     }
     if (null !== $this->_rates) {
         $this->getShippingRatesCollection()->save();
     }
     return $this;
 }