in mp_reports.module
search:
$sql_count = "SELECT COUNT(nid) FROM {node} WHERE node.uid = %d AND type IN (". implode(", ", $product_types) .")";

Replace with:
$sql_count = "SELECT COUNT(*) FROM {node} n WHERE n.uid = %d AND type IN (". implode(", ", $product_types) .")";

// The original sql causes this error: Unknown column 'node.uid' in 'where clause' query: SELECT COUNT(nid) FROM tbl_node WHERE node.uid = 1 AND type IN ('product')

We're working on buyout module + ubercart marketplace integration. :) So far it's great. Thanks to Tugrid.

Comments

Turgrid’s picture

Thanks for reporting the issue and presenting a potential fix. I will look into this and commit it to the next release of Marketplace. Good luck with your module integration. I would love to hear how it turns out for you. Thanks.

syndicateStorm’s picture

Status: Active » Fixed

I just confirmed this was fixed on Nov. 8, 2008 by Turgrid. It is included in the 5.x-1.0-beta5 release as well as the 6.x dev release.

Status: Fixed » Closed (fixed)

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