Skip to content

magento man

Replace error message using a custom plugin

I’d like to replace the error message in this magento core function. vendor/magento/module-inventory-sales/Model/IsProductSalableCondition/BackOrderNotifyCustomerCondition.php public function execute(string $sku, int $stockId, float $requestedQty): ProductSalableResultInterface { $stockItemConfiguration = $this->getStockItemConfiguration->execute($sku, $stockId); if ($stockItemConfiguration->isManageStock() && $stockItemConfiguration->getBackorders() === StockItemConfigurationInterface::BACKORDERS_YES_NOTIFY ) { $stockItemData = $this->getStockItemData->execute($sku, $stockId); if… Read More »Replace error message using a custom plugin

Fail to override interface module in magento2

i need problem with extension interface in magento2. Mi extension_attributes.xml: <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Api/etc/extension_attributes.xsd”> <extension_attributes for=”MagentoSalesRuleApiDataCouponGenerationSpecInterface”> <attribute code=”specific” type=”string” /> </extension_attributes> </config> Mi di.xml <preference for=”MagentoSalesRuleBlockAdminhtmlPromoQuoteEditTabCouponsForm” type=”CustomSalesRuleBlockAdminhtmlPromoQuoteEditTabCouponsForm” /> <preference for=”MagentoSalesRuleHelperCoupon” type=”CustomSalesRuleHelperCoupon”/> <preference for=”MagentoSalesRuleModelServiceCouponManagementService” type=”CustomSalesRuleModelServiceCouponManagementService”/> <preference for=”MagentoSalesRuleModelCouponMassgenerator” type=”CustomSalesRuleModelCouponMassgenerator”/> <preference for=”MagentoSalesRuleModelDataCouponGenerationSpec” type=”CustomSalesRuleModelDataCouponGenerationSpec”/> Mi… Read More »Fail to override interface module in magento2