Questions tagged «address»

3
为什么Magento在结帐时重新保存现有的客户地址?
在结帐过程中,即使客户从下拉菜单中选择了现有地址,该customer_address实体也会被重新保存。任何想法是为了什么? 更新: 它从Mage_Checkout_Model_Type_Onepage::saveOrder执行以下代码的位置开始: $service = Mage::getModel('sales/service_quote', $this->getQuote()); $service->submitAll(); 这submitAll将Mage_Sales_Model_Service_Quote::submitOrder执行以下命令: $transaction->save(); 此方法循环遍历quote(?)的所有对象并保存它们。 更新: 最令人作呕的是他们正在为客户拥有的所有地址进行此​​操作。因此,如果您的访客在通讯录中保存了10个地址,那么所有这些地址都将在结帐时重新保存。不要怀疑为什么它是Magento中最消耗资源的部分。



1
Magento2-更改Magento前端上的标准地址格式
我想将Magento的标准地址格式更改为我们在荷兰使用的地址格式。 对于那些不知道地址格式的人,这是我们编写地址的方法。例如,荷兰格式为: Name (Businesspark name etc.) Street + number Postal code + town Country 美国的地址格式是这样(默认为Magento2): Name of address Street number and name Name of town, State abbreviation + ZIP code (typical handwritten format) 您可以在Wikipedia上阅读更多内容。

4
如何在magento2中使用自定义Api更新客户地址?
我创建了自定义API以使用customer id或地址ID 更新客户地址。 下面的代码我用来实现它。 [供应商] / [模块] /etc/webapi.xml <route url="/V1/address/createUpdate" method="POST"> <service class="[Vendor]\[Module]\Api\CustomAddressInterface" method="addressUpdate"/> <resources> <resource ref="anonymous"/> </resources> </route> [供应商] / [模块] /Api/CustomAddressInterface.php <?php namespace [Vendor]\[Module]\Api; interface CustomAddressInterface { /** * Returns greeting message to user * * @api * @param string $name Users name. * @return string Greeting message …

1
销售报价与销售报价地址之间的差异
我正在寻找可以使用的collect_totals观察者。有两个观察者, sales_quote_collect_totals_before和sales_quote_address_collect_totals_before。 它们可以在/app/code/core/Mage/Sales/Model/Quote.php和中找到/app/code/core/Mage/Sales/Model/Quote/Address.php。 我不知道这两个文件有什么区别,因为两个文件都具有collect total功能?
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.