$ quote-> getIsSuperMode()在magento中是什么意思?


8

我看到一个isSuperMode()在报价和报价项目对象上调用的函数。谁能告诉我isSuperMode()在那种情况下意味着什么?

我在以下位置找到了代码:

  1. checkQuoteItemQty 课堂上的功能 Mage_CatalogInventory_Model_Observer

  2. _initItem在课堂上也有作用Mage_Sales_Model_Quote_Address_Total_Subtotal

Answers:


17

引号在以下位置设置为超级模式 app/code/core/Mage/Adminhtml/Model/Session/Quote.php

$this->_quote->setIsSuperMode(true);

本质上,这是引号上的标志,表明该引号已由管理员创建。这样做的影响是在您指定的位置,例如,管理员可以为通常没有库存或在目录中不可见的项目创建订单。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.