Public Member Functions | |
getCreateOrderModel () | |
getQuote () | |
getCustomer () | |
getCustomerId () | |
getStore () | |
getStoreId () | |
formatPrice ($value) | |
convertPrice ($value, $format=true) | |
Protected Member Functions | |
_getSession () |
Definition at line 34 of file Abstract.php.
_getSession | ( | ) | [protected] |
Retrieve quote session object
Definition at line 51 of file Abstract.php.
00052 { 00053 return Mage::getSingleton('adminhtml/session_quote'); 00054 }
convertPrice | ( | $ | value, | |
$ | format = true | |||
) |
Definition at line 117 of file Abstract.php.
00118 { 00119 return $this->getStore()->convertPrice($value, $format); 00120 }
formatPrice | ( | $ | value | ) |
Retrieve formated price
decimal | $value |
Definition at line 112 of file Abstract.php.
00113 { 00114 return $this->getStore()->formatPrice($value); 00115 }
getCreateOrderModel | ( | ) |
Retrieve create order model object
Definition at line 41 of file Abstract.php.
00042 { 00043 return Mage::getSingleton('adminhtml/sales_order_create'); 00044 }
getCustomer | ( | ) |
Retrieve customer model object
Definition at line 71 of file Abstract.php.
00072 { 00073 return $this->_getSession()->getCustomer(); 00074 }
getCustomerId | ( | ) |
Retrieve customer identifier
Definition at line 81 of file Abstract.php.
00082 { 00083 return $this->_getSession()->getCustomerId(); 00084 }
getQuote | ( | ) |
Retrieve quote model object
Definition at line 61 of file Abstract.php.
00062 { 00063 return $this->_getSession()->getQuote(); 00064 }
getStore | ( | ) |
Retrieve store model object
Reimplemented in Mage_Adminhtml_Block_Sales_Order_Create_Items_Grid.
Definition at line 91 of file Abstract.php.
00092 { 00093 return $this->_getSession()->getStore(); 00094 }
getStoreId | ( | ) |
Retrieve store identifier
Definition at line 101 of file Abstract.php.
00102 { 00103 return $this->_getSession()->getStoreId(); 00104 }