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

ore’s picture

line 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

akolahi’s picture

yep that works! thanks!

akolahi’s picture

Status: Active » Needs review

Is it appropriate to say the maintainer needs to review the fix to possibly commit...

cayenne’s picture

That 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

<div class="order-pane-title">Bill To:</div>'. uc_order_pane_bill_to('view', $order) .'</div>

This makes me very happy now.

ore’s picture

nice 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>';

asak’s picture

nice catch.

longwave’s picture

Status: Needs review » Fixed

The 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.

Status: Fixed » Closed (fixed)

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