Magento: Packstation auf Rechnung erlauben

Magento: Packstation auf Rechnung erlauben

Magento erlaubt standardmäßig nicht eine Packstation als Rechnungsadresse anzugeben. Das ist eigentlich eine nahezu zwingende Idee, denn eine Packstation ist nie eine gültige Rechnungsadresse. Zum Problem wird das Ganze dann, wenn du Geschäfte über Amazon machst. Denn Amazon stellt idiotischerweise keine Rechnungsadressen zur Verfügung, aber die Versandadresse kannst du nicht als Rechnungsadresse verwenden, wenn dort eine Packstation angegeben ist.

Das Problem lässt sich lösen, in dem du einfach die entsprechende Prüfung auskommentierst. Wirkliche nötig ist die Prüfung nicht. Welcher Kunde gibt schon die Packstation als Rechnungsadresse ein und die Straßenadresse als Versandadresse? Habe ich noch nie erlebt.

Um die Prüfung in der DHL-Account Extension zu ändern, bitte nicht die Originaldatei

[bash]
app/code/community/Dhl/Account/Model/Quote/Address.php
[/bash]

ändern, sondern ein entsprechendes Verzeichnis in app/code/local anlegen und dort bearbeiten:

[bash]
mkdir -p app/code/local/Dhl/Account/Model/Quote/
cp app/code/community/Dhl/Account/Model/Quote/Address.php app/code/local/Dhl/Account/Model/Quote/Address.php
emacs app/code/local/Dhl/Account/Model/Quote/Address.php
[/bash]

und dann einfach die entsprechende Kontrolle auskommentieren:

[php]
/*
if ($this->getAddressType() == self::TYPE_BILLING) {
if (preg_match(‚/pac?k(et)?station/i‘, $this->getStreetFull())) {
$errors[] = Mage::helper(‚customer‘)->__(‚No parcel pick up machines are allowed in billing address. To send to a parcel pick up machine you should enter it as shipping address.‘);
}
}
*/
[/php]

Das wars dann auch schon.


Tags assigned to this article:
Magento

Related Articles

Mavericks breaks ConTeXt

Neither ConTeXt contained in the MacTeX Distribution or in the TexLive Distribution stay functional when upgrading to MacOS X Mavericks 10.9. Here is a quick fix. Reinstalling won´t help!

Soll ich mir als Seiteneinsteiger wirklich eine Hauptschule antun?

Ja! Es spricht alles dafür – Eine Liebeserklärung. Viele Kollegen, Freunde, Bekannte haben mich gewarnt. Geh nicht auf eine Hauptschule,

Achtung vor billigem Silikonschlauch: billiges PVC als Silikon getarnt!

Kaum zu glauben? 100m Silikonschlauch für rund 20€? Tja, wer billig kauft, kauft zwei mal. Aber auch teurer Schlauch auf

No comments

Write a comment
No Comments Yet! You can be first to comment this post!

Write a Comment