Public Member Functions | |
getBilling () | |
getShipping () | |
getShippingMethod () | |
getShippingDescription () | |
getShippingAmount () | |
getPaymentHtml () | |
getShippingPriceInclTax () | |
getShippingPriceExclTax () | |
formatPrice ($price) |
Definition at line 34 of file Progress.php.
formatPrice | ( | $ | price | ) |
Definition at line 84 of file Progress.php.
00085 { 00086 return $this->getQuote()->getStore()->formatPrice($price); 00087 }
getBilling | ( | ) |
Definition at line 36 of file Progress.php.
00037 { 00038 return $this->getQuote()->getBillingAddress(); 00039 }
getPaymentHtml | ( | ) |
Definition at line 67 of file Progress.php.
00068 { 00069 return $this->getChildHtml('payment_info'); 00070 }
getShipping | ( | ) |
Definition at line 41 of file Progress.php.
00042 { 00043 return $this->getQuote()->getShippingAddress(); 00044 }
getShippingAmount | ( | ) |
Definition at line 56 of file Progress.php.
00057 { 00058 /*$amount = $this->getQuote()->getShippingAddress()->getShippingAmount(); 00059 $filter = Mage::app()->getStore()->getPriceFilter(); 00060 return $filter->filter($amount);*/ 00061 //return $this->helper('checkout')->formatPrice( 00062 // $this->getQuote()->getShippingAddress()->getShippingAmount() 00063 //); 00064 return $this->getQuote()->getShippingAddress()->getShippingAmount(); 00065 }
getShippingDescription | ( | ) |
Definition at line 51 of file Progress.php.
00052 { 00053 return $this->getQuote()->getShippingAddress()->getShippingDescription(); 00054 }
getShippingMethod | ( | ) |
Definition at line 46 of file Progress.php.
00047 { 00048 return $this->getQuote()->getShippingAddress()->getShippingMethod(); 00049 }
getShippingPriceExclTax | ( | ) |
Definition at line 79 of file Progress.php.
00080 { 00081 return $this->formatPrice($this->getQuote()->getShippingAddress()->getShippingAmount()); 00082 }
getShippingPriceInclTax | ( | ) |
Definition at line 72 of file Progress.php.
00073 { 00074 $exclTax = $this->getQuote()->getShippingAddress()->getShippingAmount(); 00075 $taxAmount = $this->getQuote()->getShippingAddress()->getShippingTaxAmount(); 00076 return $this->formatPrice($exclTax + $taxAmount); 00077 }