mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
408 lines
15 KiB
PHP
408 lines
15 KiB
PHP
<?php
|
|
namespace App\Controllers\Catalogo;
|
|
|
|
use App\Controllers\BaseResourceController;
|
|
use App\Entities\Catalogo\CatalogoLibroEntity;
|
|
use App\Models\Catalogo\CatalogoLibroModel;
|
|
use App\Models\Clientes\ClienteModel;
|
|
use Hermawan\DataTables\DataTable;
|
|
|
|
class CatalogoLibros extends BaseResourceController
|
|
{
|
|
|
|
protected $modelName = CatalogoLibroModel::class;
|
|
protected $format = 'json';
|
|
|
|
protected static $singularObjectName = 'Catalogo';
|
|
protected static $singularObjectNameCc = 'CatalogoLibros';
|
|
protected static $pluralObjectName = 'Catalogos';
|
|
protected static $pluralObjectNameCc = 'catalogos';
|
|
|
|
protected static $controllerSlug = 'catalogo';
|
|
|
|
protected static $viewPath = 'themes/vuexy/form/catalogo/';
|
|
|
|
protected $indexRoute = 'CatalogoLibrosList';
|
|
|
|
|
|
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
|
{
|
|
$this->viewData['pageTitle'] = lang('Catalogo.listingPage');
|
|
$this->viewData['usingSweetAlert'] = true;
|
|
|
|
// Breadcrumbs (IMN)
|
|
$this->viewData['breadcrumb'] = [
|
|
['title' => lang("App.menu_catalogo"), 'route' => "javascript:void(0);", 'active' => false],
|
|
['title' => lang("App.menu_catalogo_libros"), 'route' => route_to('CatalogoLibrosList'), 'active' => true]
|
|
];
|
|
|
|
parent::initController($request, $response, $logger);
|
|
}
|
|
|
|
|
|
public function index()
|
|
{
|
|
|
|
$viewData = [
|
|
'currentModule' => static::$controllerSlug,
|
|
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Catalogo.catalogo')]),
|
|
'catalogoLibrosEntity' => new CatalogoLibroEntity(),
|
|
'usingServerSideDataTable' => true,
|
|
|
|
];
|
|
|
|
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
|
|
|
|
return view(static::$viewPath . 'viewCatalogoLibrosList', $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['catalogoLibrosEntity'] = isset($sanitizedData) ? new CatalogoLibroEntity($sanitizedData) : new CatalogoLibroEntity();
|
|
$this->viewData['formAction'] = route_to('createPais');
|
|
$this->viewData['boxTitle'] = lang('Basic.global.addNew') . ' ' . lang('Catalogo.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);
|
|
$catalogoLibrosEntity = $this->model->find($id);
|
|
|
|
if ($catalogoLibrosEntity == false):
|
|
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Catalogo.pais')), $id]);
|
|
return $this->redirect2listView('sweet-error', $message);
|
|
endif;
|
|
|
|
|
|
|
|
if ($this->request->getPost()):
|
|
|
|
$nullIfEmpty = true; // !(phpversion() >= '8.1');
|
|
|
|
$postData = $this->request->getPost();
|
|
|
|
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
|
|
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('Catalogo.catalogo'))]);
|
|
$this->session->setFlashdata('formErrors', $this->model->errors());
|
|
|
|
endif;
|
|
|
|
$catalogoLibrosEntity->fill($sanitizedData);
|
|
|
|
$thenRedirect = false;
|
|
endif;
|
|
if ($noException && $successfulResult):
|
|
$id = $catalogoLibrosEntity->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')
|
|
|
|
$catalogoLibrosEntity->clienteName = model('App\Models\Clientes\ClienteModel')->find($catalogoLibrosEntity->cliente_id)->nombre;
|
|
$catalogoLibrosEntity->encuadernacionName = model('App\Models\Configuracion\TipoPresupuestoModel')->find($catalogoLibrosEntity->encuadernacion_id)->encuadernacion;
|
|
$catalogoLibrosEntity->createdUser = model('App\Models\Usuarios\UserModel')->getFullName($catalogoLibrosEntity->user_created_id);
|
|
$catalogoLibrosEntity->updatedUser = model('App\Models\Usuarios\UserModel')->getFullName($catalogoLibrosEntity->user_update_id);
|
|
|
|
$this->viewData['catalogoLibrosEntity'] = $catalogoLibrosEntity;
|
|
|
|
$this->viewData['formAction'] = route_to('CatalogoLibrosEdit', $id);
|
|
|
|
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('Catalogo.moduleTitle') . ' ' . lang('Basic.global.edit3');
|
|
|
|
|
|
return $this->displayForm(__METHOD__, $id);
|
|
} // end function edit(...)
|
|
|
|
|
|
public function datatable()
|
|
{
|
|
$reqData = $this->request->getGet();
|
|
$start = $reqData['start'] ?? 0;
|
|
$length = $reqData['length'] ?? 5;
|
|
|
|
$q = $this->model->getDatatableQuery()->limit($length, $start);
|
|
|
|
$result = DataTable::of($q)
|
|
->edit(
|
|
"portada",
|
|
function ($row, $meta) {
|
|
if (is_null($row->cubierta_archivo)) {
|
|
return '<img class="img-thumbnail" src="' . $row->portada . '" alt="Portada" style="max-height: 80px;">';
|
|
|
|
} else {
|
|
return '';
|
|
}
|
|
}
|
|
)
|
|
->add("actionBtns", callback: function ($q) {
|
|
$actions = '';
|
|
if (auth()->user()->can('catalogo.edit')) {
|
|
$actions .= '
|
|
<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="' . $q->id . '"></i></a>
|
|
</div>';
|
|
}
|
|
if (auth()->user()->can('catalogo.delete')) {
|
|
$actions .= '
|
|
<div class="btn-group btn-group-sm">
|
|
<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete mx-2" data-id="' . $q->id . '"></i></a>
|
|
</div>';
|
|
}
|
|
return $actions;
|
|
});
|
|
|
|
return $result->toJson(returnAsObject: true);
|
|
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
|
|
public function menuItems2()
|
|
{
|
|
if ($this->request->isAJAX()) {
|
|
$query = $this->model->builder()->select(
|
|
[
|
|
"id",
|
|
"nombre as name"
|
|
]
|
|
)->orderBy("nombre", "asc");
|
|
if ($this->request->getGet("q")) {
|
|
$query->groupStart()
|
|
->orLike("lg_paises.nombre", $this->request->getGet("q"))
|
|
->groupEnd();
|
|
}
|
|
|
|
return $this->response->setJSON($query->get()->getResultObject());
|
|
} else {
|
|
return $this->failUnauthorized('Invalid request', 403);
|
|
}
|
|
}
|
|
|
|
|
|
/* IMN */
|
|
public function getClientList()
|
|
{
|
|
$search = $this->request->getGet("q") ?? "";
|
|
$data = (new ClienteModel())->getIdName($search);
|
|
return $this->response->setJSON($data);
|
|
|
|
}
|
|
|
|
public function get_files()
|
|
{
|
|
|
|
// Check if the request is a POST request
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
$presupuesto_id = $this->request->getPost()['presupuesto_id'] ?? 0;
|
|
|
|
$model = model('App\Models\Presupuestos\PresupuestoFicheroModel');
|
|
$files = $model->getFiles($presupuesto_id);
|
|
|
|
$result = [];
|
|
|
|
foreach ($files as $file) {
|
|
|
|
$size = filesize($file->file_path);
|
|
$splitPath = explode("presupuestos/", $file->file_path);
|
|
|
|
// se crea un objeto con el nombre del fichero y el tamaño
|
|
$obj = (object) array(
|
|
'name' => $file->nombre,
|
|
'size' => $size,
|
|
'hash' => $splitPath[1] ?? $file->file_path
|
|
);
|
|
|
|
|
|
// se añade el objeto al array
|
|
array_push($result, $obj);
|
|
}
|
|
|
|
return json_encode($result);
|
|
}
|
|
}
|
|
|
|
public function upload_files()
|
|
{
|
|
|
|
$model = model('App\Models\Presupuestos\PresupuestoFicheroModel');
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
$presupuesto_id = $_POST['presupuesto_id'];
|
|
$old_files = json_decode($_POST['oldFiles']);
|
|
$ftp = new SafekatFtpClient();
|
|
|
|
// Comprobar si se han subido archivos
|
|
if (!empty($_FILES['file']) || !empty($old_files)) {
|
|
|
|
|
|
// Borrar los archivos existentes del presupuesto
|
|
$ftp->removeFiles($presupuesto_id);
|
|
$model->deleteFiles($presupuesto_id, $old_files);
|
|
|
|
if (!empty($_FILES['file'])) {
|
|
$files = $_FILES['file'];
|
|
|
|
// Iterar sobre los archivos
|
|
for ($i = 0; $i < count($files['name']); $i++) {
|
|
// Aquí puedes acceder a las propiedades del archivo
|
|
$name = $files['name'][$i];
|
|
$extension = explode('.', $files['name'][$i])[1];
|
|
$tmp_name = $files['tmp_name'][$i];
|
|
|
|
$new_name = $model->saveFileInBBDD($presupuesto_id, $name, $extension, auth()->id());
|
|
|
|
// Se sube el fichero
|
|
// Pero primero se comprueba que la carpeta presupuestos exista
|
|
if (!is_dir(WRITEPATH . 'uploads/presupuestos')) {
|
|
mkdir(WRITEPATH . 'uploads/presupuestos', 0777, true);
|
|
}
|
|
|
|
if (!is_null($new_name)) {
|
|
$path = WRITEPATH . 'uploads/presupuestos/' . $new_name;
|
|
move_uploaded_file($tmp_name, $path);
|
|
}
|
|
}
|
|
$ftp->uploadFilePresupuesto($presupuesto_id);
|
|
}
|
|
} else {
|
|
// Borrar los archivos existentes del presupuesto
|
|
$ftp->removeFiles($presupuesto_id);
|
|
$model->deleteFiles($presupuesto_id);
|
|
}
|
|
}
|
|
return json_encode(['message' => 'Archivos subidos correctamente']);
|
|
}
|
|
|
|
|
|
}
|