Fix search now that supplier_user is account_supplier
This commit is contained in:
parent
d6a2c70146
commit
1bae121481
@ -44,16 +44,15 @@ class SearchController extends Controller
|
|||||||
|
|
||||||
// Look for User by their Supplier ID with some suppliers
|
// Look for User by their Supplier ID with some suppliers
|
||||||
if (is_numeric($request->input('term')))
|
if (is_numeric($request->input('term')))
|
||||||
foreach (User::select(['users.*','suppliers.name AS supplier_name','supplier_user.id AS pivot_id'])
|
foreach (Account::select(['user_id','suppliers.name AS supplier_name','account_supplier.supplier_ref AS pivot_id'])
|
||||||
->join('supplier_user',['supplier_user.user_id'=>'users.id'])
|
->join('account_supplier',['account_supplier.account_id'=>'accounts.id'])
|
||||||
->join('suppliers',['suppliers.id'=>'supplier_user.supplier_id'])
|
->join('suppliers',['suppliers.id'=>'account_supplier.supplier_id'])
|
||||||
->whereIN('user_id',$user_ids)
|
->whereIN('accounts.id',$account_ids)
|
||||||
->where('supplier_user.id','like','%'.$request->input('term').'%')
|
->where('account_supplier.supplier_ref','like','%'.$request->input('term').'%')
|
||||||
->orderBy('lastname')
|
->orderBy('company')
|
||||||
->orderBy('firstname')
|
|
||||||
->limit(10)->get() as $o)
|
->limit(10)->get() as $o)
|
||||||
{
|
{
|
||||||
$result->push(['name'=>sprintf('%s (%s:%s)',$o->name,$o->supplier_name,$o->pivot_id),'value'=>'/u/home/'.$o->id,'category'=>'Suppliers']);
|
$result->push(['name'=>sprintf('%s (%s:%s)',$o->company,$o->supplier_name,$o->supplier_ref),'value'=>'/u/home/'.$o->user_id,'category'=>'Suppliers']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Look for Account
|
// Look for Account
|
||||||
|
Loading…
Reference in New Issue
Block a user