Contributions
Bank Transfer Payment Option
This is a very simple payment option for people who wish to pay via Bank Transfer.
It allows you input the Account Number and Sort Code, plus the Account Name and Bank Name.
This is then formated for screen and email
Expand All / Collapse All
French translation added - must be added to the package itself for installation
I have updated this add-on so you can set the order status.
It can be used for virtual products now.
I also removed unnecessary code from the un-install function.
Please note, to use with virtual products you must have your order status set correctly.
Fixed a 3 minor errors, missing "'" and data_added to date_added
tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('IBAN Number', 'MODULE_PAYMENT_BANKTRANSFER_IBAN', '00000000', 'IBAN number', '6', '1', now())");
tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('SWIFT Number', 'MODULE_PAYMENT_BANKTRANSFER_SWIFT', '00000001', 'SWIFT number', '6', '1', now())");
Updated the package with:
- A IBAN field
- A SWIFT field
This might be usefull for company's that sell to other EU country's
- Consolidated sort_order
- Wire transfer information is displayed in a table
- Full version with Read-me.txt
nah.. did not work for me
Warning: include(/home/babymoko/domains/babymoko.com/public_html/includes/languages/english/modules/payment/banktransfer.php) [function.include]: failed to open stream: No such file or directory in /home/babymoko/domains/babymoko.com/public_html/admin/modules.php on line 128
Warning: include() [function.include]: Failed opening '/home/babymoko/domains/babymoko.com/public_html/includes/languages/english/modules/payment/banktransfer.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/babymoko/domains/babymoko.com/public_html/admin/modules.php on line 128
Parse error: syntax error, unexpected T_STRING, expecting T_FUNCTION in /home/babymoko/domains/babymoko.com/public_html/includes/modules/payment/banktransfer.php on line 87
Hi,
Just loaded the Bank Transfer but it wouldn't allow me to sort it in priority order with the other payment methods. I added a few steps (see enclosed - this is just the updates NOT the full version). Warning I am not a programmer, but this worked for me. Please be sure to BACKUP the database and your files prior to doing this just in case!
Carol
This is a small fix to the Module sent in by Phil for Bank Transfer. I install the Module but it was not showing in the store during checkout. After some hard days work the culprit was made out. it is the same code anyway nothing was changed except the culprit.
NOTE:
function install() {
tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Allow Bank Transfer Payment', 'MODULE_PAYMENT_BANKTRANSFER_STATUS', '1', 'Do you want to accept Bank Transfer Order payments?', '6', '1', now());");
******************************
'1' shd be 'True'
I run osCommerce v2.2 MS2
Thanks to all
This is a very simple payment option for people who wish to pay via Bank Transfer.
It allows you input the Account Number and Sort Code, plus the Account Name and Bank Name.
This is then formated for screen and email
Note: Contributions are used at own risk.