Closed (fixed)
Project:
Commerce Bank Transfer
Version:
7.x-1.0-alpha2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Oct 2011 at 14:45 UTC
Updated:
5 Apr 2012 at 17:10 UTC
Jump to comment: Most recent file
Comments
Comment #1
it-crusubscribe
Comment #2
dreamproduction commentedCheck out this patch. It does a lot more than fixing this issue, but it's a great patch and you might want to apply it in full.
Otherwise, the error is on line 178 where the the first argument should be 'bank_transfer' even though the payment method base is defined as 'commerce_bank_transfer'.
Comment #3
rockylhc commentedAfter applied the patch and it showing
commerce_payment_handler_field_payment_method->render(Object) views_handler_field.inc:952
Is that something can be resolved?
Comment #4
MickL commented#2 works BUT: only new orders show the correct payment method @ orders/*/payment
replace "$transaction = commerce_payment_transaction_new('commerce_bank_transfer', $order->order_id);"
with "$transaction = commerce_payment_transaction_new('bank_transfer', $order->order_id);"
Comment #5
xibun commentedhere is the patch (extract from patch created by eddib).