mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'dev/presupuesto_cliente_2'
Main See merge request jjimenez/safekat!240
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<!--Content Body-->
|
||||
@ -151,7 +151,6 @@
|
||||
<th><?=lang("Actividad.os")?></th>
|
||||
<th><?=lang("Actividad.browser")?></th>
|
||||
<th><?=lang("Actividad.createdAt")?></th>
|
||||
<th class="text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -171,13 +170,7 @@
|
||||
|
||||
|
||||
const lastColNr = $('#activityTable').find("tr:first th").length - 1;
|
||||
const actionBtns = function(data) {
|
||||
return `<td class="text-right py-0 align-middle">
|
||||
<div class="btn-group btn-group-sm">
|
||||
<button class="btn btn-sm btn-danger btn-delete ms-1" data-id="${data.id}"><?= lang('Basic.global.Delete') ?></button>
|
||||
</div>
|
||||
</td>`;
|
||||
};
|
||||
|
||||
theTable = $('#activityTable').DataTable({
|
||||
processing: true,
|
||||
serverSide: true,
|
||||
@ -198,10 +191,10 @@
|
||||
stateSave: true,
|
||||
order: [[1, 'asc']],
|
||||
language: {
|
||||
url: "/themes/vuexy/vendors/libs/datatables-sk/plugins/i18n/es-ES.json"
|
||||
url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json"
|
||||
},
|
||||
ajax : $.fn.dataTable.pipeline( {
|
||||
url: '<?= route_to('dataTableOfActividad') ?>',
|
||||
url: '<?= route_to('activityDT') ?>',
|
||||
method: 'POST',
|
||||
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
||||
async: true,
|
||||
@ -220,60 +213,8 @@
|
||||
{ 'data': 'ip' },
|
||||
{ 'data': 'os' },
|
||||
{ 'data': 'browser' },
|
||||
{ 'data': 'created_at' },
|
||||
{ 'data': actionBtns }
|
||||
{ 'data': 'created_at' }
|
||||
]
|
||||
});
|
||||
|
||||
theTable.on( 'draw.dt', function () {
|
||||
const boolCols = [7];
|
||||
for (let coln of boolCols) {
|
||||
theTable.column(coln, { page: 'current' }).nodes().each( function (cell, i) {
|
||||
cell.innerHTML = cell.innerHTML == '1' ? '<i class="text-success bi bi-check-lg"></i>' : '';
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
/*$(document).on('click', '.btn-delete', function(e) {
|
||||
Swal.fire({
|
||||
title: '<?= lang('Basic.global.sweet.sureToDeleteTitle', [mb_strtolower(lang('Paises.pais'))]) ?>',
|
||||
text: '<?= lang('Basic.global.sweet.sureToDeleteText') ?>',
|
||||
icon: 'warning',
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: '#3085d6',
|
||||
confirmButtonText: '<?= lang('Basic.global.sweet.deleteConfirmationButton') ?>',
|
||||
cancelButtonText: '<?= lang('Basic.global.Cancel') ?>',
|
||||
cancelButtonColor: '#d33'
|
||||
})
|
||||
.then((result) => {
|
||||
const dataId = $(this).data('id');
|
||||
const row = $(this).closest('tr');
|
||||
if (result.value) {
|
||||
$.ajax({
|
||||
url: `<?= route_to('activityList') ?>/${dataId}`,
|
||||
method: 'DELETE',
|
||||
}).done((data, textStatus, jqXHR) => {
|
||||
Toast.fire({
|
||||
icon: 'success',
|
||||
title: data.msg ?? jqXHR.statusText,
|
||||
});
|
||||
|
||||
theTable.clearPipeline();
|
||||
theTable.row($(row)).invalidate().draw();
|
||||
}).fail((jqXHR, textStatus, errorThrown) => {
|
||||
Toast.fire({
|
||||
icon: 'error',
|
||||
title: jqXHR.responseJSON.messages.error,
|
||||
});
|
||||
})
|
||||
}
|
||||
});
|
||||
});*/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?= $this->endSection() ?>
|
||||
0
ci4/app/Views/themes/vuexy/form/clientes/cliente/_clienteDireccionesForm.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/cliente/_clienteDireccionesForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/cliente/_clienteFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/cliente/_clienteFormItems.php
Executable file → Normal file
@ -566,7 +566,7 @@
|
||||
|
||||
<?php if ($formAction !== route_to('clienteAdd')){ ?>
|
||||
<div class="tab-pane fade" id="tarifascliente" role="tabpanel">
|
||||
<?= view("themes/backend/vuexy/form/clientes/cliente/convert2templateModal") ?>
|
||||
<?= view("themes/vuexy/form/clientes/cliente/convert2templateModal") ?>
|
||||
<div class='row'>
|
||||
<div class="col-md-12 col-lg-4 px-4">
|
||||
<div class="mb-3">
|
||||
@ -628,7 +628,7 @@
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade" id="domicilio-entrega" role="tabpanel">
|
||||
<?= view("themes/backend/vuexy/form/clientes/cliente/_clienteDireccionesForm") ?>
|
||||
<?= view("themes/vuexy/form/clientes/cliente/_clienteDireccionesForm") ?>
|
||||
<table id="tableOfDireccionesEnvio" class="table dt-responsive dataTable" style="width: 100%;">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/clientes/cliente/convert2templateModal.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/cliente/convert2templateModal.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -15,7 +15,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/clientes/cliente/_clienteFormItems") ?>
|
||||
<?= view("themes/vuexy/form/clientes/cliente/_clienteFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="pt-4">
|
||||
<input
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/cliente/viewClienteList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/clientes/contactos/_contactoDeClienteFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/contactos/_contactoDeClienteFormItems.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/contactos/viewContactoDeClienteForm.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/contactos/viewContactoDeClienteForm.php
Executable file → Normal file
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("Themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/clientes/contactos/_contactoDeClienteFormItems") ?>
|
||||
<?= view("themes/vuexy/form/clientes/contactos/_contactoDeClienteFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("contactoDeClienteList"), lang("Basic.global.Cancel"), [
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/clientes/contactos/viewContactoDeClienteList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/contactos/viewContactoDeClienteList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/_distribuidorDeClienteFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/_distribuidorDeClienteFormItems.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/viewDistribuidorDeClienteForm.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/viewDistribuidorDeClienteForm.php
Executable file → Normal file
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("Themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/clientes/distribuidores/_distribuidorDeClienteFormItems") ?>
|
||||
<?= view("themes/vuexy/form/clientes/distribuidores/_distribuidorDeClienteFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("distribuidorDeClienteList"), lang("Basic.global.Cancel"), [
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/viewDistribuidorDeClienteList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/distribuidores/viewDistribuidorDeClienteList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/_ClienteplantillapreciosFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/_ClienteplantillapreciosFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -14,7 +14,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/clientes/plantillaprecios/_ClienteplantillapreciosFormItems") ?>
|
||||
<?= view("themes/vuexy/form/clientes/plantillaprecios/_ClienteplantillapreciosFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/clientes/plantillaprecios/viewClienteplantillapreciosList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/_proveedorFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/_proveedorFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/_proveedorTipoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/_proveedorTipoFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/compras/proveedores/_proveedorFormItems") ?>
|
||||
<?= view("themes/vuexy/form/compras/proveedores/_proveedorFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
|
||||
<div class="pt-4">
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorTipoForm.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorTipoForm.php
Executable file → Normal file
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("Themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/compras/proveedores/_proveedorTipoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/compras/proveedores/_proveedorTipoFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("proveedorTipoList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorTipoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/compras/proveedores/viewProveedorTipoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/_comunidadAutonomaFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/_comunidadAutonomaFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/viewComunidadAutonomaForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/viewComunidadAutonomaForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/comunidades-autonomas/_comunidadAutonomaFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/comunidades-autonomas/_comunidadAutonomaFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("comunidadAutonomaList"), lang("Basic.global.Cancel"), [
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/viewComunidadAutonomaList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/comunidades-autonomas/viewComunidadAutonomaList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/_formaDePagoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/_formaDePagoFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/viewFormaDePagoForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/viewFormaDePagoForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/formasPagoViews/_formaDePagoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/formasPagoViews/_formaDePagoFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("formaDePagoList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/viewFormaDePagoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/formas-pago/viewFormaDePagoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/imposiciones/_imposicionFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/imposiciones/_imposicionFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("imposicionList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/imposiciones/viewImposicionList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaPorDefectoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/_maquinaPorDefectoFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -15,7 +15,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/maquinas/_maquinaFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/maquinas/_maquinaFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="py-4">
|
||||
<input type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
4
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaPorDefectoForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaPorDefectoForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -13,7 +13,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/maquinas/_maquinaPorDefectoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/maquinas/_maquinaPorDefectoFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaPorDefectoList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/maquinas/viewMaquinaPorDefectoList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/paises/_paisFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/paises/_paisFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/paises/viewPaisForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/paises/viewPaisForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/paises/_paisFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/paises/_paisFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("paisList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/paises/viewPaisList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/paises/viewPaisList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/papel/_papelGenericoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/papel/_papelGenericoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/papel/_papelImpresionFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/papel/_papelImpresionFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelGenericoForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelGenericoForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/papel/_papelGenericoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/papel/_papelGenericoFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelGenericoList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelGenericoList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
4
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelImpresionForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelImpresionForm.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -14,7 +14,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/papel/_papelImpresionFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/papel/_papelImpresionFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input type="submit"
|
||||
class="btn btn-primary float-start me-sm-3 me-1"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelImpresionList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/papel/viewPapelImpresionList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/select2bs5') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/_papelFormatoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/_papelFormatoFormItems.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/viewPapelFormatoForm.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/viewPapelFormatoForm.php
Executable file → Normal file
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("Themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/papelformato/_papelFormatoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/papelformato/_papelFormatoFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("papelFormatoList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/viewPapelFormatoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/papelformato/viewPapelFormatoList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/provincias/_provinciaFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/provincias/_provinciaFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/provincias/viewProvinciaForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/provincias/viewProvinciaForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -13,7 +13,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/provincias/_provinciaFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/provincias/_provinciaFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("provinciaList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start"]) ?>
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/configuracion/provincias/viewProvinciaList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/configuracion/provincias/viewProvinciaList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?=$this->include('themes_commonPartialsBs/select2bs5') ?>
|
||||
<?=$this->include('themes_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes_commonPartialsBs/sweetalert') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/_tipologiaLibrosFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/_tipologiaLibrosFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/viewTipologiaLibrosForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/viewTipologiaLibrosForm.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -12,7 +12,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/configuracion/tipologias/_tipologiaLibrosFormItems") ?>
|
||||
<?= view("themes/vuexy/form/configuracion/tipologias/_tipologiaLibrosFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
<div class="card-footer">
|
||||
<?= anchor(route_to("tipologiaLibrosList2"), lang("Basic.global.Cancel"), [
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/viewTipologiaLibrosList.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/configuracion/tipologias/viewTipologiaLibrosList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/group/viewUserGroupForm.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/group/viewUserGroupForm.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/group/viewUserGroupList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/group/viewUserGroupList.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/my/notification.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/my/notification.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/my/view.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/my/view.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_comentariosItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_comentariosItems.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.php
Executable file → Normal file
@ -9,7 +9,7 @@
|
||||
<div id="accordionEnviosTip" class="accordion-collapse collapse show" data-bs-parent="#accordionEnvios">
|
||||
<div class="accordion-body">
|
||||
<div id='alert-envios'></div>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm") ?>
|
||||
<div id='rowTable' class='row'>
|
||||
<table id="tableOfDireccionesEnvio" class="table dt-responsive dataTable px-2 update-resumen-presupuesto" style="width: 95%;">
|
||||
<thead>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestoDireccionesForm.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_previewItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_previewItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestoItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/comparador.js
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/comparador.js
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/previews.js
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/previews.js
Executable file → Normal file
22
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php
Executable file → Normal file
22
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
@ -25,17 +25,17 @@
|
||||
value="<?= $isCosido ?>"></input>
|
||||
<input type="hidden" name="POD" id="POD" class="form-control"
|
||||
value="<?= $POD ?>"></input>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems") ?>
|
||||
<?php if (str_contains($formAction, 'edit')): ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_previewItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_comentariosItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestoItems") ?>
|
||||
<?= view("themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_datosPresupuestoClienteItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_previewItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_comentariosItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestoItems") ?>
|
||||
<?= view("themes/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems") ?>
|
||||
<?php else: ?>
|
||||
<input type="hidden" name="total_presupuesto" id="total_presupuesto" class="form-control"
|
||||
value="0.0"></input>
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/presupuestos/cosidotapablanda/viewCosidotapablandaList.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/presupuestos/index.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/presupuestos/index.php
Executable file → Normal file
@ -1,4 +1,4 @@
|
||||
<?= $this->extend('themes/backend/vuexy/main/presupuestos_layout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/presupuestos_layout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="container-xxl flex-grow-1 container-p-y">
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/presupuestos/tapa-blanda-encolada.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/presupuestos/tapa-blanda-encolada.php
Executable file → Normal file
@ -1,4 +1,4 @@
|
||||
<?= $this->extend('themes/backend/vuexy/main/presupuestos_layout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/presupuestos_layout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="container-xxl flex-grow-1 container-p-y">
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/profile/index.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/profile/index.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/general_settings_layout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/general_settings_layout') ?>
|
||||
|
||||
<?= $this->section('content'); ?>
|
||||
<!--Content Body-->
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/profile/index_old.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/profile/index_old.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -12,7 +12,7 @@
|
||||
<div class="card-body">
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/settings/_settingsFormItems") ?>
|
||||
<?= view("themes/vuexy/form/settings/_settingsFormItems") ?>
|
||||
</div><!-- /.card-body -->
|
||||
|
||||
<div class="card-footer">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/acabado/_tarifaAcabadoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/acabado/_tarifaAcabadoFormItems.php
Executable file → Normal file
12
ci4/app/Views/themes/vuexy/form/tarifas/acabado/viewTarifaAcabadoForm.php
Executable file → Normal file
12
ci4/app/Views/themes/vuexy/form/tarifas/acabado/viewTarifaAcabadoForm.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -15,7 +15,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/acabado/_tarifaAcabadoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/acabado/_tarifaAcabadoFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input type="submit"
|
||||
class="btn btn-primary float-start me-sm-3 me-1"
|
||||
@ -28,7 +28,7 @@
|
||||
</div><!-- //.card -->
|
||||
</div><!--//.col -->
|
||||
|
||||
<?php if($formAction == route_to('createTarifaAcabado')): ?>
|
||||
<?php if($formAction == route_to('tarifaAcabadoAdd')): ?>
|
||||
<div class="accordion mt-3" id="accordionAcabadoLineas" style="visibility:hidden" >
|
||||
<?php else: ?>
|
||||
<div class="accordion mt-3" id="accordionAcabadoLineas" style="visibility:visible" >
|
||||
@ -87,7 +87,7 @@
|
||||
|
||||
editor = new $.fn.dataTable.Editor( {
|
||||
ajax: {
|
||||
url: "<?= route_to('editorOfTarifaAcabadoLineas') ?>",
|
||||
url: "<?= route_to('tarifaAcabadoLineasDTE') ?>",
|
||||
headers: {
|
||||
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v,
|
||||
},
|
||||
@ -155,7 +155,7 @@
|
||||
info: false,
|
||||
dom: '<"mt-4"><"float-end"B><"float-start"l><t><"mt-4 mb-3"p>',
|
||||
ajax : $.fn.dataTable.pipeline( {
|
||||
url: '<?= route_to('dataTableOfTarifaAcabadoLineas') ?>',
|
||||
url: '<?= route_to('tarifaAcabadoLineasDT') ?>',
|
||||
data: {
|
||||
id_tarifaacabado: id,
|
||||
},
|
||||
@ -225,7 +225,7 @@
|
||||
const row = $(this).closest('tr');
|
||||
if ($.isNumeric(dataId)) {
|
||||
$.ajax({
|
||||
url: `/tarifas/tarifaacabadolineas/delete/${dataId}`,
|
||||
url: `/tarifas/acabados/lineas/delete/${dataId}`,
|
||||
method: 'GET',
|
||||
}).done((data, textStatus, jqXHR) => {
|
||||
$('#confirm2delete').modal('toggle');
|
||||
|
||||
10
ci4/app/Views/themes/vuexy/form/tarifas/acabado/viewTarifaAcabadoList.php
Executable file → Normal file
10
ci4/app/Views/themes/vuexy/form/tarifas/acabado/viewTarifaAcabadoList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@ -8,7 +8,7 @@
|
||||
<div class="card card-info">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title"><?= lang('Tarifaacabado.tarifaacabadoList') ?></h3>
|
||||
<?= anchor(route_to('newTarifaAcabado'), lang('Basic.global.addNew') . ' ' . lang('Tarifaacabado.tarifaacabado'), ['class' => 'btn btn-primary float-end']); ?>
|
||||
<?= anchor(route_to('tarifaAcabadoAdd'), lang('Basic.global.addNew') . ' ' . lang('Tarifaacabado.tarifaacabado'), ['class' => 'btn btn-primary float-end']); ?>
|
||||
</div><!--//.card-header -->
|
||||
<div class="card-body">
|
||||
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
||||
@ -76,7 +76,7 @@
|
||||
url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json"
|
||||
},
|
||||
ajax : $.fn.dataTable.pipeline( {
|
||||
url: '<?= route_to('dataTableOfTarifasAcabado') ?>',
|
||||
url: '<?= route_to('tarifaAcabadoDT') ?>',
|
||||
method: 'POST',
|
||||
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
||||
async: true,
|
||||
@ -109,7 +109,7 @@
|
||||
});
|
||||
|
||||
$(document).on('click', '.btn-edit', function(e) {
|
||||
window.location.href = `/tarifas/tarifaacabado/edit/${$(this).attr('data-id')}`;
|
||||
window.location.href = `/tarifas/acabados/edit/${$(this).attr('data-id')}`;
|
||||
});
|
||||
|
||||
$(document).on('click', '.btn-delete', function(e) {
|
||||
@ -121,7 +121,7 @@
|
||||
const row = $(this).closest('tr');
|
||||
if ($.isNumeric(dataId)) {
|
||||
$.ajax({
|
||||
url: `/tarifas/tarifaacabado/delete/${dataId}`,
|
||||
url: `/tarifas/acabados/delete/${dataId}`,
|
||||
method: 'GET',
|
||||
}).done((data, textStatus, jqXHR) => {
|
||||
$('#confirm2delete').modal('toggle');
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/_tarifaEncuadernacionFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/_tarifaEncuadernacionFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/viewTarifaEncuadernacionForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/viewTarifaEncuadernacionForm.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -15,7 +15,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/encuadernacion/_tarifaEncuadernacionFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/encuadernacion/_tarifaEncuadernacionFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input type="submit"
|
||||
class="btn btn-primary float-start me-sm-3 me-1"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/viewTarifaEncuadernacionList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/tarifas/encuadernacion/viewTarifaEncuadernacionList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/envios/_tarifaEnvioFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/envios/_tarifaEnvioFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/envios/viewTarifaEnvioForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/envios/viewTarifaEnvioForm.php
Executable file → Normal file
@ -2,7 +2,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -15,7 +15,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/envios/_tarifaEnvioFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/envios/_tarifaEnvioFormItems") ?>
|
||||
|
||||
<div class="pt-4">
|
||||
<input type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/tarifas/envios/viewTarifaEnvioList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/tarifas/envios/viewTarifaEnvioList.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/extra/_tarifaextraFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/extra/_tarifaextraFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/extra/viewTarifaextraForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/extra/viewTarifaextraForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -12,7 +12,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/extra/_tarifaextraFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/extra/_tarifaextraFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/tarifas/extra/viewTarifaextraList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/tarifas/extra/viewTarifaextraList.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/_tarifaManipuladoFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/_tarifaManipuladoFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/viewTarifaManipuladoForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/viewTarifaManipuladoForm.php
Executable file → Normal file
@ -1,7 +1,7 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
@ -14,7 +14,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/manipulado/_tarifaManipuladoFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/manipulado/_tarifaManipuladoFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input type="submit"
|
||||
class="btn btn-primary float-start me-sm-3 me-1"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/viewTarifaManipuladoList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/tarifas/manipulado/viewTarifaManipuladoList.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/_tarifapreimpresionFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/_tarifapreimpresionFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/viewTarifapreimpresionForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/viewTarifapreimpresionForm.php
Executable file → Normal file
@ -1,6 +1,6 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -12,7 +12,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/tarifas/preimpresion/_tarifapreimpresionFormItems") ?>
|
||||
<?= view("themes/vuexy/form/tarifas/preimpresion/_tarifapreimpresionFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
2
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/viewTarifapreimpresionList.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/tarifas/preimpresion/viewTarifapreimpresionList.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||
<?=$this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?=$this->section('content'); ?>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/test_js/test_js.js
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/test_js/test_js.js
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/test_js/viewTest.php
Executable file → Normal file
2
ci4/app/Views/themes/vuexy/form/test_js/viewTest.php
Executable file → Normal file
@ -1,4 +1,4 @@
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
|
||||
|
||||
<?= $this->section("additionalInlineJs") ?>
|
||||
|
||||
0
ci4/app/Views/themes/vuexy/form/user/_userFormItems.php
Executable file → Normal file
0
ci4/app/Views/themes/vuexy/form/user/_userFormItems.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/user/viewUserForm.php
Executable file → Normal file
4
ci4/app/Views/themes/vuexy/form/user/viewUserForm.php
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||
<?= $this->extend('themes/backend/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||
<?= $this->section("content") ?>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
@ -12,7 +12,7 @@
|
||||
<?= csrf_field() ?>
|
||||
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||
<?= view("themes/backend/vuexy/form/user/_userFormItems") ?>
|
||||
<?= view("themes/vuexy/form/user/_userFormItems") ?>
|
||||
<div class="pt-4">
|
||||
<input
|
||||
type="submit"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user