/**
  * @param \Magento\Store\Api\Data\StoreInterface $store
  * @return $this
  */
 public function setOriginStore(StoreInterface $store)
 {
     if (null === $this->originStoreId) {
         $this->originStoreId = $store->getId();
         $this->originWebsiteId = $store->getWebsiteId();
     }
     return $this;
 }