Page 2 of 2

Re: Payment Modules

Posted: Wed Feb 08, 2012 5:56 am
by skau
Hi Leo,

i've see that you are working (2010) on the Bank Transfer modul.
<< I have added to admin the following possibilities:
- enable/disable the modul
- set geo zone
- set sort order
- set bank name
- set bank account number
- set international bank account number (IBAN)
- set BIC/SWIFT code>>

Do you have news related ???
In Italy we have a regulation that for over a certain amount you have to pay by bank transfer or other eletronic ways
But except for paypal people use Bank Transfer.... so it could help very much to have available this module

can I help you in some way ??

best regards

Michele

Re: Payment Modules

Posted: Wed Feb 08, 2012 7:28 am
by leo
The administration part is totally ready.
The catalog needs further coding.
I couldn't decide where to display the bank details.
In the catalog or only in the e-mail sent to the customer?
What are your thoughts, needs?

Re: Payment Modules

Posted: Wed Feb 08, 2012 8:09 am
by skau
hi,
well, a lot of sites specifies bank references even in information documents, but I do not agree in terms of privacy
I think could be good to have:

- in bank-transfer module / Admin the IBAN code of seller + account name + SWIFT CODE/account number for overseas

- a field to put the message that should be sent to customer on email in checkout (typically like "We will ship gods only after received payment: it takes from xx to xx days to see your transfer depending on bank. You can send us recipt of bank transfer to get work easyer. Please ensure that ALL payment cost are on buyers site. You must refer to this order-id making bank transfer " )

- I would made bank-transfer module selectable for geozones, for security reasons

In checkout I would only add those information to order by mail

what do you think ?
(sorry for my bad english)

Re: Payment Modules

Posted: Wed Feb 08, 2012 2:38 pm
by leo
Thanks for sharing your experience and thoughts with us.
I would like to finalize the catalog redesign this week, so that next week I will add these to the bank transfer module.

Payment with bank transfer: ERROR on email_banktr_message

Posted: Fri Mar 09, 2012 1:21 am
by skau
Hi,
I've installed SVN with the bank transfer payment...

it works well if I choose bank transfer payment on check out

If I choose an other type of payment, I have an error on the e-mail confirm: at the bottom appears this error line:

<<Notice: Undefined variable: email_banktr_message in /home/miki1961/public_html/catalog/template/default/content/checkout_email.tpl on line 250>>


thank you so much for suggestions
Michele from Rome

Re: Payment Modules

Posted: Fri Mar 09, 2012 2:16 am
by leo
Change in catalog/confirm/checkout_confirm.php about line 410 to

Code: Select all

$email->set('email_banktr_ban', $this->language->get('email_banktr_ban'));
			$email->set('banktr_ban', $this->config->get('banktr_ban'));
			$email->set('email_banktr_iban', $this->language->get('email_banktr_iban'));
			$email->set('email_banktr_swift', $this->language->get('email_banktr_swift'));
			$email->set('banktr_iban', $this->config->get('banktr_iban'));
			$email->set('banktr_swift', $this->config->get('banktr_swift'));
		} else {
			$email->set('email_banktr_message', NULL);
		}
Thanks for finding this bug.