mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'dev/pedidos_v1'
Main See merge request jjimenez/safekat!272
This commit is contained in:
@ -33,7 +33,7 @@ $routes->group('settings', ['namespace' => 'App\Controllers\Sistema'], function
|
|||||||
* --------------------------------------------------------------------
|
* --------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Rutas para configuraciones */
|
/* Rutas para tarifas */
|
||||||
$routes->group('tarifas', ['namespace' => 'App\Controllers\Tarifas'], function ($routes) {
|
$routes->group('tarifas', ['namespace' => 'App\Controllers\Tarifas'], function ($routes) {
|
||||||
|
|
||||||
/* Cliente */
|
/* Cliente */
|
||||||
@ -54,6 +54,33 @@ $routes->group('tarifas', ['namespace' => 'App\Controllers\Tarifas'], function (
|
|||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/* Rutas para configuraciones */
|
||||||
|
$routes->group('configuracion', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
|
||||||
|
|
||||||
|
/* Ubicaciones */
|
||||||
|
$routes->group('ubicaciones', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
|
||||||
|
|
||||||
|
$routes->get('', 'Ubicaciones::index', ['as' => 'ubicacionesList']);
|
||||||
|
$routes->match(['get', 'post'], 'add', 'Ubicaciones::add', ['as' => 'ubicacionesAdd']);
|
||||||
|
$routes->match(['get', 'post'], 'edit/(:num)', 'Ubicaciones::edit/$1', ['as' => 'ubicacionesEdit']);
|
||||||
|
$routes->get('delete/(:num)', 'Ubicaciones::delete/$1', ['as' => 'ubicacionesDelete']);
|
||||||
|
$routes->post('datatable', 'Ubicaciones::datatable', ['as' => 'ubicacionesDT']);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
/* Series Factura */
|
||||||
|
$routes->group('series-facturas', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
|
||||||
|
|
||||||
|
$routes->get('', 'SeriesFacturas::index', ['as' => 'seriesFacturasList']);
|
||||||
|
$routes->match(['get', 'post'], 'add', 'SeriesFacturas::add', ['as' => 'seriesFacturasAdd']);
|
||||||
|
$routes->match(['get', 'post'], 'edit/(:num)', 'SeriesFacturas::edit/$1', ['as' => 'seriesFacturasEdit']);
|
||||||
|
$routes->get('delete/(:num)', 'SeriesFacturas::delete/$1', ['as' => 'seriesFacturasDelete']);
|
||||||
|
$routes->post('datatable', 'SeriesFacturas::datatable', ['as' => 'seriesFacturasDT']);
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
$routes->group('users', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
|
$routes->group('users', ['namespace' => 'App\Controllers\Configuracion'], function ($routes) {
|
||||||
$routes->get('', 'Users::index', ['as' => 'userList']);
|
$routes->get('', 'Users::index', ['as' => 'userList']);
|
||||||
|
|||||||
257
ci4/app/Controllers/Configuracion/SeriesFacturas.php
Normal file
257
ci4/app/Controllers/Configuracion/SeriesFacturas.php
Normal file
@ -0,0 +1,257 @@
|
|||||||
|
<?php namespace App\Controllers\Configuracion;
|
||||||
|
|
||||||
|
use App\Controllers\BaseResourceController;
|
||||||
|
use App\Models\Collection;
|
||||||
|
use App\Entities\Configuracion\SeriesFacturasEntity;
|
||||||
|
use App\Models\Configuracion\SeriesFacturasModel;
|
||||||
|
|
||||||
|
class SeriesFacturas extends BaseResourceController
|
||||||
|
{
|
||||||
|
|
||||||
|
protected $modelName = SeriesFacturasModel::class;
|
||||||
|
protected $format = 'json';
|
||||||
|
|
||||||
|
protected static $singularObjectName = 'Series Facturas';
|
||||||
|
protected static $singularObjectNameCc = 'seriesFacturas';
|
||||||
|
protected static $pluralObjectName = 'Series Facturas';
|
||||||
|
protected static $pluralObjectNameCc = 'seriesFacturas';
|
||||||
|
|
||||||
|
protected static $controllerSlug = 'ubicaciones';
|
||||||
|
|
||||||
|
protected static $viewPath = 'themes/vuexy/form/configuracion/series-facturas/';
|
||||||
|
|
||||||
|
protected $indexRoute = 'seriesFacturasList';
|
||||||
|
|
||||||
|
|
||||||
|
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||||
|
{
|
||||||
|
$this->viewData['pageTitle'] = lang('SeriesFacturas.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_series_facturas"), 'route' => route_to('seriesFacturasList'), 'active' => true]
|
||||||
|
];
|
||||||
|
|
||||||
|
parent::initController($request, $response, $logger);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
|
||||||
|
$viewData = [
|
||||||
|
'currentModule' => static::$controllerSlug,
|
||||||
|
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('SeriesFacturas.moduleTitle')]),
|
||||||
|
'seriesFacturasEntity' => new SeriesFacturasEntity(),
|
||||||
|
'usingServerSideDataTable' => true,
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
|
||||||
|
|
||||||
|
return view(static::$viewPath . 'viewSeriesFacturasList', $viewData);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function add()
|
||||||
|
{
|
||||||
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
|
$postData = $this->request->getPost();
|
||||||
|
|
||||||
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
|
||||||
|
$noException = true;
|
||||||
|
if ($successfulResult = $this->canValidate()) :
|
||||||
|
|
||||||
|
|
||||||
|
if ($this->canValidate()) :
|
||||||
|
try {
|
||||||
|
$successfulResult = $this->model->skipValidation(true)->save($sanitizedData);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$noException = false;
|
||||||
|
$this->dealWithException($e);
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
$this->viewData['errorMessage'] = lang('Basic.global.formErr1', [lang('Basic.global.record')]);
|
||||||
|
$this->session->setFlashdata('formErrors', $this->model->errors());
|
||||||
|
endif;
|
||||||
|
|
||||||
|
$thenRedirect = true; // Change this to false if you want your user to stay on the form after submission
|
||||||
|
endif;
|
||||||
|
if ($noException && $successfulResult) :
|
||||||
|
|
||||||
|
$id = $this->model->db->insertID();
|
||||||
|
|
||||||
|
$message = lang('Basic.global.saveSuccess', [lang('Basic.global.record')]) . '.';
|
||||||
|
|
||||||
|
if ($thenRedirect) :
|
||||||
|
if (!empty($this->indexRoute)) :
|
||||||
|
return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message);
|
||||||
|
else:
|
||||||
|
return $this->redirect2listView('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
else:
|
||||||
|
$this->session->setFlashData('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
endif; // $noException && $successfulResult
|
||||||
|
|
||||||
|
endif; // ($requestMethod === 'post')
|
||||||
|
|
||||||
|
$this->viewData['seriesFacturasEntity'] = isset($sanitizedData) ? new SeriesFacturasEntity($sanitizedData) : new SeriesFacturasEntity();
|
||||||
|
$this->viewData['formAction'] = route_to('seriesFacturasAdd');
|
||||||
|
$this->viewData['boxTitle'] = lang('Basic.global.addNew') . ' ' . lang('SeriesFacturas.moduleTitle') . ' ' . lang('Basic.global.addNewSuffix');
|
||||||
|
|
||||||
|
|
||||||
|
return $this->displayForm(__METHOD__);
|
||||||
|
} // end function add()
|
||||||
|
|
||||||
|
public function edit($requestedId = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
if ($requestedId == null) :
|
||||||
|
return $this->redirect2listView();
|
||||||
|
endif;
|
||||||
|
$id = filter_var($requestedId, FILTER_SANITIZE_URL);
|
||||||
|
$seriesFacturasEntity = $this->model->find($id);
|
||||||
|
|
||||||
|
if ($seriesFacturasEntity == false) :
|
||||||
|
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('SeriesFacturas.moduleTitle')), $id]);
|
||||||
|
return $this->redirect2listView('sweet-error', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
|
$postData = $this->request->getPost();
|
||||||
|
|
||||||
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
if ($this->request->getPost('show_erp') == null) {
|
||||||
|
$sanitizedData['show_erp'] = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$noException = true;
|
||||||
|
if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
|
||||||
|
|
||||||
|
if ($this->canValidate()) :
|
||||||
|
try {
|
||||||
|
$successfulResult = $this->model->skipValidation(true)->update($id, $sanitizedData);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$noException = false;
|
||||||
|
$this->dealWithException($e);
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
$this->viewData['warningMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('SeriesFacturas.moduleTitle'))]);
|
||||||
|
$this->session->setFlashdata('formErrors', $this->model->errors());
|
||||||
|
|
||||||
|
endif;
|
||||||
|
|
||||||
|
$seriesFacturasEntity->fill($sanitizedData);
|
||||||
|
$thenRedirect = false;
|
||||||
|
endif;
|
||||||
|
if ($noException && $successfulResult) :
|
||||||
|
$id = $seriesFacturasEntity->id ?? $id;
|
||||||
|
$message = lang('Basic.global.updateSuccess', [lang('Basic.global.record')]) . '.';
|
||||||
|
|
||||||
|
if ($thenRedirect) :
|
||||||
|
if (!empty($this->indexRoute)) :
|
||||||
|
return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message);
|
||||||
|
else:
|
||||||
|
return $this->redirect2listView('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
else:
|
||||||
|
$this->session->setFlashData('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
endif; // $noException && $successfulResult
|
||||||
|
endif; // ($requestMethod === 'post')
|
||||||
|
|
||||||
|
$this->viewData['seriesFacturasEntity'] = $seriesFacturasEntity;
|
||||||
|
$this->viewData['formAction'] = route_to('seriesFacturasEdit', $id);
|
||||||
|
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('SeriesFacturas.moduleTitle') . ' ' . lang('Basic.global.edit3');
|
||||||
|
|
||||||
|
return $this->displayForm(__METHOD__, $id);
|
||||||
|
} // end function edit(...)
|
||||||
|
|
||||||
|
|
||||||
|
public function datatable()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$reqData = $this->request->getPost();
|
||||||
|
if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
|
||||||
|
$errstr = 'No data available in response to this specific request.';
|
||||||
|
$response = $this->respond(Collection::datatable([], 0, 0, $errstr), 400, $errstr);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
$start = $reqData['start'] ?? 0;
|
||||||
|
$length = $reqData['length'] ?? 5;
|
||||||
|
$search = $reqData['search']['value'];
|
||||||
|
$requestedOrder = $reqData['order']['0']['column'] ?? 1;
|
||||||
|
$order = SeriesFacturasModel::SORTABLE[$requestedOrder > 0 ? $requestedOrder : 1];
|
||||||
|
$dir = $reqData['order']['0']['dir'] ?? 'asc';
|
||||||
|
|
||||||
|
$resourceData = $this->model->getResource($search)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
|
||||||
|
|
||||||
|
return $this->respond(Collection::datatable(
|
||||||
|
$resourceData,
|
||||||
|
$this->model->getResource()->countAllResults(),
|
||||||
|
$this->model->getResource($search)->countAllResults()
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function allItemsSelect()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$onlyActiveOnes = true;
|
||||||
|
$reqVal = $this->request->getPost('val') ?? 'id';
|
||||||
|
$menu = $this->model->getAllForMenu($reqVal . ', nombre', 'nombre', $onlyActiveOnes, false);
|
||||||
|
$nonItem = new \stdClass;
|
||||||
|
$nonItem->id = '';
|
||||||
|
$nonItem->nombre = '- ' . lang('Basic.global.None') . ' -';
|
||||||
|
array_unshift($menu, $nonItem);
|
||||||
|
|
||||||
|
$newTokenHash = csrf_hash();
|
||||||
|
$csrfTokenName = csrf_token();
|
||||||
|
$data = [
|
||||||
|
'menu' => $menu,
|
||||||
|
$csrfTokenName => $newTokenHash
|
||||||
|
];
|
||||||
|
return $this->respond($data);
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function menuItems()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$searchStr = goSanitize($this->request->getPost('searchTerm'))[0];
|
||||||
|
$reqId = goSanitize($this->request->getPost('id'))[0];
|
||||||
|
$reqText = goSanitize($this->request->getPost('text'))[0];
|
||||||
|
$onlyActiveOnes = false;
|
||||||
|
$columns2select = [$reqId ?? 'id', $reqText ?? 'nombre'];
|
||||||
|
$onlyActiveOnes = false;
|
||||||
|
$menu = $this->model->getSelect2MenuItems($columns2select, $columns2select[1], $onlyActiveOnes, $searchStr);
|
||||||
|
$nonItem = new \stdClass;
|
||||||
|
$nonItem->id = '';
|
||||||
|
$nonItem->text = '- ' . lang('Basic.global.None') . ' -';
|
||||||
|
array_unshift($menu, $nonItem);
|
||||||
|
|
||||||
|
$newTokenHash = csrf_hash();
|
||||||
|
$csrfTokenName = csrf_token();
|
||||||
|
$data = [
|
||||||
|
'menu' => $menu,
|
||||||
|
$csrfTokenName => $newTokenHash
|
||||||
|
];
|
||||||
|
return $this->respond($data);
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
257
ci4/app/Controllers/Configuracion/Ubicaciones.php
Normal file
257
ci4/app/Controllers/Configuracion/Ubicaciones.php
Normal file
@ -0,0 +1,257 @@
|
|||||||
|
<?php namespace App\Controllers\Configuracion;
|
||||||
|
|
||||||
|
use App\Controllers\BaseResourceController;
|
||||||
|
use App\Models\Collection;
|
||||||
|
use App\Entities\Configuracion\UbicacionesEntity;
|
||||||
|
use App\Models\Configuracion\UbicacionesModel;
|
||||||
|
|
||||||
|
class Ubicaciones extends BaseResourceController
|
||||||
|
{
|
||||||
|
|
||||||
|
protected $modelName = UbicacionesModel::class;
|
||||||
|
protected $format = 'json';
|
||||||
|
|
||||||
|
protected static $singularObjectName = 'Ubicaciones';
|
||||||
|
protected static $singularObjectNameCc = 'ubicaciones';
|
||||||
|
protected static $pluralObjectName = 'Ubicaciones';
|
||||||
|
protected static $pluralObjectNameCc = 'ubicaciones';
|
||||||
|
|
||||||
|
protected static $controllerSlug = 'ubicaciones';
|
||||||
|
|
||||||
|
protected static $viewPath = 'themes/vuexy/form/configuracion/ubicaciones/';
|
||||||
|
|
||||||
|
protected $indexRoute = 'ubicacionesList';
|
||||||
|
|
||||||
|
|
||||||
|
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||||
|
{
|
||||||
|
$this->viewData['pageTitle'] = lang('Ubicaciones.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_ubicaciones"), 'route' => route_to('ubicacionesList'), 'active' => true]
|
||||||
|
];
|
||||||
|
|
||||||
|
parent::initController($request, $response, $logger);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function index()
|
||||||
|
{
|
||||||
|
|
||||||
|
$viewData = [
|
||||||
|
'currentModule' => static::$controllerSlug,
|
||||||
|
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Ubicaciones.pais')]),
|
||||||
|
'ubicacionesEntity' => new UbicacionesEntity(),
|
||||||
|
'usingServerSideDataTable' => true,
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
|
||||||
|
|
||||||
|
return view(static::$viewPath . 'viewUbicacionesList', $viewData);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public function add()
|
||||||
|
{
|
||||||
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
|
$postData = $this->request->getPost();
|
||||||
|
|
||||||
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
|
||||||
|
$noException = true;
|
||||||
|
if ($successfulResult = $this->canValidate()) :
|
||||||
|
|
||||||
|
|
||||||
|
if ($this->canValidate()) :
|
||||||
|
try {
|
||||||
|
$successfulResult = $this->model->skipValidation(true)->save($sanitizedData);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$noException = false;
|
||||||
|
$this->dealWithException($e);
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
$this->viewData['errorMessage'] = lang('Basic.global.formErr1', [lang('Basic.global.record')]);
|
||||||
|
$this->session->setFlashdata('formErrors', $this->model->errors());
|
||||||
|
endif;
|
||||||
|
|
||||||
|
$thenRedirect = true; // Change this to false if you want your user to stay on the form after submission
|
||||||
|
endif;
|
||||||
|
if ($noException && $successfulResult) :
|
||||||
|
|
||||||
|
$id = $this->model->db->insertID();
|
||||||
|
|
||||||
|
$message = lang('Basic.global.saveSuccess', [lang('Basic.global.record')]) . '.';
|
||||||
|
|
||||||
|
if ($thenRedirect) :
|
||||||
|
if (!empty($this->indexRoute)) :
|
||||||
|
return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message);
|
||||||
|
else:
|
||||||
|
return $this->redirect2listView('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
else:
|
||||||
|
$this->session->setFlashData('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
endif; // $noException && $successfulResult
|
||||||
|
|
||||||
|
endif; // ($requestMethod === 'post')
|
||||||
|
|
||||||
|
$this->viewData['ubicacionesEntity'] = isset($sanitizedData) ? new UbicacionesEntity($sanitizedData) : new UbicacionesEntity();
|
||||||
|
$this->viewData['formAction'] = route_to('ubicacionesAdd');
|
||||||
|
$this->viewData['boxTitle'] = lang('Basic.global.addNew') . ' ' . lang('Ubicaciones.moduleTitle') . ' ' . lang('Basic.global.addNewSuffix');
|
||||||
|
|
||||||
|
|
||||||
|
return $this->displayForm(__METHOD__);
|
||||||
|
} // end function add()
|
||||||
|
|
||||||
|
public function edit($requestedId = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
if ($requestedId == null) :
|
||||||
|
return $this->redirect2listView();
|
||||||
|
endif;
|
||||||
|
$id = filter_var($requestedId, FILTER_SANITIZE_URL);
|
||||||
|
$ubicacionesEntity = $this->model->find($id);
|
||||||
|
|
||||||
|
if ($ubicacionesEntity == false) :
|
||||||
|
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Ubicaciones.moduleTitle')), $id]);
|
||||||
|
return $this->redirect2listView('sweet-error', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
|
$postData = $this->request->getPost();
|
||||||
|
|
||||||
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
if ($this->request->getPost('show_erp') == null) {
|
||||||
|
$sanitizedData['show_erp'] = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$noException = true;
|
||||||
|
if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
|
||||||
|
|
||||||
|
if ($this->canValidate()) :
|
||||||
|
try {
|
||||||
|
$successfulResult = $this->model->skipValidation(true)->update($id, $sanitizedData);
|
||||||
|
} catch (\Exception $e) {
|
||||||
|
$noException = false;
|
||||||
|
$this->dealWithException($e);
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
$this->viewData['warningMessage'] = lang('Basic.global.formErr1', [mb_strtolower(lang('Ubicaciones.moduleTitle'))]);
|
||||||
|
$this->session->setFlashdata('formErrors', $this->model->errors());
|
||||||
|
|
||||||
|
endif;
|
||||||
|
|
||||||
|
$ubicacionesEntity->fill($sanitizedData);
|
||||||
|
$thenRedirect = false;
|
||||||
|
endif;
|
||||||
|
if ($noException && $successfulResult) :
|
||||||
|
$id = $ubicacionesEntity->id ?? $id;
|
||||||
|
$message = lang('Basic.global.updateSuccess', [lang('Basic.global.record')]) . '.';
|
||||||
|
|
||||||
|
if ($thenRedirect) :
|
||||||
|
if (!empty($this->indexRoute)) :
|
||||||
|
return redirect()->to(route_to($this->indexRoute))->with('sweet-success', $message);
|
||||||
|
else:
|
||||||
|
return $this->redirect2listView('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
else:
|
||||||
|
$this->session->setFlashData('sweet-success', $message);
|
||||||
|
endif;
|
||||||
|
|
||||||
|
endif; // $noException && $successfulResult
|
||||||
|
endif; // ($requestMethod === 'post')
|
||||||
|
|
||||||
|
$this->viewData['ubicacionesEntity'] = $ubicacionesEntity;
|
||||||
|
$this->viewData['formAction'] = route_to('ubicacionesEdit', $id);
|
||||||
|
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('Ubicaciones.moduleTitle') . ' ' . lang('Basic.global.edit3');
|
||||||
|
|
||||||
|
return $this->displayForm(__METHOD__, $id);
|
||||||
|
} // end function edit(...)
|
||||||
|
|
||||||
|
|
||||||
|
public function datatable()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$reqData = $this->request->getPost();
|
||||||
|
if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
|
||||||
|
$errstr = 'No data available in response to this specific request.';
|
||||||
|
$response = $this->respond(Collection::datatable([], 0, 0, $errstr), 400, $errstr);
|
||||||
|
return $response;
|
||||||
|
}
|
||||||
|
$start = $reqData['start'] ?? 0;
|
||||||
|
$length = $reqData['length'] ?? 5;
|
||||||
|
$search = $reqData['search']['value'];
|
||||||
|
$requestedOrder = $reqData['order']['0']['column'] ?? 1;
|
||||||
|
$order = UbicacionesModel::SORTABLE[$requestedOrder > 0 ? $requestedOrder : 1];
|
||||||
|
$dir = $reqData['order']['0']['dir'] ?? 'asc';
|
||||||
|
|
||||||
|
$resourceData = $this->model->getResource($search)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
|
||||||
|
|
||||||
|
return $this->respond(Collection::datatable(
|
||||||
|
$resourceData,
|
||||||
|
$this->model->getResource()->countAllResults(),
|
||||||
|
$this->model->getResource($search)->countAllResults()
|
||||||
|
));
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function allItemsSelect()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$onlyActiveOnes = true;
|
||||||
|
$reqVal = $this->request->getPost('val') ?? 'id';
|
||||||
|
$menu = $this->model->getAllForMenu($reqVal . ', nombre', 'nombre', $onlyActiveOnes, false);
|
||||||
|
$nonItem = new \stdClass;
|
||||||
|
$nonItem->id = '';
|
||||||
|
$nonItem->nombre = '- ' . lang('Basic.global.None') . ' -';
|
||||||
|
array_unshift($menu, $nonItem);
|
||||||
|
|
||||||
|
$newTokenHash = csrf_hash();
|
||||||
|
$csrfTokenName = csrf_token();
|
||||||
|
$data = [
|
||||||
|
'menu' => $menu,
|
||||||
|
$csrfTokenName => $newTokenHash
|
||||||
|
];
|
||||||
|
return $this->respond($data);
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function menuItems()
|
||||||
|
{
|
||||||
|
if ($this->request->isAJAX()) {
|
||||||
|
$searchStr = goSanitize($this->request->getPost('searchTerm'))[0];
|
||||||
|
$reqId = goSanitize($this->request->getPost('id'))[0];
|
||||||
|
$reqText = goSanitize($this->request->getPost('text'))[0];
|
||||||
|
$onlyActiveOnes = false;
|
||||||
|
$columns2select = [$reqId ?? 'id', $reqText ?? 'nombre'];
|
||||||
|
$onlyActiveOnes = false;
|
||||||
|
$menu = $this->model->getSelect2MenuItems($columns2select, $columns2select[1], $onlyActiveOnes, $searchStr);
|
||||||
|
$nonItem = new \stdClass;
|
||||||
|
$nonItem->id = '';
|
||||||
|
$nonItem->text = '- ' . lang('Basic.global.None') . ' -';
|
||||||
|
array_unshift($menu, $nonItem);
|
||||||
|
|
||||||
|
$newTokenHash = csrf_hash();
|
||||||
|
$csrfTokenName = csrf_token();
|
||||||
|
$data = [
|
||||||
|
'menu' => $menu,
|
||||||
|
$csrfTokenName => $newTokenHash
|
||||||
|
];
|
||||||
|
return $this->respond($data);
|
||||||
|
} else {
|
||||||
|
return $this->failUnauthorized('Invalid request', 403);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
21
ci4/app/Entities/Configuracion/SeriesFacturasEntity.php
Normal file
21
ci4/app/Entities/Configuracion/SeriesFacturasEntity.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Entities\Configuracion;
|
||||||
|
|
||||||
|
use CodeIgniter\Entity;
|
||||||
|
|
||||||
|
class SeriesFacturasEntity extends \CodeIgniter\Entity\Entity
|
||||||
|
{
|
||||||
|
protected $attributes = [
|
||||||
|
'id' => null,
|
||||||
|
'nombre' => null,
|
||||||
|
'tipo' => 'facturacion', // default value
|
||||||
|
'formato' => null,
|
||||||
|
'next' => 1, // default value
|
||||||
|
'grupo' => 0, // default value
|
||||||
|
'created_at' => null, // default value
|
||||||
|
'updated_at' => null, // default value
|
||||||
|
];
|
||||||
|
protected $casts = [
|
||||||
|
|
||||||
|
];
|
||||||
|
}
|
||||||
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Entities\Configuracion;
|
||||||
|
|
||||||
|
use CodeIgniter\Entity;
|
||||||
|
|
||||||
|
class UbicacionesEntity extends \CodeIgniter\Entity\Entity
|
||||||
|
{
|
||||||
|
protected $attributes = [
|
||||||
|
'id' => null,
|
||||||
|
'nombre' => null,
|
||||||
|
'deleted_at' => null, // default value
|
||||||
|
];
|
||||||
|
protected $casts = [
|
||||||
|
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -688,7 +688,8 @@ return [
|
|||||||
"menu_maquina_defecto" => "Maquinas por defecto",
|
"menu_maquina_defecto" => "Maquinas por defecto",
|
||||||
"menu_papelgenerico" => "Papel generico",
|
"menu_papelgenerico" => "Papel generico",
|
||||||
"menu_papelimpresion" => "Papel impresión",
|
"menu_papelimpresion" => "Papel impresión",
|
||||||
"menu_seriefactura" => "Series facturas",
|
"menu_series_facturas" => "Series facturas",
|
||||||
|
"menu_ubicaciones" => "Ubicaciones",
|
||||||
"menu_serviciocliente" => "Servicio cliente",
|
"menu_serviciocliente" => "Servicio cliente",
|
||||||
"menu_tamanioformatos" => "Tamaño formatos",
|
"menu_tamanioformatos" => "Tamaño formatos",
|
||||||
"menu_tamaniolibros" => "Tamaño libros",
|
"menu_tamaniolibros" => "Tamaño libros",
|
||||||
|
|||||||
@ -42,6 +42,8 @@ return [
|
|||||||
'papelImpresionSection' => 'Papel impresión',
|
'papelImpresionSection' => 'Papel impresión',
|
||||||
'usuariosSection' => 'Usuarios',
|
'usuariosSection' => 'Usuarios',
|
||||||
'rolesPermisosSection' => 'Roles y permisos',
|
'rolesPermisosSection' => 'Roles y permisos',
|
||||||
|
'ubicacionesSection' => 'Ubicaciones',
|
||||||
|
'seriesFacturasSection' => 'Series facturas',
|
||||||
'ajustesSection' => 'Ajustes',
|
'ajustesSection' => 'Ajustes',
|
||||||
'actividadSection' => 'Accesos',
|
'actividadSection' => 'Accesos',
|
||||||
|
|
||||||
|
|||||||
24
ci4/app/Language/es/SeriesFacturas.php
Normal file
24
ci4/app/Language/es/SeriesFacturas.php
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
return [
|
||||||
|
'id' => 'ID',
|
||||||
|
'moduleTitle' => 'Series Facturas',
|
||||||
|
'nombre' => 'Nombre',
|
||||||
|
'tipo' => 'Tipo',
|
||||||
|
'formato' => 'Formato',
|
||||||
|
'next' => 'Próxima',
|
||||||
|
'grupo' => 'Grupo',
|
||||||
|
'validation' => [
|
||||||
|
'id' => [
|
||||||
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||||
|
],
|
||||||
|
|
||||||
|
'nombre' => [
|
||||||
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||||
|
'required' => 'El campo {field} es obligatorio.',
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
21
ci4/app/Language/es/Ubicaciones.php
Normal file
21
ci4/app/Language/es/Ubicaciones.php
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return [
|
||||||
|
'id' => 'ID',
|
||||||
|
'moduleTitle' => 'Ubicaciones',
|
||||||
|
'nombre' => 'Nombre',
|
||||||
|
'validation' => [
|
||||||
|
'id' => [
|
||||||
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||||
|
],
|
||||||
|
|
||||||
|
'nombre' => [
|
||||||
|
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||||
|
'required' => 'El campo {field} es obligatorio.',
|
||||||
|
],
|
||||||
|
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
94
ci4/app/Models/Configuracion/SeriesFacturasModel.php
Normal file
94
ci4/app/Models/Configuracion/SeriesFacturasModel.php
Normal file
@ -0,0 +1,94 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Models\Configuracion;
|
||||||
|
|
||||||
|
class SeriesFacturasModel extends \App\Models\BaseModel
|
||||||
|
{
|
||||||
|
protected $table = "series";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether primary key uses auto increment.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
protected $useAutoIncrement = true;
|
||||||
|
|
||||||
|
const SORTABLE = [
|
||||||
|
1 => "t1.id",
|
||||||
|
2 => "t1.nombre",
|
||||||
|
3 => "t1.tipo",
|
||||||
|
4 => "t1.formato",
|
||||||
|
5 => "t1.next",
|
||||||
|
6 => "t1.grupo"
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $allowedFields = ["nombre", "tipo", "formato", "next", "grupo"];
|
||||||
|
protected $returnType = "App\Entities\Configuracion\SeriesFacturasEntity";
|
||||||
|
|
||||||
|
public static $labelField = "nombre";
|
||||||
|
|
||||||
|
protected $validationRules = [
|
||||||
|
"nombre" => [
|
||||||
|
"label" => "SeriesFacturas.nombre",
|
||||||
|
"rules" => "trim|required|max_length[255]",
|
||||||
|
],
|
||||||
|
"tipo" => [
|
||||||
|
"label" => "SeriesFacturas.tipo",
|
||||||
|
"rules" => "required",
|
||||||
|
],
|
||||||
|
"formato" => [
|
||||||
|
"label" => "SeriesFacturas.nombre",
|
||||||
|
"rules" => "trim|required|max_length[255]",
|
||||||
|
],
|
||||||
|
"next" => [
|
||||||
|
"label" => "SeriesFacturas.next",
|
||||||
|
"rules" => "required",
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $validationMessages = [
|
||||||
|
"nombre" => [
|
||||||
|
"max_length" => "SeriesFacturas.validation.nombre.max_length",
|
||||||
|
"required" => "SeriesFacturas.validation.nombre.required",
|
||||||
|
],
|
||||||
|
"tipo" => [
|
||||||
|
"required" => "SeriesFacturas.validation.tipo.required",
|
||||||
|
],
|
||||||
|
"formato" => [
|
||||||
|
"max_length" => "SeriesFacturas.validation.formato.max_length",
|
||||||
|
"required" => "SeriesFacturas.validation.formato.required",
|
||||||
|
],
|
||||||
|
"next" => [
|
||||||
|
"required" => "SeriesFacturas.validation.next.required",
|
||||||
|
],
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get resource data.
|
||||||
|
*
|
||||||
|
* @param string $search
|
||||||
|
*
|
||||||
|
* @return \CodeIgniter\Database\BaseBuilder
|
||||||
|
*/
|
||||||
|
public function getResource(string $search = "")
|
||||||
|
{
|
||||||
|
$builder = $this->db
|
||||||
|
->table($this->table . " t1")
|
||||||
|
->select(
|
||||||
|
"t1.id AS id, t1.nombre AS nombre, t1.tipo AS tipo, t1.formato AS formato,
|
||||||
|
t1.next AS next, t1.grupo AS grupo"
|
||||||
|
);
|
||||||
|
|
||||||
|
return empty($search)
|
||||||
|
? $builder
|
||||||
|
: $builder
|
||||||
|
->groupStart()
|
||||||
|
->like("t1.id", $search)
|
||||||
|
->orLike("t1.nombre", $search)
|
||||||
|
->orLike("t1.tipo", $search)
|
||||||
|
->orLike("t1.formato", $search)
|
||||||
|
->orLike("t1.next", $search)
|
||||||
|
->orLike("t1.grupo", $search)
|
||||||
|
->groupEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
62
ci4/app/Models/Configuracion/UbicacionesModel.php
Normal file
62
ci4/app/Models/Configuracion/UbicacionesModel.php
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
namespace App\Models\Configuracion;
|
||||||
|
|
||||||
|
class UbicacionesModel extends \App\Models\BaseModel
|
||||||
|
{
|
||||||
|
protected $table = "ubicaciones";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Whether primary key uses auto increment.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
protected $useAutoIncrement = true;
|
||||||
|
|
||||||
|
const SORTABLE = [
|
||||||
|
1 => "t1.id",
|
||||||
|
2 => "t1.nombre"
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $allowedFields = ["nombre"];
|
||||||
|
protected $returnType = "App\Entities\Configuracion\UbicacionesEntity";
|
||||||
|
|
||||||
|
public static $labelField = "nombre";
|
||||||
|
|
||||||
|
protected $validationRules = [
|
||||||
|
"nombre" => [
|
||||||
|
"label" => "Paises.nombre",
|
||||||
|
"rules" => "trim|required|max_length[255]",
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
protected $validationMessages = [
|
||||||
|
"nombre" => [
|
||||||
|
"max_length" => "Paises.validation.nombre.max_length",
|
||||||
|
"required" => "Paises.validation.nombre.required",
|
||||||
|
]
|
||||||
|
];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get resource data.
|
||||||
|
*
|
||||||
|
* @param string $search
|
||||||
|
*
|
||||||
|
* @return \CodeIgniter\Database\BaseBuilder
|
||||||
|
*/
|
||||||
|
public function getResource(string $search = "")
|
||||||
|
{
|
||||||
|
$builder = $this->db
|
||||||
|
->table($this->table . " t1")
|
||||||
|
->select(
|
||||||
|
"t1.id AS id, t1.nombre AS nombre"
|
||||||
|
);
|
||||||
|
|
||||||
|
return empty($search)
|
||||||
|
? $builder
|
||||||
|
: $builder
|
||||||
|
->groupStart()
|
||||||
|
->like("t1.id", $search)
|
||||||
|
->orLike("t1.nombre", $search)
|
||||||
|
->groupEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,58 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12 col-lg-12 px-4">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="nombre" class="form-label">
|
||||||
|
<?= lang('SeriesFacturas.nombre') ?>*
|
||||||
|
</label>
|
||||||
|
<input type="text"
|
||||||
|
id="nombre"
|
||||||
|
name="nombre"
|
||||||
|
maxLength="255"
|
||||||
|
class="form-control"
|
||||||
|
value="<?= old('nombre', $seriesFacturasEntity->nombre) ?>"
|
||||||
|
>
|
||||||
|
</div><!--//.mb-3 -->
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="tipo" class="form-label">
|
||||||
|
<?= lang('SeriesFacturas.tipo') ?>*
|
||||||
|
</label>
|
||||||
|
<select id="tipo" name="tipo" required class="form-control select2" style="width: 100%;">
|
||||||
|
<option value="facturacion" <?= "facturacion" == $seriesFacturasEntity->tipo ? ' selected' : '' ?>>
|
||||||
|
Facturación
|
||||||
|
</option>
|
||||||
|
<option value="albaranes" <?= "albaranes" == $seriesFacturasEntity->tipo ? ' selected' : '' ?>>
|
||||||
|
Albaranes
|
||||||
|
</option>
|
||||||
|
</select>
|
||||||
|
</div><!--//.mb-3 -->
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="tipo" class="form-label">
|
||||||
|
<?= lang('SeriesFacturas.formato') ?>*
|
||||||
|
</label>
|
||||||
|
<input type="text"
|
||||||
|
id="formato"
|
||||||
|
name="formato"
|
||||||
|
maxLength="255"
|
||||||
|
class="form-control"
|
||||||
|
value="<?= old('formato', $seriesFacturasEntity->formato) ?>"
|
||||||
|
>
|
||||||
|
</div><!--//.mb-3 -->
|
||||||
|
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="tipo" class="form-label">
|
||||||
|
<?= lang('SeriesFacturas.next') ?>*
|
||||||
|
</label>
|
||||||
|
<input type="number"
|
||||||
|
step="1"
|
||||||
|
id="next"
|
||||||
|
name="next"
|
||||||
|
class="form-control"
|
||||||
|
value="<?= old('next', $seriesFacturasEntity->next) ?>"
|
||||||
|
>
|
||||||
|
</div><!--//.mb-3 -->
|
||||||
|
|
||||||
|
</div><!--//.col -->
|
||||||
|
|
||||||
|
</div><!-- //.row -->
|
||||||
@ -0,0 +1,52 @@
|
|||||||
|
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||||
|
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||||
|
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||||
|
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||||
|
|
||||||
|
<?= $this->section("content") ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="card card-info">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title"><?= $boxTitle ?? $pageTitle ?></h3>
|
||||||
|
</div><!--//.card-header -->
|
||||||
|
<form id="seriesFacturasForm" class="card-body" method="post" action="<?= $formAction ?>">
|
||||||
|
<?= csrf_field() ?>
|
||||||
|
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||||
|
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||||
|
<?= view("themes/vuexy/form/configuracion/series-facturas/_seriesFacturasFormItems") ?>
|
||||||
|
<div class="pt-4">
|
||||||
|
<input type="submit"
|
||||||
|
class="btn btn-primary float-start me-sm-3 me-1"
|
||||||
|
name="save"
|
||||||
|
value="<?= lang("Basic.global.Save") ?>"
|
||||||
|
/>
|
||||||
|
<?= anchor(route_to("seriesFacturasList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start",]) ?>
|
||||||
|
|
||||||
|
</div><!-- /.card-footer -->
|
||||||
|
</form>
|
||||||
|
</div><!-- //.card -->
|
||||||
|
</div><!--//.col -->
|
||||||
|
|
||||||
|
</div><!--//.row -->
|
||||||
|
<?= $this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('css') ?>
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/css/datatables-editor/editor.dataTables.min.css') ?>">
|
||||||
|
<link rel="stylesheet" href="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.css") ?>">
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->section('additionalExternalJs') ?>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/jszip/jszip.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/pdfmake.min.js") ?>" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/vfs_fonts.js") ?>"></script>
|
||||||
|
<script src="<?= site_url('themes/vuexy/js/datatables-editor/dataTables.editor.min.js') ?>"></script>
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
@ -0,0 +1,145 @@
|
|||||||
|
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||||
|
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||||
|
<?=$this->section('content'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
<div class="card card-info">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title"><?=lang('SeriesFacturas.moduleTitle') ?></h3>
|
||||||
|
<?=anchor(route_to('seriesFacturasAdd'), lang('Basic.global.addNew') . ' ' .lang('SeriesFacturas.moduleTitle'), ['class'=>'btn btn-primary float-end']); ?>
|
||||||
|
</div><!--//.card-header -->
|
||||||
|
<div class="card-body">
|
||||||
|
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
||||||
|
|
||||||
|
<table id="tableOfSeriesFacturas" class="table table-striped table-hover" style="width: 100%;">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th><?= lang('SeriesFacturas.nombre') ?></th>
|
||||||
|
<th><?= lang('SeriesFacturas.tipo') ?></th>
|
||||||
|
<th><?= lang('SeriesFacturas.formato') ?></th>
|
||||||
|
<th><?= lang('SeriesFacturas.next') ?></th>
|
||||||
|
<th><?= lang('SeriesFacturas.grupo') ?></th>
|
||||||
|
<th class="text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div><!--//.card-body -->
|
||||||
|
<div class="card-footer">
|
||||||
|
|
||||||
|
</div><!--//.card-footer -->
|
||||||
|
</div><!--//.card -->
|
||||||
|
</div><!--//.col -->
|
||||||
|
</div><!--//.row -->
|
||||||
|
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('additionalInlineJs') ?>
|
||||||
|
|
||||||
|
const lastColNr = $('#tableOfSeriesFacturas').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">
|
||||||
|
<a href="javascript:void(0);"><i class="ti ti-pencil ti-sm btn-edit mx-2" data-id="${data.id}"></i></a>
|
||||||
|
<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete mx-2" data-id="${data.id}" data-bs-toggle="modal" data-bs-target="#confirm2delete"></i></a>
|
||||||
|
</div>
|
||||||
|
</td>`;
|
||||||
|
};
|
||||||
|
|
||||||
|
theTable = $('#tableOfSeriesFacturas').DataTable({
|
||||||
|
processing: true,
|
||||||
|
serverSide: true,
|
||||||
|
autoWidth: true,
|
||||||
|
responsive: true,
|
||||||
|
scrollX: true,
|
||||||
|
lengthMenu: [ 5, 10, 25, 50, 75, 100, 250, 500, 1000, 2500 ],
|
||||||
|
pageLength: 50,
|
||||||
|
lengthChange: true,
|
||||||
|
"dom": 'lfBrtip',
|
||||||
|
"buttons": [
|
||||||
|
'copy', 'csv', 'excel', 'print', {
|
||||||
|
extend: 'pdfHtml5',
|
||||||
|
orientation: 'landscape',
|
||||||
|
pageSize: 'A4'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
stateSave: true,
|
||||||
|
order: [[0, 'asc']],
|
||||||
|
language: {
|
||||||
|
url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json"
|
||||||
|
},
|
||||||
|
ajax : $.fn.dataTable.pipeline( {
|
||||||
|
url: '<?= route_to('seriesFacturasDT') ?>',
|
||||||
|
method: 'POST',
|
||||||
|
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
||||||
|
async: true,
|
||||||
|
}),
|
||||||
|
columnDefs: [
|
||||||
|
{
|
||||||
|
orderable: false,
|
||||||
|
searchable: false,
|
||||||
|
targets: [lastColNr]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
columns : [
|
||||||
|
{ 'data': 'nombre' },
|
||||||
|
{ 'data': 'tipo' },
|
||||||
|
{ 'data': 'formato' },
|
||||||
|
{ 'data': 'next' },
|
||||||
|
{ 'data': 'grupo' },
|
||||||
|
{ 'data': actionBtns }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-edit', function(e) {
|
||||||
|
window.location.href = `/configuracion/series-facturas/edit/${$(this).attr('data-id')}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-delete', function(e) {
|
||||||
|
$(".btn-remove").attr('data-id', $(this).attr('data-id'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-remove', function(e) {
|
||||||
|
const dataId = $(this).attr('data-id');
|
||||||
|
const row = $(this).closest('tr');
|
||||||
|
if ($.isNumeric(dataId)) {
|
||||||
|
$.ajax({
|
||||||
|
url: `/configuracion/series-facturas//delete/${dataId}`,
|
||||||
|
method: 'GET',
|
||||||
|
}).done((data, textStatus, jqXHR) => {
|
||||||
|
$('#confirm2delete').modal('toggle');
|
||||||
|
theTable.clearPipeline();
|
||||||
|
theTable.row($(row)).invalidate().draw();
|
||||||
|
popSuccessAlert(data.msg ?? jqXHR.statusText);
|
||||||
|
}).fail((jqXHR, textStatus, errorThrown) => {
|
||||||
|
popErrorAlert(jqXHR.responseJSON.messages.error)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('css') ?>
|
||||||
|
<link rel="stylesheet" href="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.css") ?>">
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->section('additionalExternalJs') ?>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/jszip/jszip.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/pdfmake.min.js") ?>" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/vfs_fonts.js") ?>"></script>
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
@ -0,0 +1,12 @@
|
|||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12 col-lg-12 px-4">
|
||||||
|
<div class="mb-3">
|
||||||
|
<label for="nombre" class="form-label">
|
||||||
|
<?=lang('Ubicaciones.nombre') ?>*
|
||||||
|
</label>
|
||||||
|
<input type="text" id="nombre" name="nombre" maxLength="255" class="form-control" value="<?=old('nombre', $ubicacionesEntity->nombre) ?>">
|
||||||
|
</div><!--//.mb-3 -->
|
||||||
|
|
||||||
|
</div><!--//.col -->
|
||||||
|
|
||||||
|
</div><!-- //.row -->
|
||||||
@ -0,0 +1,52 @@
|
|||||||
|
<?= $this->include("themes/_commonPartialsBs/datatables") ?>
|
||||||
|
<?= $this->include("themes/_commonPartialsBs/select2bs5") ?>
|
||||||
|
<?= $this->include("themes/_commonPartialsBs/sweetalert") ?>
|
||||||
|
<?= $this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||||
|
|
||||||
|
<?= $this->section("content") ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-12">
|
||||||
|
<div class="card card-info">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title"><?= $boxTitle ?? $pageTitle ?></h3>
|
||||||
|
</div><!--//.card-header -->
|
||||||
|
<form id="ubicacionesForm" class="card-body" method="post" action="<?= $formAction ?>">
|
||||||
|
<?= csrf_field() ?>
|
||||||
|
<?= view("themes/_commonPartialsBs/_alertBoxes") ?>
|
||||||
|
<?= !empty($validation->getErrors()) ? $validation->listErrors("bootstrap_style") : "" ?>
|
||||||
|
<?= view("themes/vuexy/form/configuracion/ubicaciones/_ubicacionesFormItems") ?>
|
||||||
|
<div class="pt-4">
|
||||||
|
<input type="submit"
|
||||||
|
class="btn btn-primary float-start me-sm-3 me-1"
|
||||||
|
name="save"
|
||||||
|
value="<?= lang("Basic.global.Save") ?>"
|
||||||
|
/>
|
||||||
|
<?= anchor(route_to("ubicacionesList"), lang("Basic.global.Cancel"), ["class" => "btn btn-secondary float-start",]) ?>
|
||||||
|
|
||||||
|
</div><!-- /.card-footer -->
|
||||||
|
</form>
|
||||||
|
</div><!-- //.card -->
|
||||||
|
</div><!--//.col -->
|
||||||
|
|
||||||
|
</div><!--//.row -->
|
||||||
|
<?= $this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('css') ?>
|
||||||
|
<link rel="stylesheet" href="<?= site_url('themes/vuexy/css/datatables-editor/editor.dataTables.min.css') ?>">
|
||||||
|
<link rel="stylesheet" href="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.css") ?>">
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->section('additionalExternalJs') ?>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/jszip/jszip.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/pdfmake.min.js") ?>" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/vfs_fonts.js") ?>"></script>
|
||||||
|
<script src="<?= site_url('themes/vuexy/js/datatables-editor/dataTables.editor.min.js') ?>"></script>
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
@ -0,0 +1,137 @@
|
|||||||
|
<?=$this->include('themes/_commonPartialsBs/datatables') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/_confirm2delete') ?>
|
||||||
|
<?= $this->include('themes/_commonPartialsBs/sweetalert') ?>
|
||||||
|
<?=$this->extend('themes/vuexy/main/defaultlayout') ?>
|
||||||
|
<?=$this->section('content'); ?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
|
||||||
|
<div class="card card-info">
|
||||||
|
<div class="card-header">
|
||||||
|
<h3 class="card-title"><?=lang('Ubicaciones.moduleTitle') ?></h3>
|
||||||
|
<?=anchor(route_to('ubicacionesAdd'), lang('Basic.global.addNew') . ' ' .lang('Ubicaciones.moduleTitle'), ['class'=>'btn btn-primary float-end']); ?>
|
||||||
|
</div><!--//.card-header -->
|
||||||
|
<div class="card-body">
|
||||||
|
<?= view('themes/_commonPartialsBs/_alertBoxes'); ?>
|
||||||
|
|
||||||
|
<table id="tableOfUbicaciones" class="table table-striped table-hover" style="width: 100%;">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th><?= lang('Ubicaciones.nombre') ?></th>
|
||||||
|
<th class="text-nowrap"><?= lang('Basic.global.Action') ?></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div><!--//.card-body -->
|
||||||
|
<div class="card-footer">
|
||||||
|
|
||||||
|
</div><!--//.card-footer -->
|
||||||
|
</div><!--//.card -->
|
||||||
|
</div><!--//.col -->
|
||||||
|
</div><!--//.row -->
|
||||||
|
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('additionalInlineJs') ?>
|
||||||
|
|
||||||
|
const lastColNr = $('#tableOfUbicaciones').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">
|
||||||
|
<a href="javascript:void(0);"><i class="ti ti-pencil ti-sm btn-edit mx-2" data-id="${data.id}"></i></a>
|
||||||
|
<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete mx-2" data-id="${data.id}" data-bs-toggle="modal" data-bs-target="#confirm2delete"></i></a>
|
||||||
|
</div>
|
||||||
|
</td>`;
|
||||||
|
};
|
||||||
|
|
||||||
|
theTable = $('#tableOfUbicaciones').DataTable({
|
||||||
|
processing: true,
|
||||||
|
serverSide: true,
|
||||||
|
autoWidth: true,
|
||||||
|
responsive: true,
|
||||||
|
scrollX: true,
|
||||||
|
lengthMenu: [ 5, 10, 25, 50, 75, 100, 250, 500, 1000, 2500 ],
|
||||||
|
pageLength: 50,
|
||||||
|
lengthChange: true,
|
||||||
|
"dom": 'lfBrtip',
|
||||||
|
"buttons": [
|
||||||
|
'copy', 'csv', 'excel', 'print', {
|
||||||
|
extend: 'pdfHtml5',
|
||||||
|
orientation: 'landscape',
|
||||||
|
pageSize: 'A4'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
stateSave: true,
|
||||||
|
order: [[0, 'asc']],
|
||||||
|
language: {
|
||||||
|
url: "/themes/vuexy/vendor/libs/datatables-sk/plugins/i18n/es-ES.json"
|
||||||
|
},
|
||||||
|
ajax : $.fn.dataTable.pipeline( {
|
||||||
|
url: '<?= route_to('ubicacionesDT') ?>',
|
||||||
|
method: 'POST',
|
||||||
|
headers: {'X-Requested-With': 'XMLHttpRequest'},
|
||||||
|
async: true,
|
||||||
|
}),
|
||||||
|
columnDefs: [
|
||||||
|
{
|
||||||
|
orderable: false,
|
||||||
|
searchable: false,
|
||||||
|
targets: [lastColNr]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
columns : [
|
||||||
|
{ 'data': 'nombre' },
|
||||||
|
{ 'data': actionBtns }
|
||||||
|
]
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-edit', function(e) {
|
||||||
|
window.location.href = `/configuracion/ubicaciones/edit/${$(this).attr('data-id')}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-delete', function(e) {
|
||||||
|
$(".btn-remove").attr('data-id', $(this).attr('data-id'));
|
||||||
|
});
|
||||||
|
|
||||||
|
$(document).on('click', '.btn-remove', function(e) {
|
||||||
|
const dataId = $(this).attr('data-id');
|
||||||
|
const row = $(this).closest('tr');
|
||||||
|
if ($.isNumeric(dataId)) {
|
||||||
|
$.ajax({
|
||||||
|
url: `/configuracion/ubicaciones/delete/${dataId}`,
|
||||||
|
method: 'GET',
|
||||||
|
}).done((data, textStatus, jqXHR) => {
|
||||||
|
$('#confirm2delete').modal('toggle');
|
||||||
|
theTable.clearPipeline();
|
||||||
|
theTable.row($(row)).invalidate().draw();
|
||||||
|
popSuccessAlert(data.msg ?? jqXHR.statusText);
|
||||||
|
}).fail((jqXHR, textStatus, errorThrown) => {
|
||||||
|
popErrorAlert(jqXHR.responseJSON.messages.error)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?=$this->section('css') ?>
|
||||||
|
<link rel="stylesheet" href="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.css") ?>">
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
|
|
||||||
|
<?= $this->section('additionalExternalJs') ?>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/dataTables.buttons.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.bootstrap5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.html5.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/buttons/buttons.print.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/jszip/jszip.min.js") ?>"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/pdfmake.min.js") ?>" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<script src="<?= site_url("/themes/vuexy/vendor/libs/datatables-sk/plugins/pdfmake/vfs_fonts.js") ?>"></script>
|
||||||
|
<?=$this->endSection() ?>
|
||||||
|
|
||||||
@ -67,6 +67,20 @@ if (
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
<?php if (auth()->user()->can('ubicaciones.menu')) { ?>
|
||||||
|
<li class="menu-item">
|
||||||
|
<a href="<?= route_to("ubicacionesList") ?>" class="menu-link">
|
||||||
|
<?= lang("App.menu_ubicaciones") ?>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<?php } ?>
|
||||||
|
<?php if (auth()->user()->can('series-facturas.menu')) { ?>
|
||||||
|
<li class="menu-item">
|
||||||
|
<a href="<?= route_to("seriesFacturasList") ?>" class="menu-link">
|
||||||
|
<?= lang("App.menu_series_factura") ?>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<?php } ?>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
Reference in New Issue
Block a user