Magento – Billing address and shipping address as well as someone to change an order after

It always comes back before, that a customer later expressed a desire, that the billing address or shipping address should be changed. Or it falls on, that the email address of the customer is wrong.

In such a case, you can of course go into the database and change the data manually.

But it is also easier, comfortable and free of additional.
For the Magento Version 1.4 we just have the extension “Update order addresses” used by _Fluxe, the only officially to Magento 1.3 compatible.

The installation runs smoothly but also to 1.4.1.x. Then must be held in the AddressesController.php in the folder app/code/community/Magentix/OrderAddresses/controllers/ even a small change be made, otherwise address changes are not saved.

Simply in line 33

$order->setBillingAddress($address)->save();

in

$address ->save();

and in line 63

$order->setShippingAddress($address)->save();

in

$address->save();

change. Saving and ready.

PictureThen there are the orders left a new tab “Addresses”. Here, then E, Accounting- and shipping address changes, individually and through the button “Update” be stored.

This extension can therefore save a lot of time.

Used in Magento Version 1.4.1.0. Ask? Comments? Suggestions? Gladly!

Published by Covos

Since 2009 I have been working intensively with Magento. I started with the creation and operation of B2C stores. This was extended through my work in the logistics sector. This resulted first specialized B2E systems. Today I work day-a day with exciting B2C, B2B- and B2E projects and reports in this blog about challenges and give insider tips.

2 comments on “Magento – Billing address and shipping address as well as someone to change an order after”

  1. Hallo,

    Unfortunately, while the table is not updated sales_flat_quote_Adress. Can someone give me a tip, how can I relisieren the, as we use this table for external access (Parcel) use. Thank you very much.

Leave a Reply

Your email address will not be published. Required fields are marked *