Public Member Functions | |
collectTotals (Mage_Sales_Model_Quote_Address $address) |
Definition at line 28 of file Giftcert.php.
collectTotals | ( | Mage_Sales_Model_Quote_Address $ | address | ) |
Reimplemented from Mage_Sales_Model_Entity_Quote_Address_Attribute_Backend.
Definition at line 31 of file Giftcert.php.
00032 { 00033 $gift = Mage::getResourceModel('sales/giftcert')->getGiftcertByCode($address->getGiftcertCode()); 00034 if ($gift) { 00035 $address->setGiftcertAmount(min($address->getGrandTotal(), $gift['balance_amount'])); 00036 } else { 00037 $address->setGiftcertAmount(0); 00038 } 00039 00040 $address->setGrandTotal($address->getGrandTotal() - $address->getGiftcertAmount()); 00041 00042 return $this; 00043 }