mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Eliminada carpeta backend en themes, añadidos breadcrumbs
This commit is contained in:
2
.idea/safekat.iml
generated
2
.idea/safekat.iml
generated
@ -2,8 +2,6 @@
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/ci4" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/ci4/app" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/ci4/app/ThirdParty/DatatablesEditor/" isTestSource="false" packagePrefix="DataTables\" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
|
||||
@ -18,12 +18,12 @@ $routes->get('viewmode/(:alpha)', 'Viewmode::index/$1');
|
||||
|
||||
$routes->group('activity', ['namespace' => 'App\Controllers\Sistema'], function ($routes) {
|
||||
$routes->get('', 'Actividad::index', ['as' => 'activityList']);
|
||||
$routes->post('datatable', 'Actividad::datatable', ['as' => 'dataTableOfActividad']);
|
||||
$routes->post('datatable', 'Actividad::datatable', ['as' => 'activityDT']);
|
||||
});
|
||||
|
||||
$routes->group('settings', ['namespace' => 'App\Controllers\Sistema'], function ($routes) {
|
||||
$routes->get('', 'Ajustes::settings', ['as' => 'settingsEdit']);
|
||||
$routes->post('', 'Ajustes::settings', ['as' => 'settingsPost']);
|
||||
$routes->get('', 'Ajustes::settings', ['as' => 'ajustesList']);
|
||||
$routes->post('', 'Ajustes::settings', ['as' => 'ajustesEdit']);
|
||||
});
|
||||
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ class Cliente extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'cliente';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/cliente/';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/cliente/';
|
||||
|
||||
protected $indexRoute = 'clienteList';
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ class ClientePrecios extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'ClientePrecios';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/cliente';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/cliente';
|
||||
|
||||
protected $indexRoute = 'clientepreciosList';
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@ class Clientecontactos extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'cliente-contactos';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/contactos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/contactos/';
|
||||
|
||||
protected $indexRoute = 'contactoDeClienteList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Clienteplantillaprecios extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'clienteplantillaprecios';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/plantillaprecios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/plantillaprecios/';
|
||||
|
||||
protected $indexRoute = 'clienteplantillapreciosList';
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@ class Clienteplantillaprecioslineas extends \App\Controllers\BaseResourceControl
|
||||
|
||||
protected static $controllerSlug = 'clienteplantillaprecioslineas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/plantillaprecios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/plantillaprecios/';
|
||||
|
||||
protected $indexRoute = 'clienteplantillapreciosList';
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ class Clienteusuarios extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'cliente-contactos';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/clientes/usuarios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/clientes/usuarios/';
|
||||
|
||||
protected $indexRoute = 'contactoDeClienteList';
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ class Proveedores extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'proveedores';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/compras/proveedores/';
|
||||
protected static $viewPath = 'themes/vuexy/form/compras/proveedores/';
|
||||
|
||||
protected $indexRoute = 'proveedorList';
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ class ProveedoresTipos extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'proveedorestipos';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/compras/proveedores/';
|
||||
protected static $viewPath = 'themes/vuexy/form/compras/proveedores/';
|
||||
|
||||
protected $indexRoute = 'proveedorTipoList';
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ class Comunidadesautonomas extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'comunidades-autonomas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/comunidades-autonomas/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/comunidades-autonomas/';
|
||||
|
||||
protected $indexRoute = 'comunidadAutonomaList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Formaspagos extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'formas-pagos';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/formasPagoViews/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/formasPagoViews/';
|
||||
|
||||
protected $indexRoute = 'formaDePagoList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Imposiciones extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'imposiciones';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/imposiciones/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/imposiciones/';
|
||||
|
||||
protected $indexRoute = 'imposicionList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Maquinas extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'maquinas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/maquinas/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/maquinas/';
|
||||
|
||||
protected $indexRoute = 'maquinaList';
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ class Maquinasdefecto extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'maquinasdefecto';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/maquinas/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/maquinas/';
|
||||
|
||||
protected $indexRoute = 'maquinaPorDefectoList';
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ class Maquinaspapelesimpresion extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'maquinaspapelesimpresion';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/maquinas/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/maquinas/';
|
||||
|
||||
protected $indexRoute = '';
|
||||
|
||||
|
||||
@ -28,7 +28,7 @@ class Maquinastarifasimpresion extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'maquinastarifasimpresion';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/maquinas/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/maquinas/';
|
||||
|
||||
protected $indexRoute = 'maquinasTarifaImpresionList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Paises extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'paises';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/paises/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/paises/';
|
||||
|
||||
protected $indexRoute = 'paisList';
|
||||
|
||||
@ -31,6 +31,13 @@ class Paises extends \App\Controllers\BaseResourceController
|
||||
{
|
||||
$this->viewData['pageTitle'] = lang('Paises.moduleTitle');
|
||||
$this->viewData['usingSweetAlert'] = true;
|
||||
|
||||
// Breadcrumbs (IMN)
|
||||
$this->viewData['breadcrumb'] = [
|
||||
['title' => lang("App.menu_configuration"), 'route' => "javascript:void(0);", 'active' => false],
|
||||
['title' => lang("App.menu_paises"), 'route' => site_url('configuracion/paises'), 'active' => true]
|
||||
];
|
||||
|
||||
parent::initController($request, $response, $logger);
|
||||
}
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ class Papelesgenericos extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'papelesgenericos';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/papel/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/papel/';
|
||||
|
||||
protected $indexRoute = 'papelGenericoList';
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ class Papelesimpresion extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'papelesimpresion';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/papel/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/papel/';
|
||||
|
||||
protected $indexRoute = 'papelImpresionList';
|
||||
|
||||
|
||||
@ -21,7 +21,7 @@ class Papelformato extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'papelformato';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/papelformato/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/papelformato/';
|
||||
|
||||
protected $indexRoute = 'papelFormatoList';
|
||||
|
||||
|
||||
@ -32,7 +32,7 @@ class Papelimpresionmargenes extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'papelimpresionmargenes';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/papelesimpresion/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/papelesimpresion/';
|
||||
|
||||
protected $indexRoute = 'papelesImpresionList';
|
||||
|
||||
|
||||
@ -35,7 +35,7 @@ class Papelimpresiontipologias extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'papelimpresiontipologias';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/papel/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/papel/';
|
||||
|
||||
protected $indexRoute = 'papelImpresionTipologiaList';
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ class Provincias extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'provincias';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/provincias/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/provincias/';
|
||||
|
||||
protected $indexRoute = 'provinciaList';
|
||||
|
||||
|
||||
@ -1,21 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Seriefactura extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Serie factura';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Serviciocliente extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Servicio cliente';
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Tamanioformatos extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Tamaño formatos';
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Tamaniolibros extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Tamaño libros';
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Tareaservicio extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Tarea servicio';
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ class Tipologias extends \App\Controllers\GoBaseController
|
||||
protected static $pluralObjectName = 'Tipologias Libros';
|
||||
protected static $controllerSlug = 'tipologiaslibros';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/configuracion/tipologias/';
|
||||
protected static $viewPath = 'themes/vuexy/form/configuracion/tipologias/';
|
||||
|
||||
protected $indexRoute = 'tipologiaLibrosList';
|
||||
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers\Configuracion;
|
||||
use App\Controllers\BaseController;
|
||||
|
||||
|
||||
class Trabajo extends BaseController
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function index()
|
||||
{
|
||||
echo 'Trabajo';
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function add()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -25,7 +25,7 @@ class Users extends \App\Controllers\GoBaseController {
|
||||
protected static $pluralObjectName = 'Users';
|
||||
protected static $controllerSlug = 'users';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/user/';
|
||||
protected static $viewPath = 'themes/vuexy/form/user/';
|
||||
|
||||
protected $indexRoute = 'userList';
|
||||
|
||||
@ -38,6 +38,13 @@ class Users extends \App\Controllers\GoBaseController {
|
||||
$this->user_model = new UserModel();
|
||||
|
||||
$this->viewData['pageTitle'] = lang('Users.moduleTitle');
|
||||
|
||||
// Breadcrumbs (IMN)
|
||||
$this->viewData['breadcrumb'] = [
|
||||
['title' => lang("App.menu_configuration"), 'route' => "javascript:void(0);", 'active' => false],
|
||||
['title' => lang("App.menu_users"), 'route' => site_url('configuracion/users'), 'active' => true]
|
||||
];
|
||||
|
||||
parent::initController($request, $response, $logger);
|
||||
|
||||
}
|
||||
|
||||
@ -17,7 +17,7 @@ class Js_loader extends BaseController
|
||||
function comparadorCosidoTapaBlanda_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/comparador.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/comparador.js');
|
||||
|
||||
}
|
||||
|
||||
@ -37,67 +37,67 @@ class Js_loader extends BaseController
|
||||
function datosLibro_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_datosLibroItems.js');
|
||||
}
|
||||
|
||||
function previsualizador_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/previews.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/previews.js');
|
||||
}
|
||||
|
||||
function lineasPresupuesto_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_lineasPresupuestoItems.js');
|
||||
}
|
||||
|
||||
function tiradasAlternativas_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_tiradasAlternativasItems.js');
|
||||
}
|
||||
|
||||
function datosServicios_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_datosServiciosItems.js');
|
||||
}
|
||||
|
||||
function datosEnvios_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_datosEnvios.js');
|
||||
}
|
||||
|
||||
function resumenPresupuestos_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_resumenPresupuestos.js');
|
||||
}
|
||||
|
||||
function presupuestos_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cosidotapablanda/_presupuestos.js');
|
||||
return view('themes/vuexy/form/presupuestos/cosidotapablanda/_presupuestos.js');
|
||||
}
|
||||
|
||||
function presupuestoCliente_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cliente/presupuestoCliente.js');
|
||||
return view('themes/vuexy/form/presupuestos/cliente/presupuestoCliente.js');
|
||||
}
|
||||
|
||||
function presupuestoClienteTipoLibro_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cliente/tipoLibroItems.js');
|
||||
return view('themes/vuexy/form/presupuestos/cliente/tipoLibroItems.js');
|
||||
}
|
||||
|
||||
function presupuestoClienteDisenioLibro_js()
|
||||
{
|
||||
$this->response->setHeader('Content-Type', 'text/javascript');
|
||||
return view('themes/backend/vuexy/form/presupuestos/cliente/disenioLibro.js');
|
||||
return view('themes/vuexy/form/presupuestos/cliente/disenioLibro.js');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -32,7 +32,7 @@ class Buscador extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'buscador';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/buscador/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/buscador/';
|
||||
|
||||
protected $indexRoute = 'buscadorPresupuestosList';
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ class Cosidotapablanda extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'cosidotapablanda';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/cosidotapablanda/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/cosidotapablanda/';
|
||||
|
||||
protected $indexRoute = 'cosidotapablandaList';
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ class Presupuestoacabados extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-acabados';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ class Presupuestocliente extends \App\Controllers\GoBaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuestocliente';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/cliente/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/cliente/';
|
||||
|
||||
protected $indexRoute = 'cosidotapablandaList';
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ class Presupuestodirecciones extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-direcciones';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -23,7 +23,7 @@ class Presupuestoencuadernaciones extends \App\Controllers\BaseResourceControlle
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-encuadernaciones';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||
|
||||
@ -24,7 +24,7 @@ class Presupuestomanipulados extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-manipulado';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||
|
||||
@ -19,7 +19,7 @@ class Presupuestopreimpresiones extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-preimpresiones';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ class Presupuestoserviciosextra extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-servicios-extra';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Presupuestotiradasalternativas extends \App\Controllers\BaseResourceContro
|
||||
|
||||
protected static $controllerSlug = 'presupuesto-tiradas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
|
||||
protected static $viewPath = 'themes/vuexy/form/presupuestos/';
|
||||
|
||||
|
||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||
|
||||
@ -14,7 +14,7 @@ class Actividad extends BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'activity';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/activity/';
|
||||
protected static $viewPath = 'themes/vuexy/form/activity/';
|
||||
|
||||
protected static $indexRoute = 'activityList';
|
||||
|
||||
|
||||
@ -13,20 +13,27 @@ class Ajustes extends BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'settings';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/settings/';
|
||||
protected static $viewPath = 'themes/vuexy/form/settings/';
|
||||
|
||||
protected static string $formViewName = 'settingsForm';
|
||||
|
||||
protected static $singularObjectName = 'settings';
|
||||
protected static $singularObjectNameCc = 'settings';
|
||||
|
||||
protected $indexRoute = 'settingForm';
|
||||
protected $indexRoute = 'ajustesList';
|
||||
|
||||
|
||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||
{
|
||||
$this->viewData['pageTitle'] = lang('Provincias.moduleTitle');
|
||||
$this->viewData['usingSweetAlert'] = true;
|
||||
|
||||
// Breadcrumbs (IMN)
|
||||
$this->viewData['breadcrumb'] = [
|
||||
['title' => lang("App.menu_configuration"), 'route' => "javascript:void(0);", 'active' => false],
|
||||
['title' => lang("App.menu_settings"), 'route' => route_to('ajustesList'), 'active' => true]
|
||||
];
|
||||
|
||||
parent::initController($request, $response, $logger);
|
||||
}
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Tarifaacabado extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifasacabado';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/acabado/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/acabado/';
|
||||
|
||||
protected $indexRoute = 'tarifaAcabadoList';
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ class Tarifaacabadolineas extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifa-acabado-lineas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/acabado/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/acabado/';
|
||||
|
||||
protected $indexRoute = 'tarifaAcabadoLineaList';
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ class Tarifaencuadernacionlineas extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifaencuadernacionlineas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/encuadernacion/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/encuadernacion/';
|
||||
|
||||
protected $indexRoute = 'tarifaEncuadernacionLineaList';
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ class Tarifaencuadernacionlineashoras extends \App\Controllers\BaseResourceContr
|
||||
|
||||
protected static $controllerSlug = 'tarifaencuadernacionlineashoras';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/encuadernacion/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/encuadernacion/';
|
||||
|
||||
protected $indexRoute = 'tarifaEncuadernacionLineaHorasList';
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
||||
protected static $pluralObjectName = 'Tarifasextra';
|
||||
protected static $controllerSlug = 'tarifaextra';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/extra/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/extra/';
|
||||
|
||||
protected $indexRoute = 'tarifaextraList';
|
||||
|
||||
|
||||
@ -34,7 +34,7 @@ class Tarifamanipuladolineas extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifamanipuladolineas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/manipulado/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/manipulado/';
|
||||
|
||||
protected $indexRoute = 'tarifaManipuladoLineaList';
|
||||
|
||||
|
||||
@ -15,7 +15,7 @@ class Tarifapreimpresion extends \App\Controllers\GoBaseController
|
||||
protected static $pluralObjectName = 'Tarifaspreimpresion';
|
||||
protected static $controllerSlug = 'tarifapreimpresion';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/preimpresion/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/preimpresion/';
|
||||
|
||||
protected $indexRoute = 'tarifapreimpresionList';
|
||||
|
||||
|
||||
@ -26,7 +26,7 @@ class Tarifasencuadernacion extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifaencuadernacion';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/encuadernacion/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/encuadernacion/';
|
||||
|
||||
protected $indexRoute = 'tarifaEncuadernacionList';
|
||||
|
||||
|
||||
@ -27,7 +27,7 @@ class Tarifasenvios extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'tarifasenvios';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/envios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/envios/';
|
||||
|
||||
protected $indexRoute = 'tarifaEnvioList';
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'tarifasenviosprecios';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/envios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/envios/';
|
||||
|
||||
protected $indexRoute = 'tarifaEnvioPrecioList';
|
||||
|
||||
|
||||
@ -30,7 +30,7 @@ class Tarifasenvioszonas extends \App\Controllers\BaseResourceController {
|
||||
|
||||
protected static $controllerSlug = 'tarifasenvioszonas';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/envios/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/envios/';
|
||||
|
||||
protected $indexRoute = 'tarifaEnvioZonaList';
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ class Tarifasmanipulado extends \App\Controllers\BaseResourceController
|
||||
|
||||
protected static $controllerSlug = 'tarifamanipulado';
|
||||
|
||||
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/manipulado/';
|
||||
protected static $viewPath = 'themes/vuexy/form/tarifas/manipulado/';
|
||||
|
||||
protected $indexRoute = 'tarifaManipuladoList';
|
||||
|
||||
|
||||
@ -301,7 +301,7 @@ class ClienteModel extends \App\Models\BaseModel
|
||||
->orLike("t1.soporte_id", $search)
|
||||
->orLike("t1.forma_pago_id", $search)
|
||||
->orLike("t1.vencimiento", $search)
|
||||
->orLike("t5.id_user", $search)
|
||||
->orLike("t5.id", $search)
|
||||
->orLike("t5.first_name", $search)
|
||||
->orLike("t5.last_name", $search)
|
||||
->orLike("t7.id", $search)
|
||||
|
||||
@ -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() ?>
|
||||
@ -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>
|
||||
@ -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
|
||||
@ -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">
|
||||
@ -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"), [
|
||||
@ -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"), [
|
||||
@ -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"
|
||||
@ -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">
|
||||
@ -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">
|
||||
@ -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">
|
||||
@ -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"]) ?>
|
||||
@ -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"), [
|
||||
@ -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"]) ?>
|
||||
@ -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"]) ?>
|
||||
@ -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">
|
||||
@ -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"
|
||||
@ -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">
|
||||
@ -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"
|
||||
@ -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">
|
||||
@ -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"]) ?>
|
||||
@ -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">
|
||||
@ -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"
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user