123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Block\Adminhtml\Order\Create\Shipping;
- /**
- * Adminhtml sales order create shipping address block
- *
- * @api
- * @author Magento Core Team <core@magentocommerce.com>
- * @SuppressWarnings(PHPMD.DepthOfInheritance)
- * @since 100.0.2
- */
- class Address extends \Magento\Sales\Block\Adminhtml\Order\Create\Form\Address
- {
- /**
- * Return header text
- *
- * @return \Magento\Framework\Phrase
- */
- public function getHeaderText()
- {
- return __('Shipping Address');
- }
- /**
- * Return Header CSS Class
- *
- * @return string
- */
- public function getHeaderCssClass()
- {
- return 'head-shipping-address';
- }
- /**
- * Prepare Form and add elements to form
- *
- * @return $this
- */
- protected function _prepareForm()
- {
- $this->setJsVariablePrefix('shippingAddress');
- parent::_prepareForm();
- $this->_form->addFieldNameSuffix('order[shipping_address]');
- $this->_form->setHtmlNamePrefix('order[shipping_address]');
- $this->_form->setHtmlIdPrefix('order-shipping_address_');
- return $this;
- }
- /**
- * Return is shipping address flag
- *
- * @return true
- */
- public function getIsShipping()
- {
- return true;
- }
- /**
- * Same as billing address flag
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getIsAsBilling()
- {
- return $this->getCreateOrderModel()->getShippingAddress()->getSameAsBilling();
- }
- /**
- * Saving shipping address must be turned off, when it is the same as billing
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getDontSaveInAddressBook()
- {
- return $this->getIsAsBilling();
- }
- /**
- * Return Form Elements values
- *
- * @return array
- */
- public function getFormValues()
- {
- return $this->getAddress()->getData();
- }
- /**
- * Return customer address id
- *
- * @return int|bool
- */
- public function getAddressId()
- {
- return $this->getAddress()->getCustomerAddressId();
- }
- /**
- * Return address object
- *
- * @return \Magento\Quote\Model\Quote\Address
- */
- public function getAddress()
- {
- if ($this->getIsAsBilling()) {
- $address = $this->getCreateOrderModel()->getBillingAddress();
- } else {
- $address = $this->getCreateOrderModel()->getShippingAddress();
- }
- return $address;
- }
- /**
- * Return is address disabled flag
- * Return true is the quote is virtual
- *
- * @return bool
- * @SuppressWarnings(PHPMD.BooleanGetMethodName)
- */
- public function getIsDisabled()
- {
- return $this->getQuote()->isVirtual();
- }
- }
|