Wenn Sie auf der Checkout-Seite auf "Hier versenden" klicken, wird aufgerufen
magento / rest / default / V1 / carts / mine / Schätzung-Versandmethoden-nach-Adresse-ID
Dann geht es unter JS-Dateien
magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ js \ model \ versandkostenprozessor \ kundenadresse.js
magento \ vendor \ magento \ module-checkout \ view \ frontend \ web \ js \ model \ resource-url-manager.js
getUrlForEstimationShippingMethodsByAddressId: function(quote) {
var params = (this.getCheckoutMethod() == 'guest') ? {quoteId: quote.getQuoteId()} : {};
var urls = {
'default': '/carts/mine/estimate-shipping-methods-by-address-id'
};
return this.getUrl(urls, params);
}
magento \ vendor \ magento \ module-quote \ Model \ ShippingMethodManagement.php
public function estimateByAddressId($cartId, $addressId)
{
echo 1;exit;
}
Wie wird die obige Funktion estimateByAddressId
aufgerufen?