123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Model\Order;
- use Magento\Framework\Exception\LocalizedException;
- /**
- * Class Status
- *
- * @method string getStatus()
- * @method $this setStatus(string $status)
- * @method string getLabel()
- */
- class Status extends \Magento\Sales\Model\AbstractModel
- {
- /**
- * @var \Magento\Store\Model\StoreManagerInterface
- */
- protected $_storeManager;
- /**
- * @param \Magento\Framework\Model\Context $context
- * @param \Magento\Framework\Registry $registry
- * @param \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory
- * @param \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory
- * @param \Magento\Store\Model\StoreManagerInterface $storeManager
- * @param \Magento\Framework\Model\ResourceModel\AbstractResource $resource
- * @param \Magento\Framework\Data\Collection\AbstractDb $resourceCollection
- * @param array $data
- */
- public function __construct(
- \Magento\Framework\Model\Context $context,
- \Magento\Framework\Registry $registry,
- \Magento\Framework\Api\ExtensionAttributesFactory $extensionFactory,
- \Magento\Framework\Api\AttributeValueFactory $customAttributeFactory,
- \Magento\Store\Model\StoreManagerInterface $storeManager,
- \Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
- \Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
- array $data = []
- ) {
- parent::__construct(
- $context,
- $registry,
- $extensionFactory,
- $customAttributeFactory,
- $resource,
- $resourceCollection,
- $data
- );
- $this->_storeManager = $storeManager;
- }
- /**
- * @return void
- */
- protected function _construct()
- {
- $this->_init(\Magento\Sales\Model\ResourceModel\Order\Status::class);
- }
- /**
- * Assign order status to particular state
- *
- * @param string $state
- * @param bool $isDefault make the status as default one for state
- * @param bool $visibleOnFront
- * @return $this
- * @throws \Exception
- */
- public function assignState($state, $isDefault = false, $visibleOnFront = false)
- {
- /** @var \Magento\Sales\Model\ResourceModel\Order\Status $resource */
- $resource = $this->_getResource();
- $resource->beginTransaction();
- try {
- $resource->assignState($this->getStatus(), $state, $isDefault, $visibleOnFront);
- $resource->commit();
- } catch (\Exception $e) {
- $resource->rollBack();
- throw $e;
- }
- return $this;
- }
- /**
- * @param string $state
- * @return void
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function validateBeforeUnassign($state)
- {
- if ($this->getResource()->checkIsStateLast($state)) {
- throw new LocalizedException(
- __("The last status can't be changed and needs to stay assigned to its current state.")
- );
- }
- if ($this->getResource()->checkIsStatusUsed($this->getStatus())) {
- throw new LocalizedException(
- __("The status can't be unassigned because the status is currently used by an order.")
- );
- }
- }
- /**
- * Unassigns order status from particular state
- *
- * @param string $state
- * @return $this
- * @throws \Exception
- */
- public function unassignState($state)
- {
- $this->validateBeforeUnassign($state);
- $this->getResource()->unassignState($this->getStatus(), $state);
- $this->_eventManager->dispatch(
- 'sales_order_status_unassign',
- [
- 'status' => $this->getStatus(),
- 'state' => $state
- ]
- );
- return $this;
- }
- /**
- * Getter for status labels per store
- *
- * @return array
- */
- public function getStoreLabels()
- {
- if ($this->hasData('store_labels')) {
- return $this->_getData('store_labels');
- }
- $labels = $this->_getResource()->getStoreLabels($this);
- $this->setData('store_labels', $labels);
- return $labels;
- }
- /**
- * Get status label by store
- *
- * @param null|string|bool|int|\Magento\Store\Model\Store $store
- * @return \Magento\Framework\Phrase|string
- */
- public function getStoreLabel($store = null)
- {
- $store = $this->_storeManager->getStore($store);
- $labels = $this->getStoreLabels();
- if (isset($labels[$store->getId()])) {
- return $labels[$store->getId()];
- } else {
- return __($this->getLabel());
- }
- }
- /**
- * Load default status per state
- *
- * @param string $state
- * @return $this
- */
- public function loadDefaultByState($state)
- {
- $this->load($state, 'default_state');
- return $this;
- }
- }
|