当前位置: 首页>>代码示例>>PHP>>正文


PHP Product::getIsSalable方法代码示例

本文整理汇总了PHP中Magento\Catalog\Model\Product::getIsSalable方法的典型用法代码示例。如果您正苦于以下问题:PHP Product::getIsSalable方法的具体用法?PHP Product::getIsSalable怎么用?PHP Product::getIsSalable使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Catalog\Model\Product的用法示例。


在下文中一共展示了Product::getIsSalable方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testGetIsSalableHasDataIsSaleable

 public function testGetIsSalableHasDataIsSaleable()
 {
     $typeInstanceMock = $this->getMock('Magento\\Catalog\\Model\\Product\\Type\\Simple', [], [], '', false);
     $this->model->setTypeInstance($typeInstanceMock);
     $this->model->setData('is_saleable', true);
     $this->model->setData('is_salable', false);
     self::assertTrue($this->model->getIsSalable());
 }
开发者ID:hientruong90,项目名称:magento2_installer,代码行数:8,代码来源:ProductTest.php

示例2: goBack

 /**
  * Resolve response
  *
  * @param string $backUrl
  * @param \Magento\Catalog\Model\Product $product
  * @return $this|\Magento\Framework\Controller\Result\Redirect
  */
 protected function goBack($backUrl = null, $product = null)
 {
     if (!$this->getRequest()->isAjax()) {
         return parent::_goBack($backUrl);
     }
     $result = [];
     if ($backUrl || ($backUrl = $this->getBackUrl())) {
         $result['backUrl'] = $backUrl;
     } else {
         if ($product && !$product->getIsSalable()) {
             $result['product'] = ['statusText' => __('Out of stock')];
         }
     }
     $this->getResponse()->representJson($this->_objectManager->get('Magento\\Framework\\Json\\Helper\\Data')->jsonEncode($result));
 }
开发者ID:kid17,项目名称:magento2,代码行数:22,代码来源:Add.php

示例3: goBack

 /**
  * Resolve response
  *
  * @param string $backUrl
  * @param \Magento\Catalog\Model\Product $product
  * @return $this|\Magento\Framework\Controller\Result\Redirect
  */
 protected function goBack($backUrl = null, $product = null)
 {
     if (!$this->getRequest()->isAjax()) {
         return parent::_goBack($backUrl);
     }
     $result = [];
     if ($backUrl || ($backUrl = $this->getBackUrl())) {
         $result['backUrl'] = $backUrl;
     } else {
         $this->_view->loadLayout(['default'], true, true, false);
         $layout = $this->_view->getLayout();
         $result['messages'] = $layout->getBlock('global_messages')->toHtml();
         if ($this->_checkoutSession->getCartWasUpdated()) {
             $result['minicart'] = $layout->getBlock('minicart')->toHtml();
         }
         if ($product && !$product->getIsSalable()) {
             $result['product'] = ['statusText' => __('Out of stock')];
         }
     }
     $this->getResponse()->representJson($this->_objectManager->get('Magento\\Framework\\Json\\Helper\\Data')->jsonEncode($result));
 }
开发者ID:opexsw,项目名称:magento2,代码行数:28,代码来源:Add.php

示例4: getIsSalable

 /**
  * {@inheritdoc}
  */
 public function getIsSalable()
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'getIsSalable');
     if (!$pluginInfo) {
         return parent::getIsSalable();
     } else {
         return $this->___callPlugins('getIsSalable', func_get_args(), $pluginInfo);
     }
 }
开发者ID:dragonsword007008,项目名称:magento2,代码行数:12,代码来源:Interceptor.php


注:本文中的Magento\Catalog\Model\Product::getIsSalable方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。