Laravel 5.4:高级数据透视表查询问题

时间:2017-02-15 03:31:23

标签: php laravel laravel-5 eloquent laravel-5.4

我有两个模型:OrderDepartment,由多对多关系加入。此关系上的数据透视表包含"状态"领域。因此,特定订单可能类似于:

  • 制造业:已完成
  • 包装:(不需要/不附加)
  • 送货:正在进行中

在我的应用的用户界面中,我有每个部门的标签和状态复选框。因此,API需要能够接收具有一个部门和多个可能状态的请求,并返回与给定部门的所选状态之一匹配的所有订单。

示例查询:/api/orders?dep=manufacturing&statuses=notStarted,inProgress

这需要返回 的所有订单 "未启动"或者"正在进行中"制造部门(无论其他部门的状态如何)

这是我写的查询:

$query = Order::with("departments");
$department = Request::get('department');
$statuses = explode(",", Request::get('statuses', ""));

if (!empty($department))
{
    $query->whereHas('departments', function ($q) use ($department)
    {
        $q->where('name', $department);
    });
    if (count($statuses) > 0)
    {
        $query->where(function ($q) use ($department, $statuses)
        {
            foreach ($statuses as $status)
            {
                $q->orWhereHas('departments', function ($q) use ($department, $status)
                {
                    $q->where('name', $department)->wherePivot('status', $status);
                }
            }
        });
    }
}

return $query->paginate(15);

这引发了错误:

SQLSTATE[42S22]: Column not found: 1054 Unknown column 'pivot' in 'where clause'

我的关系定义如下:

public function departments()
{
    return $this->belongsToMany('App\Models\Department', 'order_statuses')->using('App\Models\OrderStatus')->withPivot('status')->withTimestamps();
}

2 个答案:

答案 0 :(得分:0)

默认情况下,只有模型键才会出现在数据透视对象上。如果数据透视表包含额外属性,则必须在定义关系时指定它们:

return $this->belongsToMany('App\Role')->withPivot('column1', 'column2');

答案 1 :(得分:0)

我最终想出了以下解决方案:

if (!empty($departments)
{
    if (count($statuses) > 0)
    {
        $query->whereHas('departments', function ($q) use ($department, $statuses)
        {
            $q->where('name', $department)->whereIn('order_statuses.status', $statuses);
        }
    } else {
        $query->whereHas('departments', function ($q) use ($department)
        {
            $q->where('name', $department);
        }
    }
}