Public Member Functions | |
getHeaderText () | |
getHeaderCssClass () | |
getFormValues () | |
getAddressId () | |
getAddress () | |
Protected Member Functions | |
_prepareForm () |
Definition at line 35 of file Address.php.
_prepareForm | ( | ) | [protected] |
Reimplemented from Mage_Adminhtml_Block_Sales_Order_Create_Form_Address.
Definition at line 47 of file Address.php.
00048 { 00049 if (!$this->_form) { 00050 parent::_prepareForm(); 00051 $this->_form->addFieldNameSuffix('order[billing_address]'); 00052 $this->_form->setHtmlNamePrefix('order[billing_address]'); 00053 $this->_form->setHtmlIdPrefix('order-billing_address_'); 00054 } 00055 return $this; 00056 }
getAddress | ( | ) |
Definition at line 69 of file Address.php.
00070 { 00071 return $this->getCreateOrderModel()->getBillingAddress(); 00072 }
getAddressId | ( | ) |
Reimplemented from Mage_Adminhtml_Block_Sales_Order_Create_Form_Address.
Definition at line 64 of file Address.php.
00065 { 00066 return $this->getCreateOrderModel()->getBillingAddress()->getCustomerAddressId(); 00067 }
getFormValues | ( | ) |
Reimplemented from Mage_Adminhtml_Block_Sales_Order_Create_Form_Address.
Definition at line 58 of file Address.php.
00059 { 00060 return $this->getCreateOrderModel()->getBillingAddress()->getData(); 00061 }
getHeaderCssClass | ( | ) |
getHeaderText | ( | ) |
Definition at line 37 of file Address.php.
00038 { 00039 return Mage::helper('sales')->__('Billing Address'); 00040 }