The attributes details are not listed on invoice template. The details shows up with 'Array'.

Comments

xibun’s picture

Status: Active » Postponed (maintainer needs more info)

The module works fine for many users... can you give more information about your settings in the admin section maybe then I can help.

eTech’s picture

Wich one would you like to see?

xibun’s picture

- screenshot of settings for bank transfer
- maybe your .po file (it seems you don't use the English version)
- your invoice template
- version of ubercart

eTech’s picture

StatusFileSize
new11.01 KB
new42.6 KB

I'm using ubercart version: 6.x-2.0-rc6
No specific .po file in use for the Bank transfer module, i translated via Drupal.

PS: For security reasons (Drupal says) , my upload has been renamed to customer_bank_transfer.itpl_.php.

xibun’s picture

StatusFileSize
new11.11 KB

found it! the invoice template needed to be changed for the latest Ubercart version.

new version below, remove "_" and ".txt" and replace the one you have. please test it, will upload to dev version afterwards.

xibun’s picture

Status: Postponed (maintainer needs more info) » Fixed

committed to cvs.

eTech’s picture

Tested and it works.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

DocVeg’s picture

I do have the same problem. Display of orders/invoices doesn't show the bank account details, all the rest is displayed properly.

My details:
Ubercart: 7.x-3.8
Bank transfer: 7.x-1.0-beta1+1-dev
Selected customer_bank-transfer template in shop-admin-orders-settings.

In the /sites/all/modules/uc_bank_transfer/template/uc-order--customer-bank_transfer.tpl.php file there is also the following code:

<tr>
                <td nowrap="nowrap">
                  <b><?php print t('Payment Method:'); ?></b>
                </td>
                <td width="98%">
                  <?php print $order_payment_method; ?>
                </td>
              </tr>
              <?php if ($order->payment_method=='bank_transfer'): ?>
              <tr>
                <td nowrap="nowrap" vAlign="top">
                  <b><?php print t('To:'); ?></b>
                </td>
                <td width="98%">
                  <?php print $order_payment_bank_details; ?>
                </td>
              </tr>
              <?php endif; ?>

So don't know, why it does not work.

DocVeg’s picture

Version: 6.x-1.x-dev » 7.x-1.x-dev
Issue summary: View changes
Status: Closed (fixed) » Needs review
DocVeg’s picture

Status: Needs review » Needs work