mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
totalizadores implementados
This commit is contained in:
@ -245,15 +245,31 @@ class Pedido extends \App\Controllers\BaseResourceController
|
|||||||
$estado = $reqData['estado'] ?? 'todos';
|
$estado = $reqData['estado'] ?? 'todos';
|
||||||
if($estado == 'todos') $estado = '';
|
if($estado == 'todos') $estado = '';
|
||||||
|
|
||||||
|
$showTotal = $reqData['showTotal'] ?? false;
|
||||||
|
|
||||||
$searchValues = get_filter_datatables_columns($reqData);
|
$searchValues = get_filter_datatables_columns($reqData);
|
||||||
|
|
||||||
$model_linea = model('\App\Models\Pedidos\PedidoLineaModel');
|
$model_linea = model('\App\Models\Pedidos\PedidoLineaModel');
|
||||||
$resourceData = $model_linea->getResource($searchValues, $estado)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
|
$resourceData = $model_linea->getResource($searchValues, $estado)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
|
||||||
|
$totalTirada = $model_linea->getSumOfTirada($searchValues, $estado, $start, $length);
|
||||||
|
$total = $model_linea->getSumOfTotalAceptado($searchValues, $estado, $start, $length);
|
||||||
|
$total2 = 0;
|
||||||
|
if($showTotal){
|
||||||
|
$total2 = $model_linea->getTotalOfTotalAceptado();
|
||||||
|
}
|
||||||
|
|
||||||
|
if($total2 != 0){
|
||||||
|
$total = "" . $total . " \n(" . $total2 . ")";
|
||||||
|
}
|
||||||
return $this->respond(Collection::datatable(
|
return $this->respond(Collection::datatable(
|
||||||
$resourceData,
|
$resourceData,
|
||||||
$model_linea->getResource("", $estado)->countAllResults(),
|
$model_linea->getResource("", $estado)->countAllResults(),
|
||||||
$model_linea->getResource($searchValues, $estado)->countAllResults()
|
$model_linea->getResource($searchValues, $estado)->countAllResults(),
|
||||||
|
"",
|
||||||
|
[
|
||||||
|
'total_tirada' => $totalTirada,
|
||||||
|
'total' => $total
|
||||||
|
]
|
||||||
));
|
));
|
||||||
} else {
|
} else {
|
||||||
return $this->failUnauthorized('Invalid request', 403);
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
|||||||
@ -78,6 +78,8 @@ return [
|
|||||||
|
|
||||||
'facturas' => 'Invoices',
|
'facturas' => 'Invoices',
|
||||||
|
|
||||||
|
'showTotal' => 'Show totals',
|
||||||
|
|
||||||
'validation' => [
|
'validation' => [
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
@ -78,6 +78,8 @@ return [
|
|||||||
|
|
||||||
'facturas' => 'Facturas',
|
'facturas' => 'Facturas',
|
||||||
|
|
||||||
|
'showTotal' => 'Mostrar totales',
|
||||||
|
|
||||||
'validation' => [
|
'validation' => [
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
@ -15,7 +15,7 @@ class Collection
|
|||||||
*
|
*
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
public static function datatable(array $data, int $recordsTotal, int $recordsFiltered, string $error = null)
|
public static function datatable(array $data, int $recordsTotal, int $recordsFiltered, string $error = null, $extra_data = [])
|
||||||
{
|
{
|
||||||
$draw = 1;
|
$draw = 1;
|
||||||
$req = service('request');
|
$req = service('request');
|
||||||
@ -38,6 +38,10 @@ class Collection
|
|||||||
$response['error'] = $error;
|
$response['error'] = $error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (count($extra_data)>0) {
|
||||||
|
$response['extra'] = $extra_data;
|
||||||
|
}
|
||||||
|
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -93,6 +93,94 @@ class PedidoLineaModel extends \App\Models\BaseModel
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getSumOfTirada(array $search, $estado = '', $start = 0, $length = 5)
|
||||||
|
{
|
||||||
|
|
||||||
|
$builder = $this->db
|
||||||
|
->table($this->table . " t1")
|
||||||
|
->selectSum('t3.tirada', 'total_tirada');
|
||||||
|
|
||||||
|
$builder->join("pedidos t2", "t2.id = t1.pedido_id", "left");
|
||||||
|
$builder->join("presupuestos t3", "t1.presupuesto_id = t3.id", "left");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Aplica los filtros de búsqueda y estado
|
||||||
|
if (!empty($search)) {
|
||||||
|
$builder->groupStart();
|
||||||
|
foreach ($search as $col_search) {
|
||||||
|
if ($col_search[0] != 1 && $col_search[0] != 2)
|
||||||
|
$builder->like(self::SORTABLE[$col_search[0]], $col_search[2]);
|
||||||
|
else {
|
||||||
|
$dates = explode(" ", $col_search[2]);
|
||||||
|
$builder->where(self::SORTABLE[$col_search[0]] . ">=", $dates[0]);
|
||||||
|
$builder->where(self::SORTABLE[$col_search[0]] . "<=", $dates[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$builder->groupEnd();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($estado !== '') {
|
||||||
|
$builder->where('estado', $estado);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Aplicar el orden y el límite
|
||||||
|
$builder->limit($length, $start);
|
||||||
|
|
||||||
|
return $builder->get()->getRow()->total_tirada;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSumOfTotalAceptado(array $search, $estado = '', $start = 0, $length = 5)
|
||||||
|
{
|
||||||
|
|
||||||
|
$builder = $this->db
|
||||||
|
->table($this->table . " t1")
|
||||||
|
->selectSum('t3.total_aceptado', 'total');
|
||||||
|
|
||||||
|
$builder->join("pedidos t2", "t2.id = t1.pedido_id", "left");
|
||||||
|
$builder->join("presupuestos t3", "t1.presupuesto_id = t3.id", "left");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// Aplica los filtros de búsqueda y estado
|
||||||
|
if (!empty($search)) {
|
||||||
|
$builder->groupStart();
|
||||||
|
foreach ($search as $col_search) {
|
||||||
|
if ($col_search[0] != 1 && $col_search[0] != 2)
|
||||||
|
$builder->like(self::SORTABLE[$col_search[0]], $col_search[2]);
|
||||||
|
else {
|
||||||
|
$dates = explode(" ", $col_search[2]);
|
||||||
|
$builder->where(self::SORTABLE[$col_search[0]] . ">=", $dates[0]);
|
||||||
|
$builder->where(self::SORTABLE[$col_search[0]] . "<=", $dates[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$builder->groupEnd();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($estado !== '') {
|
||||||
|
$builder->where('estado', $estado);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Aplicar el orden y el límite
|
||||||
|
$builder
|
||||||
|
->limit($length, $start);
|
||||||
|
|
||||||
|
return $builder->get()->getRow()->total;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getTotalOfTotalAceptado()
|
||||||
|
{
|
||||||
|
|
||||||
|
$builder = $this->db
|
||||||
|
->table($this->table . " t1")
|
||||||
|
->selectSum('t3.total_aceptado', 'total');
|
||||||
|
|
||||||
|
$builder->join("pedidos t2", "t2.id = t1.pedido_id", "left");
|
||||||
|
$builder->join("presupuestos t3", "t1.presupuesto_id = t3.id", "left");
|
||||||
|
|
||||||
|
|
||||||
|
return $builder->get()->getRow()->total;
|
||||||
|
}
|
||||||
|
|
||||||
public function obtenerLineasPedidoSinFacturar($cliente_id) {
|
public function obtenerLineasPedidoSinFacturar($cliente_id) {
|
||||||
$resultaArray = [];
|
$resultaArray = [];
|
||||||
|
|||||||
@ -11,6 +11,14 @@
|
|||||||
</div><!--//.card-header -->
|
</div><!--//.card-header -->
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="form-check form-check-inline">
|
||||||
|
<input type="checkbox" class="form-check-input" id="showTotal" name="showTotal">
|
||||||
|
<label for="showTotal" class="form-check-label">
|
||||||
|
<?= lang('Pedidos.showTotal') ?>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<table id="tableOfPedidos" class="table table-striped table-hover" style="width: 100%;">
|
<table id="tableOfPedidos" class="table table-striped table-hover" style="width: 100%;">
|
||||||
<thead>
|
<thead>
|
||||||
@ -24,8 +32,8 @@
|
|||||||
<th><?= lang('Pedidos.ubicacion') ?></th>
|
<th><?= lang('Pedidos.ubicacion') ?></th>
|
||||||
<th><?= lang('Pedidos.inc_rei') ?></th>
|
<th><?= lang('Pedidos.inc_rei') ?></th>
|
||||||
<th class='noFilter'><?= lang('Pedidos.num_paginas') ?></th>
|
<th class='noFilter'><?= lang('Pedidos.num_paginas') ?></th>
|
||||||
<th><?= lang('Pedidos.tiradas') ?></th>
|
<th class='totalizador'><?= lang('Pedidos.tiradas') ?></th>
|
||||||
<th><?= lang('Pedidos.total_presupuesto') ?></th>
|
<th class='totalizador'><?= lang('Pedidos.total_presupuesto') ?></th>
|
||||||
<th><?= lang('Pedidos.estado') ?></th>
|
<th><?= lang('Pedidos.estado') ?></th>
|
||||||
<th class="noFilter text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
<th class="noFilter text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
@ -62,91 +70,105 @@ $('#tableOfPedidos thead tr').clone(true).appendTo('#tableOfPedidos thead');
|
|||||||
$('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
$('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
||||||
if (!$(this).hasClass("noFilter")) {
|
if (!$(this).hasClass("noFilter")) {
|
||||||
var title = $(this).text();
|
var title = $(this).text();
|
||||||
if(i==1 || i==2){
|
if($(this).hasClass("totalizador")){
|
||||||
name = 'bs-rangepicker-range_' + i;
|
if(i==9){
|
||||||
$(this).html('<input id="'+name+'" type="text" class="form-control " style="min-width:100px;max-width:120px;font-size:0.8rem !important;" />');
|
$(this).html('<label id="total_tirada" />');
|
||||||
var bsRangePickerRange = $('#' + name);
|
}
|
||||||
bsRangePickerRange.daterangepicker({
|
else if(i==10){
|
||||||
ranges: {
|
$(this).html('<label id="total_aceptado" />');
|
||||||
'<?= lang('datePicker.hoy') ?>': [moment(), moment()],
|
}
|
||||||
'<?= lang('datePicker.ayer') ?>': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
|
|
||||||
'<?= lang('datePicker.ultimos7') ?>': [moment().subtract(6, 'days'), moment()],
|
|
||||||
'<?= lang('datePicker.ultimos30') ?>': [moment().subtract(29, 'days'), moment()],
|
|
||||||
'<?= lang('datePicker.esteMes') ?>': [moment().startOf('month'), moment().endOf('month')],
|
|
||||||
'<?= lang('datePicker.ultimoMes') ?>': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
|
|
||||||
},
|
|
||||||
opens: 'right',
|
|
||||||
language: '<?= config('Basics')->i18n ?>',
|
|
||||||
"locale": {
|
|
||||||
"customRangeLabel": "<?= lang('datePicker.personalizar') ?>",
|
|
||||||
"format": "YYYY-MM-DD",
|
|
||||||
"separator": " ",
|
|
||||||
"applyLabel": "<?= lang('datePicker.aplicar') ?>",
|
|
||||||
"cancelLabel": "<?= lang('datePicker.limpiar') ?>",
|
|
||||||
|
|
||||||
},
|
|
||||||
"alwaysShowCalendars": true,
|
|
||||||
autoUpdateInput: false,
|
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
bsRangePickerRange.on('apply.daterangepicker', function(ev, picker) {
|
|
||||||
$(this).val(picker.startDate.format('YYYY-MM-DD') + ' ' + picker.endDate.format('YYYY-MM-DD'));
|
|
||||||
theTable
|
|
||||||
.column(i)
|
|
||||||
.search(this.value)
|
|
||||||
.draw();
|
|
||||||
});
|
|
||||||
|
|
||||||
bsRangePickerRange.on('cancel.daterangepicker', function(ev, picker) {
|
|
||||||
$(this).val('');
|
|
||||||
theTable
|
|
||||||
.column(i)
|
|
||||||
.search(this.value)
|
|
||||||
.draw();
|
|
||||||
});
|
|
||||||
|
|
||||||
}
|
|
||||||
else if (i == 11) {
|
|
||||||
// Agregar un selector en la tercera columna
|
|
||||||
$(this).html('<select class="form-control" style="min-width:100px;max-width:120px;font-size:0.8rem !important;"></select>');
|
|
||||||
|
|
||||||
// Agregar opciones al selector
|
|
||||||
var selector = $('select', this);
|
|
||||||
|
|
||||||
selector.append('<option value="">Todos</option>'); // Opción vacía
|
|
||||||
selector.append('<option value="validacion"><?= lang('Pedidos.validacion') ?></option>');
|
|
||||||
selector.append('<option value="produccion"><?= lang('Pedidos.produccion') ?></option>');
|
|
||||||
selector.append('<option value="finalizado"><?= lang('Pedidos.finalizado') ?></option>');
|
|
||||||
selector.append('<option value="enviado"><?= lang('Pedidos.enviado') ?></option>');
|
|
||||||
selector.append('<option value="cancelado"><?= lang('Pedidos.cancelado') ?></option>');
|
|
||||||
|
|
||||||
selector.on('change', function () {
|
|
||||||
var val = $.fn.dataTable.util.escapeRegex(
|
|
||||||
$(this).val()
|
|
||||||
);
|
|
||||||
theTable.column(i).search(val).draw();
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
$(this).html('<input type="text" class="form-control " style="min-width:100px;max-width:120px;font-size:0.8rem !important;" />');
|
if(i==1 || i==2){
|
||||||
|
name = 'bs-rangepicker-range_' + i;
|
||||||
|
$(this).html('<input id="'+name+'" type="text" class="form-control " style="min-width:100px;max-width:120px;font-size:0.8rem !important;" />');
|
||||||
|
var bsRangePickerRange = $('#' + name);
|
||||||
|
bsRangePickerRange.daterangepicker({
|
||||||
|
ranges: {
|
||||||
|
'<?= lang('datePicker.hoy') ?>': [moment(), moment()],
|
||||||
|
'<?= lang('datePicker.ayer') ?>': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
|
||||||
|
'<?= lang('datePicker.ultimos7') ?>': [moment().subtract(6, 'days'), moment()],
|
||||||
|
'<?= lang('datePicker.ultimos30') ?>': [moment().subtract(29, 'days'), moment()],
|
||||||
|
'<?= lang('datePicker.esteMes') ?>': [moment().startOf('month'), moment().endOf('month')],
|
||||||
|
'<?= lang('datePicker.ultimoMes') ?>': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
|
||||||
|
},
|
||||||
|
opens: 'right',
|
||||||
|
language: '<?= config('Basics')->i18n ?>',
|
||||||
|
"locale": {
|
||||||
|
"customRangeLabel": "<?= lang('datePicker.personalizar') ?>",
|
||||||
|
"format": "YYYY-MM-DD",
|
||||||
|
"separator": " ",
|
||||||
|
"applyLabel": "<?= lang('datePicker.aplicar') ?>",
|
||||||
|
"cancelLabel": "<?= lang('datePicker.limpiar') ?>",
|
||||||
|
|
||||||
$('input', this).on('change clear', function () {
|
},
|
||||||
if (theTable.column(i).search() !== this.value) {
|
"alwaysShowCalendars": true,
|
||||||
theTable
|
autoUpdateInput: false,
|
||||||
.column(i)
|
|
||||||
.search(this.value)
|
});
|
||||||
.draw();
|
|
||||||
}
|
bsRangePickerRange.on('apply.daterangepicker', function(ev, picker) {
|
||||||
});
|
$(this).val(picker.startDate.format('YYYY-MM-DD') + ' ' + picker.endDate.format('YYYY-MM-DD'));
|
||||||
}
|
theTable
|
||||||
|
.column(i)
|
||||||
|
.search(this.value)
|
||||||
|
.draw();
|
||||||
|
});
|
||||||
|
|
||||||
|
bsRangePickerRange.on('cancel.daterangepicker', function(ev, picker) {
|
||||||
|
$(this).val('');
|
||||||
|
theTable
|
||||||
|
.column(i)
|
||||||
|
.search(this.value)
|
||||||
|
.draw();
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (i == 11) {
|
||||||
|
// Agregar un selector en la tercera columna
|
||||||
|
$(this).html('<select class="form-control" style="min-width:100px;max-width:120px;font-size:0.8rem !important;"></select>');
|
||||||
|
|
||||||
|
// Agregar opciones al selector
|
||||||
|
var selector = $('select', this);
|
||||||
|
|
||||||
|
selector.append('<option value="">Todos</option>'); // Opción vacía
|
||||||
|
selector.append('<option value="validacion"><?= lang('Pedidos.validacion') ?></option>');
|
||||||
|
selector.append('<option value="produccion"><?= lang('Pedidos.produccion') ?></option>');
|
||||||
|
selector.append('<option value="finalizado"><?= lang('Pedidos.finalizado') ?></option>');
|
||||||
|
selector.append('<option value="enviado"><?= lang('Pedidos.enviado') ?></option>');
|
||||||
|
selector.append('<option value="cancelado"><?= lang('Pedidos.cancelado') ?></option>');
|
||||||
|
|
||||||
|
selector.on('change', function () {
|
||||||
|
var val = $.fn.dataTable.util.escapeRegex(
|
||||||
|
$(this).val()
|
||||||
|
);
|
||||||
|
theTable.column(i).search(val).draw();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$(this).html('<input type="text" class="form-control " style="min-width:100px;max-width:120px;font-size:0.8rem !important;" />');
|
||||||
|
|
||||||
|
$('input', this).on('change clear', function () {
|
||||||
|
if (theTable.column(i).search() !== this.value) {
|
||||||
|
theTable
|
||||||
|
.column(i)
|
||||||
|
.search(this.value)
|
||||||
|
.draw();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$(this).html('<span></span>');
|
$(this).html('<span></span>');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
theTable = $('#tableOfPedidos').DataTable({
|
var theTable = $('#tableOfPedidos').DataTable({
|
||||||
|
select: {
|
||||||
|
style: 'multi',
|
||||||
|
info: false
|
||||||
|
},
|
||||||
orderCellsTop: true,
|
orderCellsTop: true,
|
||||||
fixedHeader: true,
|
fixedHeader: true,
|
||||||
processing: true,
|
processing: true,
|
||||||
@ -156,7 +178,7 @@ $('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
|||||||
searching: true,
|
searching: true,
|
||||||
scrollX: true,
|
scrollX: true,
|
||||||
lengthMenu: [ 5, 10, 25, 50, 75, 100, 250, 500, 1000, 2500 ],
|
lengthMenu: [ 5, 10, 25, 50, 75, 100, 250, 500, 1000, 2500 ],
|
||||||
pageLength: 50,
|
pageLength: 100,
|
||||||
lengthChange: true,
|
lengthChange: true,
|
||||||
"dom": '<"mb-3"l>Brtip',
|
"dom": '<"mb-3"l>Brtip',
|
||||||
"buttons": [
|
"buttons": [
|
||||||
@ -174,8 +196,9 @@ $('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
|||||||
ajax : $.fn.dataTable.pipeline( {
|
ajax : $.fn.dataTable.pipeline( {
|
||||||
url: '<?= route_to('dataTableOfPedidos') ?>',
|
url: '<?= route_to('dataTableOfPedidos') ?>',
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
data: {
|
data: function(d, settings){
|
||||||
estado: "<?= $estadoPedidos ?>",
|
d.estado= "<?= $estadoPedidos ?>";
|
||||||
|
d.showTotal= $('#showTotal').is(':checked')? "1":"0";
|
||||||
},
|
},
|
||||||
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
||||||
async: true,
|
async: true,
|
||||||
@ -230,7 +253,11 @@ $('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{ 'data': actionBtns }
|
{ 'data': actionBtns }
|
||||||
]
|
],
|
||||||
|
drawCallback: function (settings) {
|
||||||
|
$('#total_tirada').text(settings.json.extra.total_tirada);
|
||||||
|
$('#total_aceptado').text(settings.json.extra.total);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
theTable.on( 'draw.dt', function () {
|
theTable.on( 'draw.dt', function () {
|
||||||
@ -266,6 +293,16 @@ $('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
|||||||
window.location.href = url;
|
window.location.href = url;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
theTable.on('click', 'tbody tr', function (e) {
|
||||||
|
e.currentTarget.classList.toggle('selected');
|
||||||
|
});
|
||||||
|
|
||||||
|
$('#showTotal').on('change', function() {
|
||||||
|
theTable.clearPipeline();
|
||||||
|
theTable.ajax.reload(null, false);
|
||||||
|
//theTable.draw();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
<?=$this->endSection() ?>
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
@ -279,6 +316,7 @@ $('#tableOfPedidos thead tr:eq(1) th').each(function (i) {
|
|||||||
|
|
||||||
<?= $this->section('additionalExternalJs') ?>
|
<?= $this->section('additionalExternalJs') ?>
|
||||||
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("themes/vuexy/vendor/libs/datatables-sk/plugins/select/dataTables.select.min.js") ?>"></script>
|
||||||
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
||||||
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
||||||
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
||||||
|
|||||||
Reference in New Issue
Block a user