- /**
- * Check what taxes should be applied after discount
- *
- * @param null|string|bool|int|Store $store
- * @return bool
- */
- public function applyTaxAfterDiscount($store = null)
- {
- return (bool)$this->_scopeConfig->getValue(
- self::CONFIG_XML_PATH_APPLY_AFTER_DISCOUNT,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE,
- $store
- );
- }