bocco Posted September 22, 2012 Share Posted September 22, 2012 I have enabled Moneybookers module. I had some difficulties receiving orders whith Moneybookers. Customer made order and paid with Moneybooker - I recieved money but did not get order. I fixed problem with installing Moneybookers module version 1.6. Now I have another problem. When you choose to pay with Moneybookers and select debit card, you get new mail with bankwire. Interesting is that there is no Bank account data: {bankwire_owner} {bankwire_details} {bankwire_address} If you select payment with bankwire you recieve the same email template but with correct Bank data of my Bank account. So where should I edit settings? Thanks. Link to comment Share on other sites More sharing options...
shacker Posted September 23, 2012 Share Posted September 23, 2012 you need to configure the mail template in ORder, statusses, and edit the money bookers to select mail template Link to comment Share on other sites More sharing options...
bocco Posted September 25, 2012 Author Share Posted September 25, 2012 I can't find nothing about Monebookers in mail template in ORder, statusses. I guess Moneybookers is somehow removed from statusses, maybe with changing Moneybookers version? How can I set right? Should I add new status and name it Moneybookers? Which options should I thick in? Thx Link to comment Share on other sites More sharing options...
shacker Posted September 26, 2012 Share Posted September 26, 2012 Moneybookers must have the Payment accepted option, becouse is like paypal Check if in the validation.php of the module you have assigned the same validation id like in paypal module the function is something like this, but with paypal (the id is in this example Configuration::get('WESTERNUNION_STATE1')) $westernunion->validateOrder($cart->id, Configuration::get('WESTERNUNION_STATE1'), $total, $westernunion->displayName, NULL, $mailVars, $currency->id); } Link to comment Share on other sites More sharing options...
bocco Posted September 27, 2012 Author Share Posted September 27, 2012 my validate.php: switch ($status) { /* Bankwire */ case 0: $moneyBookers->setTransactionDetail($_POST); $moneyBookers->validateOrder((int)($secure_cart[0]), Configuration::get('PS_OS_BANKWIRE'), (float)($_POST['amount']), $moneyBookers->displayName, $message, array(), NULL, false, $secure_cart[2]); break; /* Payment OK */ case 2: $moneyBookers->setTransactionDetail($_POST); $moneyBookers->validateOrder((int)($secure_cart[0]), Configuration::get('PS_OS_PAYMENT'), (float)($_POST['amount']), $moneyBookers->displayName, $message, array(), NULL, false, $secure_cart[2]); break; Link to comment Share on other sites More sharing options...
shacker Posted September 28, 2012 Share Posted September 28, 2012 iasume if your clients pay with bankwire, send the bankwire template, and if credit card, send the normal payment accepted Link to comment Share on other sites More sharing options...
Recommended Posts