select
This commit is contained in:
parent
eeda3e782a
commit
973375329b
@ -56,7 +56,16 @@ class CardExport extends AbstractExport implements FromQuery, WithHeadings, With
|
|||||||
CardService::propConditions($this->conditions);
|
CardService::propConditions($this->conditions);
|
||||||
}
|
}
|
||||||
|
|
||||||
$builder = app(OrderCardPartitionRepository::class)->forceNoReset()->skipCache()->withConditions($this->conditions)->orderBy('sim')->applyConditions();
|
$select = [
|
||||||
|
'id',
|
||||||
|
'sim',
|
||||||
|
'company_id',
|
||||||
|
'package_id',
|
||||||
|
'created_at',
|
||||||
|
'updated_at',
|
||||||
|
];
|
||||||
|
|
||||||
|
$builder = app(OrderCardPartitionRepository::class)->select($select)->forceNoReset()->skipCache()->withConditions($this->conditions)->orderBy('sim')->applyConditions();
|
||||||
|
|
||||||
return $builder;
|
return $builder;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user