An event could easily achieve this. From the core, in your catalog/controller/extension/payment/bank_transfer.php file:
Code: Select all
<?php
class ControllerExtensionPaymentBankTransfer extends Controller {
public function index() {
$this->load->language('extension/payment/bank_transfer');
if (isset($this->session->data['order_id'])) {
$this->load->model('checkout/order');
$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);
if ($order_info) {
$data['text_description'] = sprintf($this->language->get('text_description'), $this->currency->format($order_info['total'], $this->config->get('config_currency')));
$data['bank'] = nl2br($this->config->get('payment_bank_transfer_bank' . $this->config->get('config_language_id')));
}
}
return $this->load->view('extension/payment/bank_transfer', $data);
}
public function confirm() {
$json = array();
if ($this->session->data['payment_method']['code'] == 'bank_transfer') {
$this->load->language('extension/payment/bank_transfer');
$this->load->model('checkout/order');
$comment = $this->language->get('text_instruction') . "\n\n";
$comment .= $this->config->get('payment_bank_transfer_bank' . $this->config->get('config_language_id')) . "\n\n";
$comment .= $this->language->get('text_payment');
$this->model_checkout_order->addOrderHistory($this->session->data['order_id'], $this->config->get('payment_bank_transfer_order_status_id'), $comment, true);
$json['redirect'] = $this->url->link('checkout/success');
}
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}
}
Then, in your catalog/language/<your_language>/extension/payment/bank_transfer.php file,
replace:
Code: Select all
$_['text_description'] = 'Please transfer the total amount to the following bank account.';
with:
Code: Select all
$_['text_description'] = 'Please transfer the total amount of %s to the following bank account.';
This should resolve the issue.