Closed (fixed)
Project:
Ubercart Marketplace
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
22 Aug 2009 at 03:17 UTC
Updated:
12 Dec 2009 at 20:10 UTC
on the seller's fulfilment page: /user/*/selling/fulfill if the seller clicks on an order icon it goes to the order page but states that "This order contains no products". It does show the order number and Ship To address, but not the products that were ordered.
The seller can, however, view the items on the packaging slip.
Comments
Comment #1
ore commentedline 205 on mp_orders.module needs to have $order->products (at the end of the line) changed to just $order. Then everything works just fine.
cheers
mike
Comment #2
akolahi commentedyep that works! thanks!
Comment #3
akolahi commentedIs it appropriate to say the maintainer needs to review the fix to possibly commit...
Comment #4
cayenne commentedThat line change made the order details appear in my site EXCEPT for the buyer's information. Do others have that problem?
EDIT: Okay, in the same line, I added before the "Ship to" block, the following code
This makes me very happy now.
Comment #5
ore commentednice spotting.
My whole line looks like this now with dual boxes.
$output .= '<div class="order-pane pos-left"><div class="order-pane-title">Bill To:</div>'. uc_order_pane_bill_to('view', $order) .'</div><div class="order-pane pos-left"><div class="order-pane-title">Ship To:</div>'. uc_order_pane_ship_to('view', $order) .'</div><div class="order-pane abs-left"><div class="order-pane-title">Products:</div>'. drupal_render(tapir_get_table('op_products_view_table', $order)) .'</div>';Comment #6
asak commentednice catch.
Comment #7
longwaveThe fix for the original issue has been committed to CVS.
I am not sure the billing address should be shown in all cases, as this information does not necessarily need to be released to individual sellers.