/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Tables/OrderTable.php (6648B)
repository = $orderRepository;
if (!Auth::user()->hasPermission('orders.edit')) {
$this->hasOperations = false;
$this->hasActions = false;
}
}
/**
* {@inheritDoc}
*/
public function ajax()
{
$data = $this->table
->eloquent($this->query())
->editColumn('checkbox', function ($item) {
return $this->getCheckbox($item->id);
})
->editColumn('status', function ($item) {
return $item->status->toHtml();
})
->editColumn('payment_status', function ($item) {
return $item->payment->status->label() ? clean($item->payment->status->toHtml()) : '—';
})
->editColumn('payment_method', function ($item) {
return $item->payment->payment_channel->label() ? clean($item->payment->payment_channel->label()) : '—';
})
->editColumn('amount', function ($item) {
return format_price($item->amount);
})
->editColumn('shipping_amount', function ($item) {
return format_price($item->shipping_amount);
})
->editColumn('user_id', function ($item) {
return $item->user->name ?? $item->address->name;
})
->editColumn('created_at', function ($item) {
return BaseHelper::formatDate($item->created_at);
});
if (EcommerceHelper::isTaxEnabled()) {
$data = $data->editColumn('tax_amount', function ($item) {
return format_price($item->tax_amount);
});
}
$data = $data
->addColumn('operations', function ($item) {
return $this->getOperations('orders.edit', 'orders.destroy', $item);
});
return $this->toJson($data);
}
/**
* {@inheritDoc}
*/
public function query()
{
$query = $this->repository->getModel()
->select([
'id',
'status',
'user_id',
'created_at',
'amount',
'tax_amount',
'shipping_amount',
'payment_id',
])
->with(['user', 'payment'])
->where('is_finished', 1);
return $this->applyScopes($query);
}
/**
* {@inheritDoc}
*/
public function columns()
{
$columns = [
'id' => [
'title' => trans('core/base::tables.id'),
'width' => '20px',
'class' => 'text-left',
],
'user_id' => [
'title' => trans('plugins/ecommerce::order.customer_label'),
'class' => 'text-left',
],
'amount' => [
'title' => trans('plugins/ecommerce::order.amount'),
'class' => 'text-center',
],
];
if (EcommerceHelper::isTaxEnabled()) {
$columns['tax_amount'] = [
'title' => trans('plugins/ecommerce::order.tax_amount'),
'class' => 'text-center',
];
}
$columns += [
'shipping_amount' => [
'title' => trans('plugins/ecommerce::order.shipping_amount'),
'class' => 'text-center',
],
'payment_method' => [
'name' => 'payment_id',
'title' => trans('plugins/ecommerce::order.payment_method'),
'class' => 'text-center',
],
'payment_status' => [
'name' => 'payment_id',
'title' => trans('plugins/ecommerce::order.payment_status_label'),
'class' => 'text-center',
],
'status' => [
'title' => trans('core/base::tables.status'),
'class' => 'text-center',
],
'created_at' => [
'title' => trans('core/base::tables.created_at'),
'width' => '100px',
'class' => 'text-left',
],
];
return $columns;
}
/**
* {@inheritDoc}
*/
public function buttons()
{
return $this->addCreateButton(route('orders.create'), 'orders.create');
}
/**
* {@inheritDoc}
*/
public function bulkActions(): array
{
return $this->addDeleteAction(route('orders.deletes'), 'orders.destroy', parent::bulkActions());
}
/**
* {@inheritDoc}
*/
public function getBulkChanges(): array
{
return [
'status' => [
'title' => trans('core/base::tables.status'),
'type' => 'select',
'choices' => OrderStatusEnum::labels(),
'validate' => 'required|in:' . implode(',', OrderStatusEnum::values()),
],
'created_at' => [
'title' => trans('core/base::tables.created_at'),
'type' => 'date',
],
];
}
/**
* {@inheritDoc}
*/
public function renderTable($data = [], $mergeData = [])
{
if ($this->query()->count() === 0 &&
!$this->request()->wantsJson() &&
$this->request()->input('filter_table_id') !== $this->getOption('id')
) {
return view('plugins/ecommerce::orders.intro');
}
return parent::renderTable($data, $mergeData);
}
/**
* {@inheritDoc}
*/
public function getDefaultButtons(): array
{
return [
'export',
'reload',
];
}
}