我有3个表,用户,订单和状态。数据透视表 order_status 有额外的列: user_id 和 created_at (以获取哪个用户以及设置该状态时)。 订单模型有方法:
// get latest status for order, and tie user (user_id in pivot table)
public function latestStatus(){
return $this->belongsToMany('Status')
->select(array('*','User.name'))
->orderBy('order_status.created_at','desc')
->join('users','order_status.user_id','=','users.id')
->withTimestamps();
->limit(1,0);
}
所以,如果我打电话:
$orders = Orders::with('latestStatus')->get();
我可以获得最新状态的订单。没关系。
我需要对订单属性和最新状态进行一些过滤,例如:(表订单列位置,买方) - 如何使用以下方式提取所有订单:
order.location_id = in ("ny", "nm")
order.buyer_id = in ("1", "3")
order_status.user_id = in ("1", "5")
order_status.created_at = between (2015-10-04, 2015-10-06)
order_status.status_id = in ("2", "8", "9")
拨打"其中"在订单上只解决位置和买方部分...
$orders = Orders::whereIn('location_id',["ny", "nm"])
->whereIn('buyer_id',["1","3"])
->with('latestStatus')
->get();
所以问题是如何过滤透视字段(查找在特定日期之间创建特定状态的订单)?
TNX ÿ
答案 0 :(得分:0)
好的,这就是我的表现:
$orders = Order::with('lateststatus')
->whereHas('lateststatus', function ($q) use ($dateTo, $dateFrom, $statuses) {
$q->where('order_status.created_at','>=',$dateFrom);
$q->where('order_status.created_at','<',$dateTo);
$q->whereIn('order_status.status_id',$statusi);
}
);
$orders = $orders->whereIn('location_id',$locations); }
$orders = $orders->whereIn('user_id',$users); }
$orders = $orders->->get();
PS:我改变了数据库结构,所以现在我将user_id保存在订单表中。