mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadidos permisos a tarifas, salvo metodo delete
This commit is contained in:
@ -37,7 +37,7 @@ class BaseController extends Controller
|
|||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $helpers = ['general', 'go_common'];
|
protected $helpers = ['general', 'go_common', 'rbac'];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|||||||
@ -85,7 +85,7 @@ abstract class BaseResourceController extends \CodeIgniter\RESTful\ResourceContr
|
|||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $helpers = ['session', 'go_common', 'form', 'text', 'general']; //JJO
|
protected $helpers = ['session', 'go_common', 'form', 'text', 'general', 'rbac']; //JJO
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializer method.
|
* Initializer method.
|
||||||
@ -130,29 +130,6 @@ abstract class BaseResourceController extends \CodeIgniter\RESTful\ResourceContr
|
|||||||
$this->viewData['alertStyle'] = $this->alertStyle;
|
$this->viewData['alertStyle'] = $this->alertStyle;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function checkPermission($sectionPermission, $redirectRoute = NULL)
|
|
||||||
{
|
|
||||||
// TODO ojo, con no redirigir al indexRoute, que se crea bucle!!!
|
|
||||||
if (!auth()->user()->can($sectionPermission)) {
|
|
||||||
$this->session->setFlashdata('errorMessage', "No tiene permisos de acceso");
|
|
||||||
if (is_null($redirectRoute)) {
|
|
||||||
return $this->response->redirect(route_to('home'));
|
|
||||||
} else {
|
|
||||||
return $this->response->redirect(route_to($redirectRoute));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function checkPermissionAJAX($sectionPermission)
|
|
||||||
{
|
|
||||||
|
|
||||||
if (!auth()->user()->can($sectionPermission)) {
|
|
||||||
return $this->fail('Error');
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convenience method to display the form of a module
|
* Convenience method to display the form of a module
|
||||||
* @param $forMethod
|
* @param $forMethod
|
||||||
|
|||||||
@ -139,7 +139,7 @@ abstract class GoBaseController extends Controller {
|
|||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $helpers = ['session', 'go_common', 'text', 'general','jwt']; //JJO
|
protected $helpers = ['session', 'go_common', 'text', 'general','jwt', 'rbac']; //JJO
|
||||||
|
|
||||||
public static $queries = [];
|
public static $queries = [];
|
||||||
|
|
||||||
|
|||||||
@ -48,6 +48,8 @@ class TarifaAcabados extends BaseResourceController
|
|||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-acabado.menu');
|
||||||
|
|
||||||
$viewData = [
|
$viewData = [
|
||||||
'currentModule' => static::$controllerSlug,
|
'currentModule' => static::$controllerSlug,
|
||||||
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Tarifaacabado.tarifaacabado')]),
|
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('Tarifaacabado.tarifaacabado')]),
|
||||||
@ -64,6 +66,8 @@ class TarifaAcabados extends BaseResourceController
|
|||||||
public function add()
|
public function add()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-acabado.create', $this->indexRoute);
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
$nullIfEmpty = true; // !(phpversion() >= '8.1');
|
$nullIfEmpty = true; // !(phpversion() >= '8.1');
|
||||||
@ -133,8 +137,10 @@ class TarifaAcabados extends BaseResourceController
|
|||||||
return $this->displayForm(__METHOD__);
|
return $this->displayForm(__METHOD__);
|
||||||
} // end function add()
|
} // end function add()
|
||||||
|
|
||||||
public function edit($requestedId = null) {
|
public function edit($requestedId = null)
|
||||||
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-acabado.edit', $this->indexRoute);
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
|
|||||||
@ -40,6 +40,7 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
|||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
|
checkPermission('tarifa-extra.menu');
|
||||||
|
|
||||||
$this->viewData['usingClientSideDataTable'] = true;
|
$this->viewData['usingClientSideDataTable'] = true;
|
||||||
|
|
||||||
@ -51,8 +52,7 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
|||||||
public function add()
|
public function add()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-extra.create', $this->indexRoute);
|
||||||
|
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
@ -117,6 +117,7 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
|||||||
public function edit($requestedId = null)
|
public function edit($requestedId = null)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-extra.edit', $this->indexRoute);
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
@ -129,14 +130,10 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
|||||||
return $this->redirect2listView('errorMessage', $message);
|
return $this->redirect2listView('errorMessage', $message);
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
$nullIfEmpty = true; // !(phpversion() >= '8.1');
|
|
||||||
|
|
||||||
$postData = $this->request->getPost();
|
$postData = $this->request->getPost();
|
||||||
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
|
||||||
// JJO
|
// JJO
|
||||||
if (isset($this->model->user_updated_id)) {
|
if (isset($this->model->user_updated_id)) {
|
||||||
@ -192,7 +189,6 @@ class Tarifaextra extends \App\Controllers\GoBaseController
|
|||||||
return $this->displayForm(__METHOD__, $id);
|
return $this->displayForm(__METHOD__, $id);
|
||||||
} // end function edit(...)
|
} // end function edit(...)
|
||||||
|
|
||||||
|
|
||||||
public function allItemsSelect()
|
public function allItemsSelect()
|
||||||
{
|
{
|
||||||
if ($this->request->isAJAX()) {
|
if ($this->request->isAJAX()) {
|
||||||
|
|||||||
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Tarifas;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
|
|
||||||
class Tarifapapelcompra extends BaseController
|
|
||||||
{
|
|
||||||
function __construct()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
echo 'Tarifa papel compra';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function add()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function edit()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -1,35 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace App\Controllers\Tarifas;
|
|
||||||
use App\Controllers\BaseController;
|
|
||||||
|
|
||||||
|
|
||||||
class Tarifapapeldefecto extends BaseController
|
|
||||||
{
|
|
||||||
function __construct()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function index()
|
|
||||||
{
|
|
||||||
echo 'Tarifa papel defecto';
|
|
||||||
}
|
|
||||||
|
|
||||||
public function delete()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function add()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public function edit()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@ -40,27 +40,17 @@ class Tarifapreimpresion extends \App\Controllers\GoBaseController
|
|||||||
|
|
||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
if(!auth()->user()->can('tarifa-preimpresion.menu')){
|
checkPermission('tarifa-preimpresion.menu');
|
||||||
$message = "No tiene permisos de acceso";
|
|
||||||
return redirect()->to(route_to('home'))->with('errorMessage', $message);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->viewData['usingClientSideDataTable'] = true;
|
$this->viewData['usingClientSideDataTable'] = true;
|
||||||
|
|
||||||
$this->viewData['pageSubTitle'] = lang('Basic.global.ManageAllRecords', [lang('Tarifapreimpresion.tarifapreimpresion')]);
|
$this->viewData['pageSubTitle'] = lang('Basic.global.ManageAllRecords', [lang('Tarifapreimpresion.tarifapreimpresion')]);
|
||||||
parent::index();
|
parent::index();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function add()
|
public function add()
|
||||||
{
|
{
|
||||||
|
checkPermission('tarifa-preimpresion.create', $this->indexRoute);
|
||||||
if(!auth()->user()->can('tarifa-preimpresion.create')){
|
|
||||||
$message = "No tiene permisos de acceso";
|
|
||||||
return redirect()->to(route_to($this->indexRoute))->with('errorMessage', $message);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
@ -125,6 +115,7 @@ class Tarifapreimpresion extends \App\Controllers\GoBaseController
|
|||||||
public function edit($requestedId = null)
|
public function edit($requestedId = null)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-preimpresion.edit', $this->indexRoute);
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
|
|||||||
@ -56,7 +56,7 @@ class Tarifasencuadernacion extends \App\Controllers\BaseResourceController
|
|||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
// Check if the user is allowed to list items
|
// Check if the user is allowed to list items
|
||||||
parent::checkPermission('tarifa-encuadernacion.menu');
|
checkPermission('tarifa-encuadernacion.menu');
|
||||||
|
|
||||||
$viewData = [
|
$viewData = [
|
||||||
'currentModule' => static::$controllerSlug,
|
'currentModule' => static::$controllerSlug,
|
||||||
@ -75,7 +75,7 @@ class Tarifasencuadernacion extends \App\Controllers\BaseResourceController
|
|||||||
public function add()
|
public function add()
|
||||||
{
|
{
|
||||||
|
|
||||||
parent::checkPermission('tarifa-encuadernacion.create', $this->indexRoute);
|
checkPermission('tarifa-encuadernacion.create', $this->indexRoute);
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
@ -158,7 +158,7 @@ class Tarifasencuadernacion extends \App\Controllers\BaseResourceController
|
|||||||
public function edit($requestedId = null)
|
public function edit($requestedId = null)
|
||||||
{
|
{
|
||||||
|
|
||||||
parent::checkPermission('tarifa-encuadernacion.create', $this->indexRoute);
|
checkPermission('tarifa-encuadernacion.edit', $this->indexRoute);
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
|
|||||||
@ -57,7 +57,7 @@ class Tarifasenvios extends \App\Controllers\BaseResourceController {
|
|||||||
public function index() {
|
public function index() {
|
||||||
|
|
||||||
// Check if the user is allowed to list items
|
// Check if the user is allowed to list items
|
||||||
parent::checkPermission('tarifa-envio.menu');
|
checkPermission('tarifa-envio.menu');
|
||||||
|
|
||||||
$viewData = [
|
$viewData = [
|
||||||
'currentModule' => static::$controllerSlug,
|
'currentModule' => static::$controllerSlug,
|
||||||
@ -75,7 +75,7 @@ class Tarifasenvios extends \App\Controllers\BaseResourceController {
|
|||||||
|
|
||||||
public function add() {
|
public function add() {
|
||||||
|
|
||||||
parent::checkPermission('tarifa-envio.create', $this->indexRoute);
|
checkPermission('tarifa-envio.create', $this->indexRoute);
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
@ -144,7 +144,7 @@ class Tarifasenvios extends \App\Controllers\BaseResourceController {
|
|||||||
|
|
||||||
public function edit($requestedId = null) {
|
public function edit($requestedId = null) {
|
||||||
|
|
||||||
parent::checkPermission('tarifa-envio.edit', $this->indexRoute);
|
checkPermission('tarifa-envio.edit', $this->indexRoute);
|
||||||
|
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
@ -231,9 +231,9 @@ class Tarifasenvios extends \App\Controllers\BaseResourceController {
|
|||||||
// JJO
|
// JJO
|
||||||
public function delete($id = null)
|
public function delete($id = null)
|
||||||
{
|
{
|
||||||
if (!auth()->user()->can('tarifa-envio.delete')) {
|
/*if (!auth()->user()->can('tarifa-envio.delete')) {
|
||||||
return $this->fail('Error');
|
return $this->fail('Error');
|
||||||
}
|
}*/
|
||||||
|
|
||||||
if (!empty(static::$pluralObjectNameCc) && !empty(static::$singularObjectNameCc)) {
|
if (!empty(static::$pluralObjectNameCc) && !empty(static::$singularObjectNameCc)) {
|
||||||
$objName = mb_strtolower(lang(ucfirst(static::$pluralObjectNameCc).'.'.static::$singularObjectNameCc));
|
$objName = mb_strtolower(lang(ucfirst(static::$pluralObjectNameCc).'.'.static::$singularObjectNameCc));
|
||||||
|
|||||||
@ -52,7 +52,7 @@ class Tarifasmanipulado extends \App\Controllers\BaseResourceController
|
|||||||
public function index()
|
public function index()
|
||||||
{
|
{
|
||||||
// Check if the user is allowed to list items
|
// Check if the user is allowed to list items
|
||||||
parent::checkPermission('tarifa-manipulado.menu');
|
checkPermission('tarifa-manipulado.menu');
|
||||||
|
|
||||||
$viewData = [
|
$viewData = [
|
||||||
'currentModule' => static::$controllerSlug,
|
'currentModule' => static::$controllerSlug,
|
||||||
@ -71,8 +71,7 @@ class Tarifasmanipulado extends \App\Controllers\BaseResourceController
|
|||||||
public function add()
|
public function add()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-manipulado.create', $this->indexRoute);
|
||||||
|
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
@ -142,6 +141,7 @@ class Tarifasmanipulado extends \App\Controllers\BaseResourceController
|
|||||||
public function edit($requestedId = null)
|
public function edit($requestedId = null)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
checkPermission('tarifa-manipulado.edit', $this->indexRoute);
|
||||||
|
|
||||||
if ($requestedId == null) :
|
if ($requestedId == null) :
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
@ -153,16 +153,13 @@ class Tarifasmanipulado extends \App\Controllers\BaseResourceController
|
|||||||
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Tarifamanipulado.tarifamanipulado')), $id]);
|
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('Tarifamanipulado.tarifamanipulado')), $id]);
|
||||||
return $this->redirect2listView('sweet-error', $message);
|
return $this->redirect2listView('sweet-error', $message);
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if ($this->request->getPost()) :
|
if ($this->request->getPost()) :
|
||||||
|
|
||||||
$nullIfEmpty = true; // !(phpversion() >= '8.1');
|
|
||||||
|
|
||||||
$postData = $this->request->getPost();
|
$postData = $this->request->getPost();
|
||||||
|
|
||||||
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
|
$sanitizedData = $this->sanitized($postData, true);
|
||||||
|
|
||||||
// JJO
|
// JJO
|
||||||
if (isset($this->model->user_updated_id)) {
|
if (isset($this->model->user_updated_id)) {
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
use App\Models\Usuarios\GroupModel;
|
use App\Models\Usuarios\GroupModel;
|
||||||
use App\Models\Usuarios\PermisosModel;
|
use App\Models\Usuarios\PermisosModel;
|
||||||
|
use CodeIgniter\HTTP\RedirectResponse;
|
||||||
|
|
||||||
if (!function_exists('generate_php_roles_constant')) {
|
if (!function_exists('generate_php_roles_constant')) {
|
||||||
function generate_php_roles_constant()
|
function generate_php_roles_constant()
|
||||||
@ -94,3 +95,28 @@ if (!function_exists('generate_php_permissions_matrix_constant')) {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (!function_exists('checkPermission')) {
|
||||||
|
/**
|
||||||
|
* Checks if the user has the required permission and redirects accordingly.
|
||||||
|
*
|
||||||
|
* @param string $sectionPermission The permission to check.
|
||||||
|
* @param string|null $redirectRoute The route to redirect to if the permission is not granted.
|
||||||
|
* @return RedirectResponse|null Redirect response if the user does not have permission, null otherwise.
|
||||||
|
*/
|
||||||
|
function checkPermission(string $sectionPermission, string $redirectRoute = null)
|
||||||
|
{
|
||||||
|
$session = \Config\Services::session();
|
||||||
|
$response = \Config\Services::response();
|
||||||
|
|
||||||
|
if (!auth()->user()->can($sectionPermission)) {
|
||||||
|
$session->setFlashdata('errorMessage', "No tiene permisos de acceso");
|
||||||
|
|
||||||
|
$route = $redirectRoute ?? 'home';
|
||||||
|
return $response->redirect(route_to($route));
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@ -742,6 +742,7 @@ return [
|
|||||||
"menu_pedidos_todos" => "Todos",
|
"menu_pedidos_todos" => "Todos",
|
||||||
|
|
||||||
"menu_presupuestos" => "Presupuestos",
|
"menu_presupuestos" => "Presupuestos",
|
||||||
|
"menu_presupuestos_clientes" => "Presupuestos (Clientes)",
|
||||||
"menu_presupuesto" => "Libros",
|
"menu_presupuesto" => "Libros",
|
||||||
"menu_presupuesto_buscador" => "Buscador",
|
"menu_presupuesto_buscador" => "Buscador",
|
||||||
"menu_libros" => "Libros",
|
"menu_libros" => "Libros",
|
||||||
|
|||||||
@ -3,14 +3,22 @@
|
|||||||
* MENU PRESUPUESTOS VISTA CLIENTES
|
* MENU PRESUPUESTOS VISTA CLIENTES
|
||||||
*/
|
*/
|
||||||
if (auth()->user()->inGroup('cliente-admin')
|
if (auth()->user()->inGroup('cliente-admin')
|
||||||
|| auth()->user()->inGroup('cliente-editor')) {
|
|| auth()->user()->inGroup('cliente-editor')
|
||||||
|
|| auth()->user()->inGroup('admin')
|
||||||
|
) {
|
||||||
|
|
||||||
if (auth()->user()->can('presupuesto-cliente.menu')) {
|
if (auth()->user()->can('presupuesto-cliente.menu') || auth()->user()->inGroup('admin')) {
|
||||||
?>
|
?>
|
||||||
<li class="menu-item">
|
<li class="menu-item">
|
||||||
<a href="javascript:void(0);" class="menu-link menu-toggle">
|
<a href="javascript:void(0);" class="menu-link menu-toggle">
|
||||||
<i class="menu-icon tf-icons ti ti-currency-dollar"></i>
|
<i class="menu-icon tf-icons ti ti-currency-dollar"></i>
|
||||||
<?= lang("App.menu_presupuestos") ?>
|
<?php
|
||||||
|
echo(
|
||||||
|
auth()->user()->inGroup('admin') ?
|
||||||
|
lang("App.menu_presupuestos_clientes") :
|
||||||
|
lang("App.menu_presupuestos")
|
||||||
|
);
|
||||||
|
?>
|
||||||
</a>
|
</a>
|
||||||
<ul class="menu-sub">
|
<ul class="menu-sub">
|
||||||
<li class="menu-item">
|
<li class="menu-item">
|
||||||
|
|||||||
@ -7,7 +7,8 @@ if (
|
|||||||
auth()->user()->can('tarifa-manipulado.menu') ||
|
auth()->user()->can('tarifa-manipulado.menu') ||
|
||||||
auth()->user()->can('tarifa-acabado.menu') ||
|
auth()->user()->can('tarifa-acabado.menu') ||
|
||||||
auth()->user()->can('tarifa-encuadernacion.menu') ||
|
auth()->user()->can('tarifa-encuadernacion.menu') ||
|
||||||
auth()->user()->can('tarifa-envio.menu')
|
auth()->user()->can('tarifa-envio.menu') ||
|
||||||
|
auth()->user()->can('tarifa-extra.menu')
|
||||||
) {
|
) {
|
||||||
?>
|
?>
|
||||||
<!-- Prices -->
|
<!-- Prices -->
|
||||||
|
|||||||
Reference in New Issue
Block a user