Jump to content
xt:Commerce Community Forum

Zahlungsweise Vorkasse bei Multishop


Marcel.

Recommended Posts

Hallo,

hat jemand ein Lösung, wie man unterschiedliche E-Mail Texte pro Mandant bei der Zahlungsweise Vorkasse angeben kann? Möchte für jeden Shop einen anderen Zahlungsempfänger und eine andere Bankverbindung angeben. Die Texte unter: Einstellungen - Zahlungsweise - Vorkasse werden global für alle Shops verwendet.

Vielen Dank im Voraus!

Marcel.

Link to comment
Share on other sites

ist eigentlich recht einfach:

Zahlungsweise ( u.U. mehrfach ) duplizieren und Verzeichnisse/Dateien umbenennen,

z.B. xt_prepayment_shop1 , installer/xt_prepayment_shop1.xml  usw. und im Quellcode ebenso ( ausser dem Bereich <db_install></db_install> )

und dann zusätzlich installieren

Grüsse

 

Link to comment
Share on other sites

Danke für die schnelle Antwort!

Verstehe ich das so richtig?

Ordnername: xt_prepaypmat_shop2

Dann weiter: xt_prepayment_shop2\installer\xt_prepayment_shop2.xml

Und in der xt_prepayment_shop2.xml:

<?xml version="1.0" encoding="utf8"?>
<xtcommerceplugin>
<title>Prepayment (Vorkasse) shop2</title>
<version>1.0.0</version>
<code>xt_prepayment_shop2</code>
<url>http://www.xt-commerce.com</url>
<description>Prepayment Module</description>
<developer>xt:Commerce</developer>
<icon>xt-commerce_logo.jpg</icon>
<type>payment</type>
<payment>
<payment_code>xt_prepayment_shop2</payment_code>
<payment_dir>xt_prepayment_shop2</payment_dir>
<payment_icon></payment_icon>
<payment_tpl></payment_tpl>
<de>
<title>Vorkasse_shop2</title>
<description></description>
</de>
<en>
<title>Prepayment_shop2</title>
<description></description>
</en>
<es>
<title>Pago por adelantado_shop2</title>
<description></description>
</es>
</payment>
<db_install><![CDATA[
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 24, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 25, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 26, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 27, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 28, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 29, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 30, '', 0, 10000.00, 0, 1);");
$db->Execute("INSERT INTO ".TABLE_PAYMENT_COST." (`payment_id`, `payment_geo_zone`, `payment_country_code`, `payment_type_value_from`, `payment_type_value_to`, `payment_price`,`payment_allowed`) VALUES(".$payment_id.", 31, '', 0, 10000.00, 0, 1);");
]]></db_install>
</xtcommerceplugin>

 

 

Hallo nochmal,

und muss an dieser Datei auch etwas geändert werden?: xt_prepayment_lng.xml

Gruß

Marcel.

Link to comment
Share on other sites

Na ja, da sind ein paar Fehler drin. Schreib doch mal dem oldbear, der macht das sicherlich für euch. Ist ja kein keine 20k € Entwicklung...

(Für einen Entwickler der sich mit xt:Commerce auskennt, ist es halt easy und schnell gemacht. Wenn es ein Endnutzer macht, ist es halt schon schwer und vermutlich nicht von Erfolg gekrönt. No offense...)

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...