Jump to content
xt:Commerce Community Forum

Ratenzahlung


Haxley

Recommended Posts

Hi

Ich suche nicht das Modul, denn das gibts ja noch nicht.

Ich suche jemand der sowas ?hnliches hat.

Also eine Auswahl bei der Bezahlung und DIESE unterteilt in irgendwas.

Ich geb das Modul dann frei (wie froogle), brauch aber bissel Logo-Hilfe. Die php passe ich dann an.

Wer was in der Richtung hat... bitte mal tach sagen ;-)

Danke

Gru? Haxley

Link to comment
Share on other sites

Hi,

bin selbst kein PHP Progger. Kannst du hiermit etwas anfangen? Wenn ja, dann w?rde ich gern wissen, wo ich was ich bei meinem XTC und wo einf?gen mu?. :bounce:

<?php

if ( ($_GET['products_id']) && (MODULE_PAYMENT_CCBANK_FINANZ_STATUS == 'True') ) {

$mindest_price = CCBANK_MINIMUM_ORDER;

$tax = tep_calculate_tax($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));

$kredit_wert = round($product_info['products_price'] + $tax,2) ;

$kreditprice = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));

if ($kredit_wert >= $mindest_price) {

$zinssatz_value = CCBANK_ZINS_EFF;

$zins_satz = $zinssatz_value/100;

$monate1 = 12;

$monate2 = 18;

$monate3 = 24;

$monate4 = 36;

$monate5 = 48;

$rate12 = $kredit_wert*(pow(1+$zins_satz,1/12)-1)/(1-pow(1+$zins_satz,-$monate1/12));

$rate18 = $kredit_wert*(pow(1+$zins_satz,1/12)-1)/(1-pow(1+$zins_satz,-$monate2/12));

$rate24 = $kredit_wert*(pow(1+$zins_satz,1/12)-1)/(1-pow(1+$zins_satz,-$monate3/12));

$rate36 = $kredit_wert*(pow(1+$zins_satz,1/12)-1)/(1-pow(1+$zins_satz,-$monate4/12));

$rate48 = $kredit_wert*(pow(1+$zins_satz,1/12)-1)/(1-pow(1+$zins_satz,-$monate5/12));

$info_box_content = TEXT_LEICHTKAUF . '

';

$info_box_content .= TEXT_FINANZSUMME . $kreditprice . '

';

$info_box_content .= TEXT_LAUFZEIT . '12 x : ' . $currencies->display_price($rate12,0) . '

';

$info_box_content .= TEXT_LAUFZEIT . '18 x : ' . $currencies->display_price($rate18,0) . '

';

$info_box_content .= TEXT_LAUFZEIT . '24 x : ' . $currencies->display_price($rate24,0) . '

';

$info_box_content .= TEXT_LAUFZEIT . '36 x : ' . $currencies->display_price($rate36,0). '

';

$info_box_content .= TEXT_LAUFZEIT . '48 x : ' . $currencies->display_price($rate48,0) . '

';

$info_box_content .= TEXT_JAHRESZINS . $zinssatz_value .'%';

$box_smarty->assign('BOX_IMAGE_PFAD', $tpl_image_pfad_multishop . 'boxen/');

$box_smarty->assign('BOX_NAME', $info_box_name);

$box_smarty->assign('BOX_CONTENT_ALIGN', 'left');

$box_smarty->assign('BOX_CONTENT', $info_box_content);

$box_smarty ->display($tpl_name);

}

}

?>

Gru? Tommytom

Link to comment
Share on other sites

  • 3 weeks later...

Archived

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

×
  • Create New...