-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathEarningDataTable.php
180 lines (161 loc) · 5.53 KB
/
EarningDataTable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
namespace App\DataTables;
use App\Models\CustomField;
use App\Models\Earning;
use Barryvdh\DomPDF\Facade as PDF;
use Yajra\DataTables\EloquentDataTable;
use Yajra\DataTables\Services\DataTable;
class EarningDataTable extends DataTable
{
/**
* custom fields columns
* @var array
*/
public static $customFields = [];
/**
* Build DataTable class.
*
* @param mixed $query Results from query() method.
* @return \Yajra\DataTables\DataTableAbstract
*/
public function dataTable($query)
{
$dataTable = new EloquentDataTable($query);
$columns = array_column($this->getColumns(), 'data');
$dataTable = $dataTable
->editColumn('restaurant.name', function ($earning) {
return getLinksColumnByRouteName([$earning->restaurant], "restaurants.edit",'id','name');
})
->editColumn('updated_at', function ($earning) {
return getDateColumn($earning, 'updated_at');
})
->editColumn('total_earning', function ($earning) {
return getPriceColumn($earning,'total_earning');
})
->editColumn('admin_earning', function ($earning) {
return getPriceColumn($earning,'admin_earning');
})
->editColumn('restaurant_earning', function ($earning) {
return getPriceColumn($earning,'restaurant_earning');
})
->editColumn('delivery_fee', function ($earning) {
return getPriceColumn($earning,'delivery_fee');
})
->editColumn('tax', function ($earning) {
return getPriceColumn($earning,'tax');
})
->addColumn('action', 'earnings.datatables_actions')
->rawColumns(array_merge($columns, ['action']));
return $dataTable;
}
/**
* Get columns.
*
* @return array
*/
protected function getColumns()
{
$columns = [
[
'data' => 'restaurant.name',
'title' => trans('lang.earning_restaurant_id'),
],
[
'data' => 'total_orders',
'title' => trans('lang.earning_total_orders'),
],
[
'data' => 'total_earning',
'title' => trans('lang.earning_total_earning'),
],
[
'data' => 'admin_earning',
'title' => trans('lang.earning_admin_earning'),
],
[
'data' => 'restaurant_earning',
'title' => trans('lang.earning_restaurant_earning'),
],
[
'data' => 'delivery_fee',
'title' => trans('lang.earning_delivery_fee'),
],
[
'data' => 'tax',
'title' => trans('lang.earning_tax'),
],
[
'data' => 'updated_at',
'title' => trans('lang.earning_updated_at'),
'searchable' => false,
]
];
$hasCustomField = in_array(Earning::class, setting('custom_field_models', []));
if ($hasCustomField) {
$customFieldsCollection = CustomField::where('custom_field_model', Earning::class)->where('in_table', '=', true)->get();
foreach ($customFieldsCollection as $key => $field) {
array_splice($columns, $field->order - 1, 0, [[
'data' => 'custom_fields.' . $field->name . '.view',
'title' => trans('lang.earning_' . $field->name),
'orderable' => false,
'searchable' => false,
]]);
}
}
return $columns;
}
/**
* Get query source of dataTable.
*
* @param \App\Models\Post $model
* @return \Illuminate\Database\Eloquent\Builder
*/
public function query(Earning $model)
{
if (auth()->user()->hasRole('admin')) {
return $model->newQuery()->with("restaurant")->select('earnings.*');
}else if((auth()->user()->hasRole('manager'))){
return $model->newQuery()->with("restaurant")
->join("user_restaurants", "user_restaurants.restaurant_id", "=", "earnings.restaurant_id")
->where('user_restaurants.user_id', auth()->id())->select('earnings.*');
}
}
/**
* Optional method if you want to use html builder.
*
* @return \Yajra\DataTables\Html\Builder
*/
public function html()
{
return $this->builder()
->columns($this->getColumns())
->minifiedAjax()
->addAction(['title'=>trans('lang.actions'),'width' => '80px', 'printable' => false, 'responsivePriority' => '100'])
->parameters(array_merge(
config('datatables-buttons.parameters'), [
'language' => json_decode(
file_get_contents(base_path('resources/lang/' . app()->getLocale() . '/datatable.json')
), true)
]
));
}
/**
* Export PDF using DOMPDF
* @return mixed
*/
public function pdf()
{
$data = $this->getDataForPrint();
$pdf = PDF::loadView($this->printPreview, compact('data'));
return $pdf->download($this->filename() . '.pdf');
}
/**
* Get filename for export.
*
* @return string
*/
protected function filename()
{
return 'earningsdatatable_' . time();
}
}