weizong song 5 years ago
parent 401fc9befe
commit a97a29f819

@ -48,9 +48,8 @@ class OrdersController extends CommonController
$query->select("id", "name", "factor_id")->orderBy("myindex"); $query->select("id", "name", "factor_id")->orderBy("myindex");
}]); }]);
}]) }])
->where("project_id", $id) ->whereRaw("project_id={$id}")
->selectRaw("select product.*,b.max_total from (select sum(max_price) as max_total,product_id from (select max(price) as max_price,product.id as product_id from product inner join factor on factor.product_id = product.id inner join factor_items on factor.id = factor_items.factor_id group by factor_items.factor_id) as a group by a.product_id) as b left join product on product.id = b.product_id") ->selectRaw("select product.*,b.max_total from (select sum(max_price) as max_total,product_id from (select max(price) as max_price,product.id as product_id from product inner join factor on factor.product_id = product.id inner join factor_items on factor.id = factor_items.factor_id group by factor_items.factor_id) as a group by a.product_id) as b left join product on product.id = b.product_id")
->orderBy("myindex")
->first(); ->first();
return response()->json($product->toArray()); return response()->json($product->toArray());
} }

Loading…
Cancel
Save