Merge branch 'feat/servicio_acabado' into 'main'

Feat/servicio acabado

See merge request jjimenez/safekat!80
This commit is contained in:
2023-12-03 19:17:37 +00:00
29 changed files with 1823 additions and 408 deletions

View File

@ -394,6 +394,19 @@ $routes->group('tarifaencuadernacionlineas', ['namespace' => 'App\Controllers\Ta
});
$routes->resource('tarifaencuadernacionlineas', ['namespace' => 'App\Controllers\Tarifas', 'controller' => 'Tarifaencuadernacionlineas', 'except' => 'show,new,create,update']);
$routes->group('tarifaencuadernacionlineahorass', ['namespace' => 'App\Controllers\Tarifas'], function ($routes) {
$routes->get('', 'Tarifaencuadernacionlineashoras::index', ['as' => 'tarifaEncuadernacionLineaListHoras']);
$routes->get('add', 'Tarifaencuadernacionlineashoras::add', ['as' => 'newTarifaEncuadernacionLineaHoras']);
$routes->post('add', 'Tarifaencuadernacionlineashoras::add', ['as' => 'createTarifaEncuadernacionLineaHoras']);
$routes->post('create', 'Tarifaencuadernacionlineashoras::create', ['as' => 'ajaxCreateTarifaEncuadernacionLineaHoras']);
$routes->put('(:num)/update', 'Tarifaencuadernacionlineashoras::update/$1', ['as' => 'ajaxUpdateTarifaEncuadernacionLineaHoras']);
$routes->post('(:num)/edit', 'Tarifaencuadernacionlineashoras::edit/$1', ['as' => 'updateTarifaEncuadernacionLineaHoras']);
$routes->post('datatable', 'Tarifaencuadernacionlineashoras::datatable', ['as' => 'dataTableOfTarifaEncuadernacionLineasHoras']);
$routes->post('datatable_editor', 'Tarifaencuadernacionlineashoras::datatable_editor', ['as' => 'editorOfTarifaEncuadernacionLineasHoras']);
$routes->post('allmenuitems', 'Tarifaencuadernacionlineashoras::allItemsSelect', ['as' => 'select2ItemsOfTarifaEncuadernacionLineasHoras']);
});
$routes->resource('tarifaencuadernacionlineahorass', ['namespace' => 'App\Controllers\Tarifas', 'controller' => 'TarifaencuadernacionlineasHoras', 'except' => 'show,new,create,update']);
$routes->group('tarifaencuadernaciontiradas', ['namespace' => 'App\Controllers\Tarifas'], function ($routes) {
$routes->post('datatable', 'Tarifaencuadernaciontiradas::datatable', ['as' => 'dataTableOfTarifaEncuadernacionTiradas']);
@ -480,16 +493,16 @@ $routes->group('cosidotapablanda', ['namespace' => 'App\Controllers\Presupuestos
$routes->resource('cosidotapablanda', ['namespace' => 'App\Controllers\Presupuestos', 'controller' => 'Cosidotapablanda', 'except' => 'show,new,create,update']);
$routes->group('serviciosacabados', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) {
$routes->post('datatable', 'PresupuestoAcabados::datatable', ['as' => 'dataTableOfPresupuestoAcabados']);
$routes->post('datatable_editor', 'PresupuestoAcabados::datatable_editor', ['as' => 'editorOfPresupuestoAcabados']);
$routes->get('delete/(:num)', 'PresupuestoAcabados::delete/$1', ['as' => 'deletePresupuestoAcabado']);
$routes->post('datatable', 'Presupuestoacabados::datatable', ['as' => 'dataTableOfPresupuestoAcabados']);
$routes->get('delete/(:num)', 'Presupuestoacabados::delete/$1', ['as' => 'deletePresupuestoAcabado']);
$routes->post('edit/(:num)', 'Presupuestoacabados::edit/$1', ['as' => 'updatePresupuestoacabados']);
});
$routes->group('serviciosencuadernaciones', ['namespace' => 'App\Controllers\Presupuestos'], function ($routes) {
$routes->post('datatable', 'Presupuestoencuadernaciones::datatable', ['as' => 'dataTableOfPresupuestoEncuadernaciones']);
$routes->post('menuitems', 'Presupuestoencuadernaciones::menuItems', ['as' => 'menuItemsOfPresupuestoEncuadernaciones']);
$routes->get('delete/(:num)', 'Presupuestoencuadernaciones::delete/$1', ['as' => 'deletePresupuestoencuadernaciones']);
$routes->post('edit/(:num)', 'Presupuestoencuadernaciones::edit/$1', ['as' => 'updateCosidotapablanda']);
$routes->post('edit/(:num)', 'Presupuestoencuadernaciones::edit/$1', ['as' => 'updatePresupuestoencuadernaciones']);
});

View File

@ -11,6 +11,7 @@ use App\Models\Configuracion\PapelGenericoModel;
use App\Models\Presupuestos\PresupuestoModel;
use App\Models\Presupuestos\PresupuestoEncuadernacionesModel;
use App\Models\Presupuestos\PresupuestoAcabadosModel;
use App\Services\PresupuestoService;
use App\Models\Configuracion\PapelImpresionModel;
@ -277,11 +278,12 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
$this->viewData['lineasPresupuesto'] = $this->getLineasPresupuestoActivas($id);
// Tarifas
$this->viewData['serviciosAcabado'] = $this->getServiciosAcabado();
$this->viewData['serviciosPreimpresion'] = $this->getServiciosPreimpresion();
$this->viewData['serviciosEncuadernacion'] = $this->getServiciosEncuadernacion();
$this->viewData['serviciosAcabado'] = $this->getServiciosAcabado();
$this->viewData['serviciosManipulado'] = $this->getServiciosManipulado();
$this->viewData['serviciosEncuadernacionList'] = (new PresupuestoEncuadernacionesModel())->getResource($id)->get()->getResultObject();
$this->viewData['serviciosAcabadosList'] = (new PresupuestoAcabadosModel())->getResource($id)->get()->getResultObject();
$this->viewData['POD'] = $this->getPOD();
@ -999,10 +1001,10 @@ class Cosidotapablanda extends \App\Controllers\GoBaseResourceController
{
$model = model('App\Models\Tarifas\TarifaacabadoModel');
$data = $model->getServiciosAcabadoSelector();
array_unshift($data, (object)array(
/*array_unshift($data, (object)array(
"value" => 0,
"label" => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('Presupuestos.servicioAcabado'))])
));
));*/
return $data;
}

View File

@ -1,121 +0,0 @@
<?php namespace App\Controllers\Presupuestos;
use App\Controllers\GoBaseResourceController;
use App\Models\Collection;
use App\Models\Presupuestos\PresupuestoAcabadosModel;
use DataTables\Editor;
use DataTables\Editor\Field;
use DataTables\Editor\Validate;
class PresupuestoAcabados extends \App\Controllers\GoBaseResourceController
{
protected $modelName = PresupuestoAcabadosModel::class;
protected $format = 'json';
protected static $singularObjectName = 'Presupuesto acabado';
protected static $singularObjectNameCc = 'presupuestoAcabado';
protected static $pluralObjectName = 'Presupuestos acabado';
protected static $pluralObjectNameCc = 'presupuestosAcabado';
protected static $controllerSlug = 'presupuesto-acabados';
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
protected $indexRoute = 'contactoDeClienteList';
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
{
parent::initController($request, $response, $logger);
}
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;
$requestedOrder = $reqData['order']['0']['column'] ?? 1;
$order = PresupuestoAcabadosModel::SORTABLE[$requestedOrder >= 0 ? $requestedOrder : 1];
$dir = $reqData['order']['0']['dir'] ?? 'asc';
$id_P = $reqData['id_presupuesto'] ?? -1;
$resourceData = $this->model->getResource($id_P)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
return $this->respond(Collection::datatable(
$resourceData,
$this->model->getResource()->countAllResults(),
$this->model->getResource($id_P)->countAllResults()
));
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
public function datatable_editor() {
if ($this->request->isAJAX()) {
include(APPPATH . "ThirdParty/DatatablesEditor/DataTables.php");
// Build our Editor instance and process the data coming from _POST
$response = Editor::inst( $db, 'presupuesto_acabados' )
->fields(
Field::inst( 'tarifa_acabado_id' )
->validator( 'Validate::notEmpty',array(
'message' => 'Selecciones servicios de acabado' )
),
Field::inst( 'precio_unidad' )
->validator( 'Validate::notEmpty',array(
'message' => 'Falta precio unitario' )
),
Field::inst( 'precio_total' )
->validator( 'Validate::notEmpty',array(
'message' => 'Falta precio total' )
),
Field::inst( 'presupuesto_id' ),
)
->validator( function($editor, $action, $data){
if ($action === Editor::ACTION_CREATE || $action === Editor::ACTION_EDIT){
//return $response;
/*foreach ($data['data'] as $pkey => $values ){
// No se pueden duplicar valores al crear o al editar
if (!empty($response)){
return $response;
}
}*/
}
})
->debug(true)
->process( $_POST )
->data();
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$response[$csrfTokenName] = $newTokenHash;
echo json_encode($response);
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
}

View File

@ -0,0 +1,93 @@
<?php namespace App\Controllers\Presupuestos;
use App\Controllers\GoBaseResourceController;
use App\Models\Collection;
use App\Models\Presupuestos\PresupuestoAcabadosModel;
use DataTables\Editor;
use DataTables\Editor\Field;
use DataTables\Editor\Validate;
class Presupuestoacabados extends \App\Controllers\GoBaseResourceController
{
protected $modelName = PresupuestoAcabadosModel::class;
protected $format = 'json';
protected static $singularObjectName = 'Presupuesto acabado';
protected static $singularObjectNameCc = 'presupuestoAcabado';
protected static $pluralObjectName = 'Presupuestos acabado';
protected static $pluralObjectNameCc = 'presupuestosAcabado';
protected static $controllerSlug = 'presupuesto-acabados';
protected static $viewPath = 'themes/backend/vuexy/form/presupuestos/';
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
{
parent::initController($request, $response, $logger);
}
public function edit($requestedId = null)
{
if ($requestedId == null) :
return;
endif;
$postData = $this->request->getJSON();
$tarifas = array_column($postData->datos, 'tarifa_id');
if(count($tarifas)>0){
$this->model->deleteServiciosNotInArray($requestedId, $tarifas);
}
else{
$this->model->deleteAllServicios($requestedId);
}
$this->model->updateTarifas($requestedId, $postData->datos);
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$data = [
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
}
public function datatable()
{
if ($this->request->isAJAX()) {
$reqData = $this->request->getPost();
$tarifa_acabado_id = $reqData['tarifa_acabado_id'] ?? 0;
$tirada = $reqData['tirada'] ?? 0;
$POD = $reqData['POD'] ?? 0;
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$values = $this->model->getPrecioTarifa($tarifa_acabado_id, $tirada, $POD);
$data = [
'values' => $values,
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
}

View File

@ -82,10 +82,24 @@ class Presupuestoencuadernaciones extends \App\Controllers\GoBaseResourceControl
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
if(is_null($tipo))
$values = $this->model->getPrecioTarifa($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto, $proveedor_id, $POD);
else if($tipo=='tarifa')
$values = $this->model->getPrecioTarifa($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto, -1, $POD);
$tarifaModel = model('App\Models\Tarifas\TarifaEncuadernacionModel');
if(is_null($tipo)){
if($tarifaModel->isTarifaPorHoras($tarifa_encuadernacion_id)){
$values = $this->model->getPrecioTarifaHoras($tarifa_encuadernacion_id, $paginas, $tirada, $proveedor_id, $POD);
}else{
$values = $this->model->getPrecioTarifa($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto, $proveedor_id, $POD);
}
}
else if($tipo=='tarifa'){
if($tarifaModel->isTarifaPorHoras($tarifa_encuadernacion_id)){
$values = $this->model->getPrecioTarifaHoras($tarifa_encuadernacion_id, $paginas, $tirada, -1, $POD);
}
else{
$values = $this->model->getPrecioTarifa($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto, -1, $POD);
}
}
else
$values = $this->model->initPresupuesto(4, $solapas, $tirada, $paginas, $ancho, $alto, $POD);
$data = [

View File

@ -314,28 +314,51 @@ class Tarifaencuadernacionlineas extends \App\Controllers\GoBaseResourceControll
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;
$cleandatatable = $reqData['cleandatatable'] ?? 0;
if($cleandatatable){
$tarifa_encuadernacion_id = $reqData['tarifa_encuadernacion_id'] ?? -1;
$datetime = (new \CodeIgniter\I18n\Time("now"));
$this->model->removeAllEncuadernacionLineasForTarifa($tarifa_encuadernacion_id, $datetime, 1);
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$data = [
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
}
$start = $reqData['start'] ?? 0;
$length = $reqData['length'] ?? 5;
$search = $reqData['search']['value'];
$requestedOrder = $reqData['order']['0']['column'] ?? 0;
$order = TarifaEncuadernacionLineaModel::SORTABLE[$requestedOrder >= 0 ? $requestedOrder : 0];
$dir = $reqData['order']['0']['dir'] ?? 'asc';
$id_TE = $reqData['tirada_id'] ?? -1;
else{
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'] ?? 0;
$order = TarifaEncuadernacionLineaModel::SORTABLE[$requestedOrder >= 0 ? $requestedOrder : 0];
$dir = $reqData['order']['0']['dir'] ?? 'asc';
$resourceData = $this->model->getResource("", $id_TE)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
$id_TE = $reqData['tirada_id'] ?? -1;
return $this->respond(Collection::datatable(
$resourceData,
$this->model->getResource()->countAllResults(),
$this->model->getResource("", $id_TE)->countAllResults()
));
$resourceData = $this->model->getResource("", $id_TE)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
return $this->respond(Collection::datatable(
$resourceData,
$this->model->getResource()->countAllResults(),
$this->model->getResource("", $id_TE)->countAllResults()
));
}
} else {
return $this->failUnauthorized('Invalid request', 403);
}

View File

@ -0,0 +1,405 @@
<?php namespace App\Controllers\Tarifas;
use App\Controllers\GoBaseResourceController;
use App\Models\Collection;
use App\Entities\Tarifas\TarifaEncuadernacionLinea;
use App\Models\Tarifas\TarifaEncuadernacionLineaHorasModel;
use
DataTables\Editor,
DataTables\Database,
DataTables\Editor\Field,
DataTables\Editor\Format,
DataTables\Editor\Mjoin,
DataTables\Editor\Options,
DataTables\Editor\Upload,
DataTables\Editor\Validate,
DataTables\Editor\ValidateOptions;
class Tarifaencuadernacionlineashoras extends \App\Controllers\GoBaseResourceController
{
protected $modelName = TarifaEncuadernacionLineaHorasModel::class;
protected $format = 'json';
protected static $singularObjectName = 'Tarifa Encuadernacion Linea';
protected static $singularObjectNameCc = 'tarifaEncuadernacionLinea';
protected static $pluralObjectName = 'Tarifa Encuadernacion Lineas';
protected static $pluralObjectNameCc = 'tarifaEncuadernacionLineas';
protected static $controllerSlug = 'tarifaencuadernacionlineashoras';
protected static $viewPath = 'themes/backend/vuexy/form/tarifas/encuadernacion/';
protected $indexRoute = 'tarifaEncuadernacionLineaHorasList';
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
{
$this->viewData['pageTitle'] = lang('TarifaEncuadernacionLineas.moduleTitle');
$this->viewData['usingSweetAlert'] = true;
parent::initController($request, $response, $logger);
// Se indica que este controlador trabaja con soft_delete
$this->soft_delete = true;
// Se indica el flag para los ficheros borrados
$this->delete_flag = 1;
}
public function index()
{
$viewData = [
'currentModule' => static::$controllerSlug,
'pageSubTitle' => lang('Basic.global.ManageAllRecords', [lang('TarifaEncuadernacionLineas.tarifaencuadernacionLinea')]),
'tarifaEncuadernacionLinea' => new TarifaEncuadernacionLinea(),
'usingServerSideDataTable' => true,
];
$viewData = array_merge($this->viewData, $viewData); // merge any possible values from the parent controller class
return view(static::$viewPath . 'viewTarifaEncuadernacionLineaList', $viewData);
}
public function add()
{
$requestMethod = $this->request->getMethod();
if ($requestMethod === 'post') :
$nullIfEmpty = true; // !(phpversion() >= '8.1');
$postData = $this->request->getPost();
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
$noException = true;
if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
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['tarifaEncuadernacionLinea'] = isset($sanitizedData) ? new TarifaEncuadernacionLinea($sanitizedData) : new TarifaEncuadernacionLinea();
$this->viewData['formAction'] = route_to('createTarifaEncuadernacionLinea');
$this->viewData['boxTitle'] = lang('Basic.global.addNew') . ' ' . lang('TarifaEncuadernacionLineas.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);
$tarifaEncuadernacionLinea = $this->model->find($id);
if ($tarifaEncuadernacionLinea == false) :
$message = lang('Basic.global.notFoundWithIdErr', [mb_strtolower(lang('TarifaEncuadernacionLineas.tarifaencuadernacionLinea')), $id]);
return $this->redirect2listView('sweet-error', $message);
endif;
$requestMethod = $this->request->getMethod();
if ($requestMethod === 'post') :
$nullIfEmpty = true; // !(phpversion() >= '8.1');
$postData = $this->request->getPost();
$sanitizedData = $this->sanitized($postData, $nullIfEmpty);
$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('TarifaEncuadernacionLineas.tarifaencuadernacionLinea'))]);
$this->session->setFlashdata('formErrors', $this->model->errors());
endif;
$tarifaEncuadernacionLinea->fill($sanitizedData);
$thenRedirect = false;
endif;
if ($noException && $successfulResult) :
$id = $tarifaEncuadernacionLinea->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['tarifaEncuadernacionLinea'] = $tarifaEncuadernacionLinea;
$this->viewData['formAction'] = route_to('updateTarifaEncuadernacionLinea', $id);
$this->viewData['boxTitle'] = lang('Basic.global.edit2') . ' ' . lang('TarifaEncuadernacionLineas.moduleTitle') . ' ' . lang('Basic.global.edit3');
return $this->displayForm(__METHOD__, $id);
} // end function edit(...)
public function datatable_editor()
{
if ($this->request->isAJAX()) {
include(APPPATH . "ThirdParty/DatatablesEditor/DataTables.php");
// Build our Editor instance and process the data coming from _POST
$response = Editor::inst($db, 'tarifa_encuadernacion_lineas_horas')
->fields(
Field::inst('tiempo_min')
->validator('Validate::numeric', array(
'message' => lang('TarifaAcabadoLineas.validation.paginas_libro_min.decimal'))
)
->validator('Validate::notEmpty', array(
'message' => lang('TarifaAcabadoLineas.validation.paginas_libro_min.required'))
),
Field::inst('tiempo_max')
->validator('Validate::numeric', array(
'message' => lang('TarifaAcabadoLineas.validation.paginas_libro_max.decimal'))
)
->validator('Validate::notEmpty', array(
'message' => lang('TarifaAcabadoLineas.validation.paginas_libro_max.required'))
),
Field::inst('precio_hora')
->validator('Validate::numeric', array(
'message' => lang('TarifaAcabadoLineas.validation.precio_min.decimal'))
)
->validator('Validate::notEmpty', array(
'message' => lang('TarifaAcabadoLineas.validation.precio_min.required'))
),
Field::inst('margen')
->validator('Validate::numeric', array(
'message' => lang('TarifaAcabadoLineas.validation.margen.decimal'))
)
->validator('Validate::notEmpty', array(
'message' => lang('TarifaAcabadoLineas.validation.margen.required'))
),
Field::inst('tirada_encuadernacion_id'),
Field::inst('user_created_id'),
Field::inst('created_at'),
Field::inst('user_updated_id'),
Field::inst('updated_at'),
Field::inst('is_deleted'),
Field::inst('deleted_at'),
)
->validator(function ($editor, $action, $data) {
if ($action === Editor::ACTION_CREATE || $action === Editor::ACTION_EDIT) {
foreach ($data['data'] as $pkey => $values) {
// Si no se quiere borrar...
if ($data['data'][$pkey]['is_deleted'] != 1) {
$process_data['tiempo_min'] = $data['data'][$pkey]['tiempo_min'];
$process_data['tiempo_max'] = $data['data'][$pkey]['tiempo_max'];
$response = $this->model->checkIntervals($process_data, $pkey, $data['data'][$pkey]['tirada_encuadernacion_id']);
// No se pueden duplicar valores al crear o al editar
if (!empty($response)) {
return $response;
}
}
}
}
})
->on('preCreate', function ($editor, &$values) {
$session = session();
$datetime = (new \CodeIgniter\I18n\Time("now"));
$editor
->field('user_created_id')
->setValue($session->id_user);
$editor
->field('created_at')
->setValue($datetime->format('Y-m-d H:i:s'));
})
->on('preEdit', function ($editor, &$values) {
$session = session();
$datetime = (new \CodeIgniter\I18n\Time("now"));
$editor
->field('user_updated_id')
->setValue($session->id_user);
$editor
->field('updated_at')
->setValue($datetime->format('Y-m-d H:i:s'));
})
->debug(true)
->process($_POST)
->data();
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$response[$csrfTokenName] = $newTokenHash;
echo json_encode($response);
} else {
return $this->failUnauthorized('Invalid request', 403);
}
}
public function datatable()
{
if ($this->request->isAJAX()) {
$reqData = $this->request->getPost();
$cleandatatable = $reqData['cleandatatable'] ?? 0;
if($cleandatatable){
$tarifa_encuadernacion_id = $reqData['tarifa_encuadernacion_id'] ?? -1;
$datetime = (new \CodeIgniter\I18n\Time("now"));
$this->model->removeAllEncuadernacionLineasHorasForTarifa($tarifa_encuadernacion_id, $datetime, 1);
$newTokenHash = csrf_hash();
$csrfTokenName = csrf_token();
$data = [
$csrfTokenName => $newTokenHash
];
return $this->respond($data);
}
else{
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'] ?? 0;
$order = TarifaEncuadernacionLineaHorasModel::SORTABLE[$requestedOrder >= 0 ? $requestedOrder : 0];
$dir = $reqData['order']['0']['dir'] ?? 'asc';
$id_TE = $reqData['tirada_id'] ?? -1;
$resourceData = $this->model->getResource("", $id_TE)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
return $this->respond(Collection::datatable(
$resourceData,
$this->model->getResource()->countAllResults(),
$this->model->getResource("", $id_TE)->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 . ', tirada_encuadernacion_id', 'tirada_encuadernacion_id', $onlyActiveOnes, false);
$nonItem = new \stdClass;
$nonItem->id = '';
$nonItem->tirada_encuadernacion_id = '- ' . 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 ?? 'tirada_encuadernacion_id'];
$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);
}
}
}

View File

@ -68,13 +68,14 @@ class Tarifaencuadernaciontiradas extends \App\Controllers\GoBaseResourceControl
$lineaModel = new TarifaEncuadernacionLineaModel();
$lineaResult = $lineaModel->removeAllEncuadernacionLineas($id, $datetime, $this->delete_flag);
$lineaResult2 = $lineaModel->removeAllEncuadernacionLineasHoras($id, $datetime, $this->delete_flag);
$rawResult = $this->model->where('id',$id)
->set(['deleted_at' => $datetime->format('Y-m-d H:i:s'),
'is_deleted' => $this->delete_flag])
->update();
if (!$rawResult && !$lineaResult) {
if (!$rawResult && !$lineaResult && !$lineaResult2) {
return $this->failNotFound(lang('Basic.global.deleteError', [$objName]));
}

View File

@ -94,6 +94,18 @@ class Tarifasencuadernacion extends \App\Controllers\GoBaseResourceController
$sanitizedData['mostrar_en_presupuesto'] = false;
}
if ($this->request->getPost('tipo_encuadernacion') == null) {
$sanitizedData['tipo_encuadernacion'] = false;
}
if ($this->request->getPost('servicio_encuadernacion') == null) {
$sanitizedData['servicio_encuadernacion'] = false;
}
if ($this->request->getPost('por_horas') == null) {
$sanitizedData['por_horas'] = false;
}
$noException = true;
if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :
@ -143,6 +155,7 @@ class Tarifasencuadernacion extends \App\Controllers\GoBaseResourceController
return $this->displayForm(__METHOD__);
} // end function add()
public function edit($requestedId = null)
{
@ -186,6 +199,9 @@ class Tarifasencuadernacion extends \App\Controllers\GoBaseResourceController
$sanitizedData['servicio_encuadernacion'] = false;
}
if ($this->request->getPost('por_horas') == null) {
$sanitizedData['por_horas'] = false;
}
$noException = true;
if ($successfulResult = $this->canValidate()) : // if ($successfulResult = $this->validate($this->formValidationRules) ) :

View File

@ -18,12 +18,7 @@ class Test extends BaseController
public function index()
{
echo '<pre>';
//var_dump($this->get_precio_tarifa(18,200,110,150,210, 115, 30));
//$model = model('App\Models\Configuracion\ConfiguracionSistemaModel');
//var_dump($this->init_presupuesto_encuadernacion(4, 1, 300, 100, 150, 210, 30) );
var_dump($this->get_tarifa_enc(18, 200, 110, 150, 210));
var_dump($this->get_precio_tarifa_acabado(1, 200, 30));
echo '</pre>';
}
@ -37,6 +32,16 @@ class Test extends BaseController
$model = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
return $model->getPrecioTarifa($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto, $proveedor_id, $POD);
}
public function get_precio_tarifa_acabado($tarifa_id, $tirada, $POD){
$model = model('App\Models\Presupuestos\PresupuestoAcabadosModel');
return $model->getPrecioTarifa($tarifa_id, $tirada, $POD);
}
public function get_precio_tarifa_horas($tarifa_encuadernacion_id, $paginas, $tirada, $proveedor_id, $POD){
$model = model('App\Models\Presupuestos\PresupuestoEncuadernacionesModel');
return $model->getPrecioTarifaHoras($tarifa_encuadernacion_id, $paginas, $tirada, $proveedor_id, $POD);
}
public function get_tarifa_enc($tarifa_id, $paginas, $tirada, $ancho, $alto){

View File

@ -14,6 +14,7 @@ class TarifaEncuadernacionEntity extends \CodeIgniter\Entity\Entity
"mostrar_en_presupuesto" => 1,
"tipo_encuadernacion" => 0,
"servicio_encuadernacion" => 0,
"por_horas" => 0,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
@ -27,6 +28,7 @@ class TarifaEncuadernacionEntity extends \CodeIgniter\Entity\Entity
"mostrar_en_presupuesto" => "int",
"tipo_encuadernacion" => "int",
"servicio_encuadernacion" => "int",
"por_horas" => "int",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",

View File

@ -0,0 +1,31 @@
<?php
namespace App\Entities\Tarifas;
use CodeIgniter\Entity;
class TarifaEncuadernacionLineaHoras extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"tirada_encuadernacion_id" => 0,
"tiempo_min" => 0,
"tiempo_max" => 0,
"precio_hora" => 0,
"margen" => 0,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"tirada_encuadernacion_id" => "int",
"tiempo_min" => "float",
"tiempo_max" => "float",
"precio_hora" => "float",
"margen" => "float",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",
];
}

View File

@ -650,6 +650,13 @@ function check_overlap($a1, $a2, $b1, $b2){
return false;
}
function check_overlap_with_extremos($a1, $a2, $b1, $b2){
if (max($a2, $b2) - min($a1, $b1) < ($a2 - $a1) + ($b2 - $b1))
return true;
return false;
}
function version() {
return "1.2.1";
}

View File

@ -8,6 +8,9 @@ return [
'deleteLine' => 'the selected register',
'precioMax' => 'Max Price',
'precioMin' => 'Min Price',
'tiempoMin' => 'Min Time',
'tiempoMax' => 'Max Time',
'precioHora' => 'Price/hour',
'precioUnidad' => 'Price Unit',
'paginasMax' => 'Max Pages',
'paginasMin' => 'Min Pages',
@ -22,6 +25,8 @@ return [
'error_seleccion_tiradas' => 'A line from the Printings table must be selected before creating a new record.',
'error_paginas_overlap' => 'The range [Min Pages, Max Pages] is overlapped with another one for the selected type.',
'error_paginas_range' => 'The field Min Pages must be lower than the field Max Pages',
'error_paginas_range' => 'The field Min Time must be lower than the field Max Time',
'error_paginas_overlap' => 'The range [Min Time, Max Time] is overlapped with another one for the selected type.',
'precio_max' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',

View File

@ -25,6 +25,9 @@ return [
'updatedAt' => 'Updated At',
'userCreatedId' => 'User Created ID',
'userUpdateId' => 'User Update ID',
'por_horas' => 'Hourly rate?',
'sureToChange' => 'Are you sure to change this option?',
'sureToChangePorHorasText' => 'This operation can\'t undone, and the price lines will change.',
'validation' => [
'ajuste' => [
'decimal' => 'The {field} field must contain a decimal number.',

View File

@ -12,7 +12,7 @@ return [
'datosServicios' => 'Otros Servicios',
'datosPresupuestoCliente' => 'Datos presupuesto cliente (comparador)',
'id' => 'Número Presupuesto',
'id' => 'ID',
'created_at' => 'Fecha',
'clienteId' => 'Cliente',
'comercial' => 'Comercial',
@ -150,7 +150,10 @@ return [
'servicioAcabado' => 'Servicio de acabado',
'servicioPreimpresion' => 'Servicio de preimpresión',
'servicioEncuadernado' => 'Servicio de encuadernado',
'servicioEncuadernado' => 'Servicio de encuadernación',
'servicioEncuadernadoList' => 'Servicios de encuadernación',
'servicioAcabadoList' => 'Servicios de acabado',
'servicioManipulado' => 'Servicio de manipulado',
'comentarios' => 'Comentarios',
'comentariosCliente' => 'Comentarios cliente',
@ -159,14 +162,18 @@ return [
'comentariosProduccion' => 'Comentarios Produccion',
'preview' => 'Previsualización de configuraciones',
'previewMaquina' => 'Configuración de máquina',
'previewConfiguracionCubierta' => 'Configuración de cubierta',
'previewEsquemaCubierta' => 'Esquema de cubierta',
'previewCubierta' => 'Configuración de cubierta',
'previewPortada' => 'Configuración de portada',
'resumen' => 'Resumen del presupuesto',
'confirmar' => 'Confirmar presupuesto',
// Servicios
'precioUnidad' => 'Precio unitario',
'precioTotal' => 'Precio total',
'serviciosEncDefault' => 'Servicios Enc. por defecto',
'tarifa' => 'Tarifa',
'insertar' => 'Insertar',
'no_disponible' => 'No disponible',
'validation' => [
@ -182,6 +189,7 @@ return [
'dimension' => 'La dimensión del libro tiene que ser mayor que 60mm',
'lineaDuplicada' => 'Ya existe ese tipo de linea en el presupuesto',
'errorRotColor' => 'Papeles y gramajes deben ser iguales en color y BN',
'error_servicios_anadidos' => 'Hay servicios sin datos'
],
@ -1138,3 +1146,4 @@ return [
];

View File

@ -8,7 +8,10 @@ return [
'deleteLine' => 'el registro seleccionado',
'precioMax' => 'Precio Max',
'precioMin' => 'Precio Min',
'tiradaMax' => 'Tirada Max',
'tiempoMin' => 'Tiempo Min',
'tiempoMax' => 'Tiempo Max',
'precioHora' => 'Precio/hora',
'tiradaMax' => 'Tirada Max',
'tiradaMin' => 'Tirada Min',
'precioUnidad' => 'Precio Unidad',
'paginasMax' => 'Páginas Max',
@ -24,6 +27,8 @@ return [
'error_seleccion_tiradas' => 'Debe seleccionar una línea de la tabla tiradas antes de crear un registro nuevo.',
'error_paginas_overlap' => 'El rango [Páginas Min, Páginas Max] se solapa con otro existente para el tipo seleccionado.',
'error_paginas_range' => 'El campo Páginas Min debe ser menor que el campo Páginas Max',
'error_tiempo_range' => 'El campo Tiempo Min debe ser menor que el campo Tiempo Max',
'error_tiempo_overlap' => 'El rango [Tiempo Min, Tiempo Max] se solapa con otro existente para el tipo seleccionado.',
'precio_max' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',

View File

@ -24,6 +24,9 @@ return [
'updatedAt' => 'Actualizado en',
'userCreatedId' => 'ID Usuario \"Creado en\"',
'userUpdateId' => 'ID Usuario \"Actualizado en\"',
'por_horas' => 'Tarifa por horas?',
'sureToChange' => '¿Está seguro de cambiar esta opción?',
'sureToChangePorHorasText' => 'Está operación no se puede deshacer y las lineas de la tarifa se modificarán.',
'validation' => [
'ajuste' => [
'decimal' => 'El campo {field} debe contener un número decimal.',

View File

@ -265,6 +265,23 @@ class MaquinaModel extends \App\Models\GoBaseModel
return $builder;
}
public function getVelocidad($maquina_id){
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.velocidad as velocidad"
);
$builder->where("t1.id", $maquina_id);
$resultObject = $builder->get()->getResultObject();
if(count($resultObject)>0)
return $resultObject[0]->velocidad;
else{
return -1;
}
}
/**
* Get resource data.
*

View File

@ -44,6 +44,100 @@ class PresupuestoAcabadosModel extends \App\Models\GoBaseModel
],
];
public function getPrecioTarifa($tarifa_acabado_id, $tirada, $POD){
$modelTarifa = model('App\Models\Tarifas\TarifaacabadoModel');
$tarifa_value = $modelTarifa->getTarifaPresupuestoAcabado($tarifa_acabado_id, $tirada);
if (count($tarifa_value)>0) {
$result_data = $this->calcularTarifa($tarifa_value[0], $tirada, $POD<$tirada?false:true);
$ret_array[] = (object)[
'tarifa_id'=> $tarifa_value[0]->tarifa_acabado_id,
'tarifa_nombre'=> $tarifa_value[0]->tarifa_acabado_nombre,
'precio_unidad'=> $result_data[0],
'total'=> $result_data[1],
];
return $ret_array;
}
else{
$ret_array[] = (object)[
'tarifa_id'=> $tarifa_acabado_id,
'tarifa_nombre'=> $modelTarifa->getNombreTarifaAcabado($tarifa_acabado_id)[0]->nombre,
'precio_unidad' => 0,
'total'=> 0,
];
return $ret_array;
}
return [];
}
private function calcularTarifa($tarifa, $tirada, $is_POD=false){
$precio_unidad = floatval($tarifa->precio_min) - (floatval($tarifa->precio_min) - floatval($tarifa->precio_max))/($tarifa->tirada_max - $tarifa->tirada_min) * ($tirada - $tarifa->tirada_min);
if ($tirada > $tarifa->tirada_max)
$precio_unidad = $tarifa->precio_max;
$precio_unidad = $precio_unidad* (1+ floatval($tarifa->margen)/100.0);
$total = $precio_unidad * $tirada;
if (!$is_POD){
$total += floatval($tarifa->tarifa_importe_fijo);
}
return [$precio_unidad, $total];
}
public function deleteAllServicios($presupuesto_id){
$this->db
->table($this->table . " t1")
->where('presupuesto_id', $presupuesto_id)
->delete();
}
public function deleteServiciosNotInArray($presupuesto_id, $tarifas_id){
$builder = $this->db
->table($this->table . " t1");
$builder->where('presupuesto_id', $presupuesto_id);
foreach($tarifas_id as $id){
$builder->where('tarifa_acabado_id !=', $id);
}
$builder->delete();
}
public function updateTarifas($presupuesto_id, $tarifas){
foreach($tarifas as $tarifa){
$builder = $this->db
->table($this->table . " t1");
$builder->select("id");
$builder->where('presupuesto_id', $presupuesto_id);
$builder->where('tarifa_acabado_id', $tarifa->tarifa_id);
$result = $builder->get()->getResultObject();
if(count($result)>0){
$this->db
->table($this->table . " t1")
->where('presupuesto_id', $presupuesto_id)
->where('tarifa_acabado_id', $tarifa->tarifa_id)
->set('precio_unidad', $tarifa->precio_unidad)
->set('precio_total', $tarifa->precio_total)
->update();
}
else{
$this->db
->table($this->table . " t1")
->set('presupuesto_id', $presupuesto_id)
->set('tarifa_acabado_id', $tarifa->tarifa_id)
->set('precio_unidad', $tarifa->precio_unidad)
->set('precio_total', $tarifa->precio_total)
->insert();
}
}
}
/**
* Get resource data.
@ -57,7 +151,8 @@ class PresupuestoAcabadosModel extends \App\Models\GoBaseModel
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.id AS id, t1.tarifa_acabado_id AS tarifa_acabado_id, t1.precio_unidad AS precio_unidad, t1.precio_total AS precio_total, t2.nombre AS nombre"
"t1.id AS id, t1.tarifa_acabado_id AS tarifa_acabado_id, t1.precio_unidad AS precio_unidad,
t1.precio_total AS precio_total, t2.nombre AS nombre"
);
$builder->where('t1.presupuesto_id', $presupuesto_id);

View File

@ -14,11 +14,11 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
protected $useAutoIncrement = true;
const SORTABLE = [
1 => "t1.tarifa_encuadernado_id",
2 => "t2.nombre",
4 => "t3.nombre",
5 => "t1.precio_unidad",
6 => "t1.precio_total"
0 => "t1.tarifa_encuadernado_id",
1 => "t2.nombre",
2 => "t3.nombre",
3 => "t1.precio_unidad",
4 => "t1.precio_total"
];
protected $allowedFields = ["presupuesto_id", "tarifa_encuadernado_id", "nombre", "precio_total", "precio_unidad"];
@ -59,23 +59,30 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
foreach($tarifas_procesar as $tarifa){
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacion($tarifa['tarifa_encuadernacion_id'], $paginas, $tirada, $ancho, $alto);
//var_dump($tarifa['tarifa_encuadernacion_id']);
//var_dump($tarifa);
if (count($tarifa_value)>0) {
$result_data = $this->calcularTarifa($tarifa_value[0], $paginas, $POD<$tirada?false:true);
array_push($tarifas,
(object)[
'tarifa_id'=> $tarifa_value[0]->tarifa_enc_id,
'tarifa_nombre'=> $tarifa_value[0]->tarifa_enc_nombre,
'precio_unidad'=> $result_data[0],
'total'=> $result_data[1],
'proveedor' => $tarifa_value[0]->proveedor_nombre,
'proveedor_id' => $tarifa_value[0]->proveedor_id,
]);
}
else{
array_push($tarifas,
if($modelTarifa->isTarifaPorHoras($tarifa['tarifa_encuadernacion_id'])){
$tiempo = $this->calcularTiempo(16, $paginas, $tirada); // ID fija. Cambiar cuando se metan maquinas de corte. Velocidad en minutos
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacionHoras($tarifa['tarifa_encuadernacion_id'], $tiempo, $tirada);
if (count($tarifa_value)>0) {
$result_data[0] = floatval(1.0* $tarifa_value[0]->precio_hora* $tiempo / $tirada);
$result_data[1] = floatval(1.0* $tarifa_value[0]->precio_hora* $tiempo) ;
if (!$POD){
$result_data[1] += floatval($tarifa_value[0]->tarifa_importe_fijo);
}
array_push($tarifas,
(object)[
'tarifa_id'=> $tarifa['tarifa_encuadernacion_id'],
'tarifa_nombre'=> $tarifa_value[0]->tarifa_enc_nombre,
'precio_unidad'=> $result_data[0],
'total'=> $result_data[1],
'proveedor' => $tarifa_value[0]->proveedor_nombre,
'proveedor_id' => $tarifa_value[0]->proveedor_id,
]);
}
else{
array_push($tarifas,
(object)[
'tarifa_id'=> $tarifa['tarifa_encuadernacion_id'],
'tarifa_nombre'=> $tarifa['tarifa_encuadernacion_nombre'],
@ -83,6 +90,32 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
'precio_unidad'=> 0,
'total'=> 0,
]);
}
}
else{
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacion($tarifa['tarifa_encuadernacion_id'], $paginas, $tirada, $ancho, $alto);
if (count($tarifa_value)>0) {
$result_data = $this->calcularTarifa($tarifa_value[0], $paginas, $POD<$tirada?false:true);
array_push($tarifas,
(object)[
'tarifa_id'=> $tarifa['tarifa_encuadernacion_id'],
'tarifa_nombre'=> $tarifa_value[0]->tarifa_enc_nombre,
'precio_unidad'=> $result_data[0],
'total'=> $result_data[1],
'proveedor' => $tarifa_value[0]->proveedor_nombre,
'proveedor_id' => $tarifa_value[0]->proveedor_id,
]);
}
else{
array_push($tarifas,
(object)[
'tarifa_id'=> $tarifa['tarifa_encuadernacion_id'] ,
'tarifa_nombre'=> $tarifa['tarifa_encuadernacion_nombre'],
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad'=> 0,
'total'=> 0,
]);
}
}
}
@ -94,7 +127,15 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
$proveedores = [];
$modelTarifa = model('App\Models\Tarifas\TarifaEncuadernacionModel');
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacion($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto);
$tiempo = $this->calcularTiempo(16, $paginas, $tirada); // ID fija. Cambiar cuando se metan maquinas de corte. Velocidad en minutos
if($modelTarifa->isTarifaPorHoras($tarifa_encuadernacion_id)){
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacionHoras($tarifa_encuadernacion_id, $tiempo, $tirada);
}
else{
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacion($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto);
}
if (count($tarifa_value)>0) {
foreach($tarifa_value as $tarifa)
array_push($proveedores,
@ -114,6 +155,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
else
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacion($tarifa_encuadernacion_id, $paginas, $tirada, $ancho, $alto);
if (count($tarifa_value)>0) {
$result_data = $this->calcularTarifa($tarifa_value[0], $paginas, $POD<$tirada?false:true);
$ret_array[] = (object)[
'tarifa_id'=> $tarifa_value[0]->tarifa_enc_id,
@ -138,7 +180,45 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
return [];
}
public function calcularTarifa($tarifa, $paginas, $is_POD=false){
public function getPrecioTarifaHoras($tarifa_encuadernacion_id, $paginas, $tirada, $proveedor_id, $POD){
$modelTarifa = model('App\Models\Tarifas\TarifaEncuadernacionModel');
$tiempo = $this->calcularTiempo(16, $paginas, $tirada); // ID fija. Cambiar cuando se metan maquinas de corte. Velocidad en minutos
$tarifa_value = $modelTarifa->getTarifaPresupuestoEncuadernacionHoras($tarifa_encuadernacion_id, $tiempo, $tirada, $proveedor_id);
if (count($tarifa_value)>0) {
$result_data[0] = floatval(1.0* $tarifa_value[0]->precio_hora* $tiempo / $tirada);
$result_data[1] = floatval(1.0* $tarifa_value[0]->precio_hora* $tiempo) ;
if (!$POD){
$result_data[1] += floatval($tarifa_value[0]->tarifa_importe_fijo);
}
$ret_array[] = (object)[
'tarifa_id'=> $tarifa_encuadernacion_id,
'tarifa_nombre'=> $tarifa_value[0]->tarifa_enc_nombre,
'precio_unidad'=> $result_data[0],
'total'=> $result_data[1],
'proveedor' => $tarifa_value[0]->proveedor_nombre,
'proveedor_id' => $tarifa_value[0]->proveedor_id,
];
return $ret_array;
}
else{
$ret_array[] = (object)[
'tarifa_id'=> $tarifa_encuadernacion_id,
'tarifa_nombre'=> $modelTarifa->getNombreTarifaEncuadernacion($tarifa_encuadernacion_id)[0]->nombre,
'proveedor' => lang('Presupuestos.no_disponible'),
'precio_unidad'=> 0,
'total'=> 0,
];
return $ret_array;
}
return [];
}
private function calcularTarifa($tarifa, $paginas, $is_POD=false){
$precio_unidad = floatval($tarifa->precio_min) - (floatval($tarifa->precio_min) - floatval($tarifa->precio_max))/($tarifa->paginas_max - $tarifa->paginas_min) * ($paginas - $tarifa->paginas_min);
if ($paginas > $tarifa->paginas_max)
@ -154,6 +234,7 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
return [$precio_unidad, $total];
}
public function getIdFromTarifa($tarifa_id){
$builder = $this->db
@ -243,4 +324,13 @@ class PresupuestoEncuadernacionesModel extends \App\Models\GoBaseModel
return $builder;
}
private function calcularTiempo($maquina_id, $paginas, $tirada){
$maquinaModel = model("App\Models\Configuracion\MaquinaModel");
$pliegos_libro = $paginas/4;
$pliegos_pedido = $pliegos_libro*$tirada;
$velocidad = $maquinaModel->getVelocidad($maquina_id);
return round($pliegos_pedido/($velocidad*60.0), 2);
}
}

View File

@ -0,0 +1,182 @@
<?php
namespace App\Models\Tarifas;
class TarifaEncuadernacionLineaHorasModel extends \App\Models\GoBaseModel
{
protected $table = "tarifa_encuadernacion_lineas_horas";
/**
* Whether primary key uses auto increment.
*
* @var bool
*/
protected $useAutoIncrement = true;
const SORTABLE = [
0 => "t1.id",
1 => "t1.tiempo_min",
2 => "t1.tiempo_max",
3 => "t1.precio_hora",
4 => "t1.margen",
];
protected $allowedFields = [
"tirada_encuadernacion_id",
"tiempo_min",
"tiempo_max",
"precio_hora",
"margen",
"user_created_id",
"is_deleted",
];
protected $returnType = "App\Entities\Tarifas\TarifaEncuadernacionLinea";
protected $useTimestamps = true;
protected $useSoftDeletes = false;
protected $createdField = "created_at";
protected $updatedField = "updated_at";
public static $labelField = "tirada_encuadernacion_id";
protected $validationRules = [
"tiempo_max" => [
"label" => "TarifaEncuadernacionLineas.tiempoMax",
"rules" => "required|decimal",
],
"tiempo_min" => [
"label" => "TarifaEncuadernacionLineas.tiempoMin",
"rules" => "required|decimal",
],
"precio_hora" => [
"label" => "TarifaEncuadernacionLineas.precioHora",
"rules" => "required|decimal",
],
"margen" => [
"label" => "TarifaEncuadernacionLineas.margen",
"rules" => "required|decimal",
],
];
protected $validationMessages = [
"tiempo_min" => [
"decimal" => "TarifaEncuadernacionLineas.validation.precio_max.decimal",
"required" => "TarifaEncuadernacionLineas.validation.precio_max.required",
],
"tiempo_max" => [
"decimal" => "TarifaEncuadernacionLineas.validation.precio_min.decimal",
"required" => "TarifaEncuadernacionLineas.validation.precio_min.required",
],
"precio_hora" => [
"decimal" => "TarifaEncuadernacionLineas.validation.tirada_max.decimal",
"required" => "TarifaEncuadernacionLineas.validation.tirada_max.required",
],
"margen" => [
"decimal" => "TarifaEncuadernacionLineas.validation.margen.decimal",
"required" => "TarifaEncuadernacionLineas.validation.margen.required",
],
];
/**
* Get resource data.
*
* @param string $search
*
* @return \CodeIgniter\Database\BaseBuilder
*/
public function getResource(string $search = "", $tirada_encuadernacion_id = -1)
{
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.id AS id, t1.tirada_encuadernacion_id AS tirada_encuadernacion_id, t1.tiempo_min AS tiempo_min,
t1.tiempo_max AS tiempo_max, t1.precio_hora AS precio_hora, t1.margen AS margen,
t2.id AS tarifa_encuadernacion"
);
//JJO
$builder->where('tirada_encuadernacion_id', $tirada_encuadernacion_id);
$builder->where("t1.is_deleted", 0);
$builder->join("tarifa_encuadernacion_tiradas t2", "t1.tirada_encuadernacion_id = t2.id", "left");
return empty($search)
? $builder
: $builder
->groupStart()
->like("t1.id", $search)
->orLike("t1.tirada_encuadernacion_id", $search)
->orLike("t1.tiempo_min", $search)
->orLike("t1.tiempo_max", $search)
->orLike("t1.precio_hora", $search)
->orLike("t1.margen", $search)
->groupEnd();
}
public function checkIntervals($data = [], $id_linea = null, $tirada_encuadernacion_id = null){
helper('general');
if(floatval($data["tiempo_min"])>= floatval($data["tiempo_max"])){
return lang('TarifaEncuadernacionLineas.validation.error_tiempo_range');
}
$rows = $this->db
->table($this->table)
->select("id, tiempo_min, tiempo_max")
->where("is_deleted", 0)
->where("tirada_encuadernacion_id", $tirada_encuadernacion_id)
->get()->getResultObject();
foreach ($rows as $row) {
if (!is_null($id_linea)){
if($row->id == $id_linea){
continue;
}
}
if(check_overlap_with_extremos(floatval($data["tiempo_min"]), floatval($data["tiempo_max"]),
$row->tiempo_min, $row->tiempo_max)){
return lang('TarifaEncuadernacionLineas.validation.error_tiempo_overlap');
}
}
return "";
}
public function removeAllEncuadernacionLineasHoras($tiradaId = -1, $datetime = null, $delete_flag=1){
$builder = $this->db
->table($this->table)
->set(['deleted_at' => $datetime->format('Y-m-d H:i:s'),
'is_deleted' => $delete_flag])
->where('tirada_encuadernacion_id',$tiradaId)
->update();
return $builder;
}
public function removeAllEncuadernacionLineasHorasForTarifa($tarifaId = -1, $datetime = null, $delete_flag=1){
$builder = $this->db
->table($this->table . " t1")
->select('t1.id')
->join("tarifa_encuadernacion_tiradas t2", "t1.tirada_encuadernacion_id = t2.id", "left")
->join("tarifa_encuadernacion t3", "t2.tarifa_encuadernacion_id = t3.id", "left")
->where("t3.id", $tarifaId);
$ids = $builder->get()->getResultArray();
foreach($ids as $id){
$builder = $this->db
->table($this->table . " t1")
->set(["t1.deleted_at" => $datetime->format('Y-m-d H:i:s'),
"t1.is_deleted" => $delete_flag])
->where('t1.id', $id["id"])
->update();
}
}
}

View File

@ -189,4 +189,25 @@ class TarifaEncuadernacionLineaModel extends \App\Models\GoBaseModel
return $builder;
}
public function removeAllEncuadernacionLineasForTarifa($tarifaId = -1, $datetime = null, $delete_flag=1){
$builder = $this->db
->table($this->table . " t1")
->select('t1.id')
->join("tarifa_encuadernacion_tiradas t2", "t1.tirada_encuadernacion_id = t2.id", "left")
->join("tarifa_encuadernacion t3", "t2.tarifa_encuadernacion_id = t3.id", "left")
->where("t3.id", $tarifaId);
$ids = $builder->get()->getResultArray();
foreach($ids as $id){
$builder = $this->db
->table($this->table . " t1")
->set(["t1.deleted_at" => $datetime->format('Y-m-d H:i:s'),
"t1.is_deleted" => $delete_flag])
->where('t1.id', $id["id"])
->update();
}
}
}

View File

@ -29,6 +29,7 @@ class TarifaEncuadernacionModel extends \App\Models\GoBaseModel
"mostrar_en_presupuesto",
"tipo_encuadernacion",
"servicio_encuadernacion",
"por_horas",
"deleted_at",
"is_deleted",
"user_created_id",
@ -87,7 +88,8 @@ class TarifaEncuadernacionModel extends \App\Models\GoBaseModel
{
$builder = $this->db->table($this->table . " t1")->select("t1.id AS id, t1.nombre AS nombre,
t1.precio_min AS precio_min, t1.importe_fijo AS importe_fijo, t1.mostrar_en_presupuesto AS mostrar_en_presupuesto,
t1.tipo_encuadernacion AS tipo_encuadernacion, t1.servicio_encuadernacion AS servicio_encuadernacion");
t1.tipo_encuadernacion AS tipo_encuadernacion, t1.servicio_encuadernacion AS servicio_encuadernacion,
t1.por_horas AS por_horas");
//JJO
$builder->where("t1.is_deleted", 0);
@ -167,5 +169,50 @@ class TarifaEncuadernacionModel extends \App\Models\GoBaseModel
}
return $builder->get()->getResultObject();
}
}
public function getTarifaPresupuestoEncuadernacionHoras($tarifa_id, $horas, $tirada, $proveedor_id=-1){
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.id AS tarifa_enc_id, t1.nombre AS tarifa_enc_nombre, t1.precio_min AS tarifa_precio_min, t1.importe_fijo AS tarifa_importe_fijo,
t2.id AS tarifa_tirada_id, t2.proveedor_id AS proveedor_id, t5.nombre AS proveedor_nombre, t2.tirada_min AS tirada_min, t2.tirada_max AS tirada_max,
t3.id AS tarifa_linea_id, t3.tiempo_min AS tiempo_min, t3.tiempo_max AS tiempo_max, t3.precio_hora AS precio_hora, t3.margen AS margen"
)
->join("tarifa_encuadernacion_tiradas t2", "t1.id = t2.tarifa_encuadernacion_id", "left")
->join("tarifa_encuadernacion_lineas_horas t3", "t2.id = t3.tirada_encuadernacion_id", "left")
->join("lg_proveedores t5", "t2.proveedor_id = t5.id", "left")
->where("t1.is_deleted", 0)
//->where("t1.mostrar_en_presupuesto", 1)
->where("t2.is_deleted", 0)
->where("t3.is_deleted", 0);
$builder->where('t1.id =', $tarifa_id);
$builder->where('t2.tirada_min <=', $tirada);
$builder->where('t2.tirada_max >', $tirada);
$builder->where('t3.tiempo_min <=', $horas);
$builder->where('t3.tiempo_max >', $horas);
if($proveedor_id != -1){
$builder->where('t2.proveedor_id', $proveedor_id);
}
return $builder->get()->getResultObject();
}
public function isTarifaPorHoras($tarifa_id){
$builder = $this->db
->table($this->table . " t1")
->select('t1.por_horas AS por_horas')
->where('id', $tarifa_id);
$resultObject = $builder->get()->getResultObject();
if(count($resultObject)>0)
return intval($resultObject[0]->por_horas)==0?false:true;
else{
return false;
}
}
}

View File

@ -111,5 +111,41 @@ class TarifaacabadoModel extends \App\Models\GoBaseModel
return $builder->orderBy("t1.nombre", "asc")->get()->getResultObject();
}
public function getTarifaPresupuestoAcabado($tarifa_id, $tirada){
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.id AS tarifa_acabado_id, t1.nombre AS tarifa_acabado_nombre, t1.precio_min AS tarifa_precio_min, t1.importe_fijo AS tarifa_importe_fijo,
t2.id AS tarifa_linea_id, t2.tirada_min AS tirada_min, t2.tirada_max AS tirada_max,
t2.precio_min AS precio_min, t2.precio_max AS precio_max, t2.margen AS margen"
)
->join("tarifa_acabado_lineas t2", "t1.id = t2.tarifa_acabado_id", "left")
->where("t1.is_deleted", 0)
//->where("t1.mostrar_en_presupuesto", 1)
->where("t2.is_deleted", 0);
$builder->where('t1.id =', $tarifa_id);
$builder->where('t2.tirada_min <=', $tirada);
$builder->where('t2.tirada_max >', $tirada);
return $builder->get()->getResultObject();
}
public function getNombreTarifaAcabado($id=-1)
{
/*
Todos los servicios de encuadernacion activas que se pueden usar en presupuestos
*/
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.nombre AS nombre"
)
->where("t1.id", $id)
->where("t1.is_deleted", 0);
return $builder->orderBy("t1.nombre", "asc")->get()->getResultObject();
}
}

View File

@ -12,7 +12,7 @@
data-bs-parent="#accordionDatosServicios">
<div class="accordion-body">
<div class="nav-align-top mb-4">
<ul class="nav nav-pills mb-3" role="tablist">
<ul class="nav nav-pills mb-3 nav-servicios" role="tablist">
<li class="nav-item">
<button
type="button"
@ -64,9 +64,14 @@
</ul>
<div class="tab-content">
<div class="tab-pane fade show active" id="servicios-acabado" role="tabpanel">
<div id="serv-acabado-alert">
</div>
<div id="serv-acabado-error">
</div>
<table id="tableOfServiciosAcabado" class="table table-striped table-hover" style="width: 100%;">
<thead>
<tr>
<th><?= lang('Presupuestos.id') ?></th>
<th><?= lang('Tarifaacabado.tarifaacabado') ?></th>
<th><?= lang('Presupuestos.precioUnidad') ?></th>
<th><?= lang('Presupuestos.precioTotal') ?></th>
@ -76,8 +81,25 @@
<tbody>
</tbody>
</table>
<div class="row mb-3 px-4">
<div class="col-md-12 col-lg-4 py-4">
<select id="add_servicio_acabado_list" class="proveedor_enc select2bs2" style="width: 100%;">
<option></option>
<?php foreach ($serviciosAcabado as $item) : ?>
<option value="<?= $item->value ?>" >
<?= $item->label ?>
</option>
<?php endforeach; ?>
</select>
</div>
<div class="col-md-12 col-lg-4 px-2 py-4">
<button id="insertar_serv_acabado" type="button" class="btn btn-secondary waves-effect waves-light float-start"><?= lang("Presupuestos.insertar")?></button>
</div>
</div>
</div>
<div class="tab-pane fade" id="servicios-preimpresion" role="tabpanel">
<table id="tableOfServiciosPreimpresion" class="table table-striped table-hover" style="width: 100%;">
<thead>
@ -103,7 +125,8 @@
<button id="serv_enc_default" type="button" class="btn btn-secondary waves-effect waves-light float-start"><?= lang("Presupuestos.serviciosEncDefault")?></button>
</div>
</div>
<table id="tableOfServiciosEncuadernacion" class="table table-striped table-hover" style="width: 100%;">
<table id="tableOfServiciosEncuadernacion" class="table dt-responsive dataTable" style="width: 100%;">
<thead>
<tr>
<th><?= lang('Presupuestos.id') ?></th>
@ -118,7 +141,6 @@
</tbody>
</table>
<div class="row mb-3 px-4">
<div class="col-md-12 col-lg-4 py-4">
<select id="add_servicio_enc_list" class="proveedor_enc select2bs2" style="width: 100%;">
@ -164,6 +186,7 @@
<?= $this->section("additionalInlineJs") ?>
const url = window.location.href;
const url_parts = url.split('/');
if(url_parts[url_parts.length-2] == 'edit'){
@ -173,7 +196,12 @@
id=-1
}
$('.nav-servicios button').on('shown.bs.tab', function(){
$("#tableOfServiciosEncuadernacion").DataTable().columns.adjust();
})
const POD = <?php echo $POD; ?>;
// Delete row
$(document).on('click', '.btn-delete-serv', function(e) {
@ -184,152 +212,221 @@
if($(this).closest('table').attr('id').includes('tableOfServiciosEncuadernacion')){
table = "tableOfServiciosEncuadernacion";
}
else if($(this).closest('table').attr('id').includes('tableOfServiciosAcabado')){
table = "tableOfServiciosAcabado";
}
else{
table = "";
}
document.getElementById(table).deleteRow(rowId);
if(table != ""){
$('#' + table).DataTable().rows( function ( idx, data, node ) {
return data[0] === dataId;
} )
.remove()
.draw();
}
check_serv_enc_error()
check_serv_acabado_error()
});
function save_servicios(){
var datosAcabado = get_datos_acabado()
var datosEnc = get_datos_encuadernacion()
const domain = window.location.origin
fetch(domain + "/presupuestos/presupuestoencuadernaciones/edit/" + id , {
method: "POST",
body: JSON.stringify({
datos: datosEnc,
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then(response => response.json())
.then(data => {
yeniden(data.<?= csrf_token() ?>);
})
.then(
fetch(domain + "/presupuestos/presupuestoacabados/edit/" + id , {
method: "POST",
body: JSON.stringify({
datos: datosAcabado,
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then(response => response.json())
.then(data => {
yeniden(data.<?= csrf_token() ?>);
})
)
}
<?= $this->endSection() ?>
<!------------------------------------------------------->
<!-- Código JS comportamiento tabla servicios acabado. -->
<!------------------------------------------------------->
<?= $this->section("additionalInlineJs") ?>
/*
const lastColNr = $('#tableOfServiciosAcabado').find("tr:first th").length - 1;
editor = new $.fn.dataTable.Editor( {
ajax: {
url: "<?= route_to('editorOfPresupuestoAcabados') ?>",
headers: {
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v,
},
},
table : "#tableOfServiciosAcabado",
idSrc: 'id',
fields: [ {
"name": "tarifa_acabado_id",
"type": "select"
}, {
"name": "precio_unidad"
}, {
"name": "precio_total"
}, {
"name": "presupuesto_id",
"type": "hidden"
},
]
} );
// Generación de la lista de servicios de acabado (id, nombre)
const acabadosList = <?php echo json_encode($serviciosAcabado); ?>;
editor.field( 'tarifa_acabado_id' ).update( acabadosList );
editor.on( 'preSubmit', function ( e, d, type ) {
if ( type === 'create'){
d.data[0]['presupuesto_id'] = id;
}
else if(type === 'edit' ) {
for (v in d.data){
d.data[v]['presupuesto_id'] = id;
}
}
});
editor.on( 'postSubmit', function ( e, json, data, action ) {
yeniden(json.<?= csrf_token() ?>);
});
editor.on( 'submitSuccess', function ( e, json, data, action ) {
theTable.clearPipeline();
theTable.draw();
});
// Activate an inline edit on click of a table cell
$('#tableOfServiciosAcabado').on( 'click', 'tbody span.edit', function (e) {
editor.inline(
theTable.cells(this.parentNode.parentNode, '*').nodes(),
{
cancelHtml: '<a href="javascript:void(0);"><i class="ti ti-x"></i></a>',
cancelTrigger: 'span.cancel',
submitHtml: '<a href="javascript:void(0);"><i class="ti ti-device-floppy"></i></a>',
submitTrigger: 'span.edit',
submit: 'allIfChanged'
}
);
} );
var theTable = $('#tableOfServiciosAcabado').DataTable( {
draw: 1,
serverSide: true,
processing: true,
autoWidth: true,
responsive: true,
lengthMenu: [ 5, 10, 25],
order: [[ 0, "asc" ], [ 1, "asc" ]],
pageLength: 10,
lengthChange: true,
var tableServiciosAcabado = new DataTable('#tableOfServiciosAcabado',{
scrollX: true,
searching: false,
paging: true,
paging: false,
info: false,
dom: '<"mt-4"><"float-start"l><t><"mt-4 mb-3"p>',
ajax : $.fn.dataTable.pipeline( {
url: '<?= route_to('dataTableOfPresupuestoAcabados') ?>',
data: {
id_presupuesto: id,
},
method: 'POST',
headers: {'X-Requested-With': 'XMLHttpRequest'},
async: false,
}),
columns: [
{ 'data': 'id'},
{ 'data': 'tarifa_acabado_id'},
{ 'data': 'precio_unidad' },
{ 'data': 'precio_total' },
{
data: actionBtns,
className: 'row-edit dt-center'
}
],
columnDefs: [
{'visible':false, 'targets' : 2},
{
orderable: false,
searchable: false,
targets: [lastColNr]
},
{
"orderData": [ 0, 1 ],
"targets": 1
},
],
ordering: false,
responsive: true,
select: false,
language: {
url: "//cdn.datatables.net/plug-ins/1.13.4/i18n/<?= config('Basics')->i18n ?>.json"
},
buttons: [ {
className: 'btn btn-primary float-end me-sm-3 me-1',
extend: "createInline",
editor: editor,
formOptions: {
submitTrigger: -1,
submitHtml: '<i class="ti ti-device-floppy"/>'
}
} ]
} );
});
function init_servicio_acabado(){
const serviciosacabadosList = <?php echo json_encode($serviciosAcabadosList); ?>;
$('#add_servicio_acabado_list').select2({
allowClear: false,
minimumResultsForSearch: -1,
placeholder: '<?= lang("Presupuestos.servicioAcabadoList") ?>'
})
serviciosacabadosList.forEach((element) =>{
tableServiciosAcabado.row.add([
element.tarifa_acabado_id,
element.nombre,
'<span id="precio_unidad_' + element.tarifa_acabado_id + '">' + parseFloat(element.precio_unidad).toFixed(2) + '</span>',
'<input id="precio_total_' + element.tarifa_acabado_id +'" value="' + parseFloat(element.precio_total).toFixed(2) + '"></input>',
'<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + element.tarifa_acabado_id +'"></i></a>'
]).draw(false)
})
check_serv_acabado_error()
}
*/
function check_serv_acabado_error(){
var htmlString = '';
$('#tableOfServiciosAcabado tr').each(function(){
if($(this).find('td').eq(2).text() == '0.00'){
htmlString = `
<div class="alert alert-danger d-flex align-items-baseline" role="alert">
<span class="alert-icon alert-icon-lg text-primary me-2">
<i class="ti ti-ban ti-sm"></i>
</span>
<div class="d-flex flex-column ps-1">
<h5 class="alert-heading mb-2"><?= lang("Presupuestos.errores.error_servicios_anadidos") ?></h5>
</div>
</div>`;
}
})
$('#serv-acabado-error').html(htmlString)
}
function get_tarifas_acabado(tarifa_id = -1){
const dimension = getDimensionLibro();
if(parseInt($('#tirada').val())>0){
var tirada = parseInt($('#tirada').val())
}
else{
var tirada = 0
}
var datos = {
tarifa_acabado_id : tarifa_id,
tirada: tirada,
POD: POD,
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v
};
$.ajax({
type: "POST",
url: '<?=route_to('dataTableOfPresupuestoAcabados') ?>',
data: datos,
success: function (data) {
data.values.forEach((row) => {
tableServiciosAcabado.row.add([
row.tarifa_id,
row.tarifa_nombre,
'<span id="precio_unidad_' + row.tarifa_id + '">' + parseFloat(row.precio_unidad).toFixed(2) + '</span>',
'<input id="precio_total_' + row.tarifa_id +'" value="' + parseFloat(row.total).toFixed(2) + '"></input>',
'<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + row.tarifa_id +'"></i></a>'
]).draw(false)
});
check_serv_acabado_error()
yeniden(data.<?= csrf_token() ?>);
return true;
},
error: function(e){
return false;
}
})
return false;
}
$('#insertar_serv_acabado').on('click', function(){
const tarifa_text = $('#add_servicio_acabado_list').select2('data')[0].text.trim()
if( $('#add_servicio_acabado_list').select2('data')[0].text.trim().length > 0){
if($('#tableOfServiciosAcabado tr > td:contains(' + tarifa_text + ')').length == 0)
get_tarifas_acabado($('#add_servicio_acabado_list').select2('data')[0].id);
else{
popErrorAlert("Ese servicio ya existe", 'serv-acabado-alert')
}
}
check_serv_enc_error()
})
function get_datos_acabado(){
var datosAcabado = []
$("#tableOfServiciosAcabado tr").each(function (index,tr) {
var values = {}
$(this).find("td").each(function (index2) {
switch (index2) {
case 0:
values['tarifa_id'] = $(this).text()
break
case 2:
values['precio_unidad'] = $(this).text()
break
case 3:
values['precio_total'] = $(this).children(":first").val()
break
}
})
if(Object.keys(values).length>0)
datosAcabado.push(values)
})
return datosAcabado
}
init_servicio_acabado()
<?= $this->endSection() ?>
<!-------------------------------------------------------------->
@ -337,11 +434,23 @@
<!-------------------------------------------------------------->
<?= $this->section("additionalInlineJs") ?>
const POD = <?php echo $POD; ?>;
// Generación de la lista de servicios de acabado (id, nombre)
const encuadernadosList = <?php echo json_encode($serviciosEncuadernacion); ?>;
var tableServiciosEnc = new DataTable('#tableOfServiciosEncuadernacion',{
scrollX: true,
searching: false,
paging: false,
info: false,
ordering: false,
responsive: true,
select: false,
language: {
url: "//cdn.datatables.net/plug-ins/1.13.4/i18n/<?= config('Basics')->i18n ?>.json"
},
});
function init_servicio_encuadernado(){
const serviciosencuadernadosList = <?php echo json_encode($serviciosEncuadernacionList); ?>;
@ -357,21 +466,19 @@
const tarifa_id = element.tarifa_encuadernado_id
var proveedor_nombre = element.proveedor===null?'<?= lang("Presupuestos.no_disponible") ?>': element.proveedor
$('#tableOfServiciosEncuadernacion tr:last').after(
'<tr>'+
'<td>' + element.tarifa_encuadernado_id + '</td>' +
'<td>' + element.nombre + '</td>' +
'<td><select id="proveedor_enc_' + element.tarifa_encuadernado_id + '" class="proveedor_enc select2bs2" style="width: 100%;">' +
tableServiciosEnc.row.add([
element.tarifa_encuadernado_id,
element.nombre,
'<select id="proveedor_enc_' + element.tarifa_encuadernado_id + '" class="proveedor_enc select2bs2" style="width: 100%;">' +
'<option value="' + element.proveedor_id + '" selected >' +
proveedor_nombre +
'</option>' +
'</select></td>' +
'<td><span id="precio_unidad_' + element.tarifa_encuadernado_id + '">' + parseFloat(element.precio_unidad).toFixed(2) + '</span></td>' +
'<td><input id="precio_total_' + element.tarifa_encuadernado_id +'" value="' + parseFloat(element.precio_total).toFixed(2) + '"></input></td>' +
'<td><a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + element.id +'"></i></a></td>'+
'</tr>'
);
'</select>',
'<span id="precio_unidad_' + element.tarifa_encuadernado_id + '">' + parseFloat(element.precio_unidad).toFixed(2) + '</span>',
'<input id="precio_total_' + element.tarifa_encuadernado_id +'" value="' + parseFloat(element.precio_total).toFixed(2) + '"></input>',
'<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + element.tarifa_encuadernado_id +'"></i></a>'
]).draw(false)
$('#proveedor_enc_' + element.tarifa_encuadernado_id).select2({
allowClear: false,
minimumResultsForSearch: -1,
@ -382,8 +489,8 @@
data: function (params) {
if(parseInt($('#tirada').val())+parseInt($('#merma').val())>0){
var tirada = parseInt($('#tirada').val())+parseInt($('#merma').val())
if(parseInt($('#tirada').val())>0){
var tirada = parseInt($('#tirada').val())
}
else{
var tirada = 0
@ -411,12 +518,13 @@
$('#proveedor_enc_' + element.tarifa_encuadernado_id).on('change', proveedor_enc_event)
});
check_serv_enc_error()
}
function proveedor_enc_event(){
const dimension = getDimensionLibro();
if(parseInt($('#tirada').val())+parseInt($('#merma').val())>0){
var tirada = parseInt($('#tirada').val())+parseInt($('#merma').val())
if(parseInt($('#tirada').val())>0){
var tirada = parseInt($('#tirada').val())
}
else{
var tirada = 0
@ -474,8 +582,8 @@
function get_tarifas_enc(tipo=null, tarifa_id = -1){
const dimension = getDimensionLibro();
if(parseInt($('#tirada').val())+parseInt($('#merma').val())>0){
var tirada = parseInt($('#tirada').val())+parseInt($('#merma').val())
if(parseInt($('#tirada').val())>0){
var tirada = parseInt($('#tirada').val())
}
else{
var tirada = 0
@ -502,23 +610,22 @@
success: function (data) {
if(tipo=='default')
$("#tableOfServiciosEncuadernacion").find("tr:gt(0)").remove();
tableServiciosEnc.clear().draw()
data.values.forEach((row) => {
$('#tableOfServiciosEncuadernacion tr:last').after(
'<tr>'+
'<td>' + row.tarifa_id + '</td>' +
'<td>' + row.tarifa_nombre + '</td>' +
'<td><select id="proveedor_enc_' + row.tarifa_id + '" class="proveedor_enc select2bs2" style="width: 100%;">' +
tableServiciosEnc.row.add([
row.tarifa_id,
row.tarifa_nombre,
'<select id="proveedor_enc_' + row.tarifa_id + '" class="proveedor_enc select2bs2" style="width: 100%;">' +
'<option value="' + row.proveedor_id + '" selected >' +
row.proveedor +
'</option>' +
'</select></td>' +
'<td><span id="precio_unidad_' + row.tarifa_id + '">' + row.precio_unidad.toFixed(2) + '</span></td>' +
'<td><input id="precio_total_' + row.tarifa_id +'" value="' + row.total.toFixed(2) + '"></input></td>' +
'<td><a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + row.id +'"></i></a></td>'+
'</tr>'
);
'</select>',
'<span id="precio_unidad_' + row.tarifa_id + '">' + parseFloat(row.precio_unidad).toFixed(2) + '</span>',
'<input id="precio_total_' + row.tarifa_id +'" value="' + parseFloat(row.total).toFixed(2) + '"></input>',
'<a href="javascript:void(0);"><i class="ti ti-trash ti-sm btn-delete-serv mx-2" data-id="' + row.tarifa_id +'"></i></a>'
]).draw(false)
$('#proveedor_enc_' + row.tarifa_id).select2({
allowClear: false,
minimumResultsForSearch: -1,
@ -529,8 +636,8 @@
data: function (params) {
if(parseInt($('#tirada').val())+parseInt($('#merma').val())>0){
var tirada = parseInt($('#tirada').val())+parseInt($('#merma').val())
if( parseInt( $('#tirada').val() )>0){
var tirada = parseInt($('#tirada').val())
}
else{
var tirada = 0
@ -590,9 +697,9 @@
check_serv_enc_error()
})
function save_servicios(){
var datos = []
function get_datos_encuadernacion(){
var datosEnc = []
$("#tableOfServiciosEncuadernacion tr").each(function (index,tr) {
var values = {}
$(this).find("td").each(function (index2) {
@ -613,28 +720,13 @@
}
})
if(Object.keys(values).length>0)
datos.push(values)
datosEnc.push(values)
})
const domain = window.location.origin
fetch(domain + "/presupuestos/presupuestoencuadernaciones/edit/" + id , {
method: "POST",
body: JSON.stringify({
datos: datos,
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then(response => response.json())
.then(data => {
yeniden(data.<?= csrf_token() ?>);
});
return datosEnc
}
init_servicio_encuadernado()
<?= $this->endSection() ?>

View File

@ -22,39 +22,50 @@
<input type="text" id="importe_fijo" name="importe_fijo" class="form-control" value="<?=old('importe_fijo', $tarifaEncuadernacionEntity->importe_fijo) ?>">
</div><!--//.mb-3 -->
<div class="mb-3">
<div class="form-check">
<label for="mostrar_en_presupuesto" class="form-check-label">
<input type="checkbox" id="mostrar_en_presupuesto" name="mostrar_en_presupuesto" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->mostrar_en_presupuesto == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.mostrar_en_presupuesto') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
<div class="mb-3">
<div class="form-check">
<label for="tipo_encuadernacion" class="form-check-label">
<input type="checkbox" id="tipo_encuadernacion" name="tipo_encuadernacion" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->tipo_encuadernacion == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.tipo_encuadernacion') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
<div class="mb-3">
<div class="form-check">
<label for="servicio_encuadernacion" class="form-check-label">
<input type="checkbox" id="servicio_encuadernacion" name="servicio_encuadernacion" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->servicio_encuadernacion == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.servicio_encuadernacion') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
</div><!--//.col -->
</div><!-- //.row -->
</div><!-- //.row -->
<div class="row">
<div class="col-md-12 col-lg-4 px-4">
<div class="mb-3">
<div class="form-check">
<label for="mostrar_en_presupuesto" class="form-check-label">
<input type="checkbox" id="mostrar_en_presupuesto" name="mostrar_en_presupuesto" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->mostrar_en_presupuesto == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.mostrar_en_presupuesto') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
</div><!-- //.col -->
<div class="col-md-12 col-lg-4 px-4">
<div class="mb-3">
<div class="form-check">
<label for="tipo_encuadernacion" class="form-check-label">
<input type="checkbox" id="tipo_encuadernacion" name="tipo_encuadernacion" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->tipo_encuadernacion == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.tipo_encuadernacion') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
<div class="mb-3">
<div class="form-check">
<label for="servicio_encuadernacion" class="form-check-label">
<input type="checkbox" id="servicio_encuadernacion" name="servicio_encuadernacion" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->servicio_encuadernacion == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.servicio_encuadernacion') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
</div><!-- //.col -->
<div class="col-md-12 col-lg-4 px-4">
<div class="mb-3">
<div class="form-check">
<label for="por_horas" class="form-check-label">
<input type="checkbox" id="por_horas" name="por_horas" value="1" class="form-check-input" <?= $tarifaEncuadernacionEntity->por_horas == true ? 'checked' : ''; ?>>
<?= lang('Tarifaencuadernacion.por_horas') ?>
</label>
</div><!--//.form-check -->
</div><!--//.mb-3 -->
</div><!-- //.col -->
</div><!-- //.row -->

View File

@ -60,7 +60,7 @@
</div>
</div> <!-- //.accordion -->
<div class="accordion mt-3" id="accordionEncuadernacionLineas" style="visibility:visible" >
<div class="accordion mt-3" id="accordionEncuadernacionLineas" style="visibility:<?php ?>visible" >
<div class="card accordion-item active">
<h2 class="accordion-header" id="headingOne">
<button type="button" class="accordion-button" data-bs-toggle="collapse" data-bs-target="#accordionTip1" aria-expanded="false" aria-controls="accordionTip1">
@ -92,6 +92,37 @@
</div>
</div>
</div> <!-- //.accordion -->
<div class="accordion mt-3" id="accordionEncuadernacionLineasHoras" style="visibility:hidden" >
<div class="card accordion-item active">
<h2 class="accordion-header" id="headingOne">
<button type="button" class="accordion-button" data-bs-toggle="collapse" data-bs-target="#accordionTip1" aria-expanded="false" aria-controls="accordionTip1">
<h3><?= lang("TarifaEncuadernacionLineas.moduleTitle") ?></h3>
</button>
</h2>
<div id="accordionTip1" class="accordion-collapse collapse show" data-bs-parent="#accordionEncuadernacionLineas">
<div class="accordion-body">
<table id="tableOfTarifaencuadernacionlineasHoras" class="table table-striped table-hover" style="width: 100%;">
<thead>
<tr>
<th>ID</th>
<th><?= lang('TarifaEncuadernacionLineas.tiempoMin') ?></th>
<th><?= lang('TarifaEncuadernacionLineas.tiempoMax') ?></th>
<th><?= lang('TarifaEncuadernacionLineas.precioHora') ?></th>
<th><?= lang('TarifaEncuadernacionLineas.margen') ?></th>
<th style="min-width:100px"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div> <!-- //.accordion -->
<?= view("themes/_commonPartialsBs/_modalConfirmDialog") ?>
<?php endif; ?>
</div><!--//.row -->
@ -146,17 +177,274 @@
if($(this).attr('table').includes('tiradas')){
remove_tiradas(dataId, row);
}
else if ($(this).attr('table').includes('lineas')){
else if ($(this).attr('table').includes('lineasHoras')){
remove_lineas_horas(dataId, row);
}
else{
remove_lineas(dataId, row);
}
}
});
function check_por_horas(){
if($('#por_horas').is(':checked')){
$('#accordionEncuadernacionLineasHoras').css("visibility", "visible");
$('#accordionEncuadernacionLineas').css("visibility", "collapse");
}
else{
$('#accordionEncuadernacionLineasHoras').css("visibility", "collapse");
$('#accordionEncuadernacionLineas').css("visibility", "visible");
}
}
check_por_horas()
$("#por_horas").change(function() {
asyncConfirmDialog('<?= lang('Tarifaencuadernacion.sureToChange') ?>',
'<?= lang('Tarifaencuadernacion.sureToChangePorHorasText') ?>', yesCallback, noCallback);
});
function yesCallback() {
check_por_horas()
if($('#por_horas').is(':checked')){
theTable.clearPipeline();
theTable.draw();
$.ajax({
url: '<?= route_to('dataTableOfTarifaEncuadernacionLineas') ?>',
data: {
cleandatatable: 1,
tarifa_encuadernacion_id: id,
<?= csrf_token() ?? "token" ?>: <?= csrf_token() ?>v,
},
method: 'POST',
headers: {'X-Requested-With': 'XMLHttpRequest'},
success:function(response){
token=JSON.parse(response).<?= csrf_token() ?>;
yeniden(token);
theTable3.clearPipeline();
theTable3.draw();
theTable.clearPipeline();
theTable.draw();
}
});
}else{
theTable3.clearPipeline();
theTable3.draw();
$.ajax({
url: '<?= route_to('dataTableOfTarifaEncuadernacionLineasHoras') ?>',
data: {
cleandatatable: 1,
tarifa_encuadernacion_id: id,
<?= csrf_token() ?? "token" ?>: <?= csrf_token() ?>v,
},
method: 'POST',
headers: {'X-Requested-With': 'XMLHttpRequest'},
success:function(response){
token=JSON.parse(response).<?= csrf_token() ?>;
yeniden(token);
theTable3.clearPipeline();
theTable3.draw();
theTable.clearPipeline();
theTable.draw();
}
});
}
}
function noCallback() {
// Toggle behaviour
$('#por_horas').prop("checked", !$('#por_horas').prop("checked"));
}
<?php endif; ?>
<?= $this->endSection() ?>
<?php if(str_contains($formAction, 'edit')): ?>
<!------------------------------------------->
<!-- Código JS para tableOfTarifaencuadernacionlineashoras -->
<!------------------------------------------->
<?= $this->section("additionalInlineJs") ?>
const lastColNr3 = $('#tableOfTarifaencuadernacionlineasHoras').find("tr:first th").length - 1;
var editor3 = new $.fn.dataTable.Editor( {
ajax: {
url: "<?= route_to('editorOfTarifaEncuadernacionLineasHoras') ?>",
headers: {
<?= csrf_token() ?? "token" ?> : <?= csrf_token() ?>v,
},
},
table : "#tableOfTarifaencuadernacionlineasHoras",
idSrc: 'id',
fields: [
{name: "id",
"type": "readonly"},
{
name: "tiempo_min"
}, {
name: "tiempo_max"
}, {
name: "precio_hora"
}, {
name: "margen"
}, {
"name": "tirada_encuadernacion_id",
"type": "hidden"
},{
"name": "deleted_at",
"type": "hidden"
},{
"name": "is_deleted",
"type": "hidden"
},
]
} );
editor3.on( 'preSubmit', function ( e, d, type ) {
if ( type === 'create'){
d.data[0]['tirada_encuadernacion_id'] = selected_tirada_id;
}
else if(type === 'edit' ) {
for (v in d.data){
d.data[v]['tirada_encuadernacion_id'] = selected_tirada_id;
}
}
});
editor3.on( 'postSubmit', function ( e, json, data, action ) {
yeniden(json.<?= csrf_token() ?>);
});
editor3.on( 'submitSuccess', function ( e, json, data, action ) {
theTable3.clearPipeline();
theTable3.draw();
});
var theTable3 = $('#tableOfTarifaencuadernacionlineasHoras').DataTable( {
draw:3,
serverSide: true,
processing: true,
autoWidth: true,
responsive: true,
lengthMenu: [ 5, 10, 25],
order: [[ 0, "asc" ], [ 1, "asc" ]],
pageLength: 10,
lengthChange: true,
searching: false,
paging: true,
info: false,
dom: '<"mt-4"><"float-end"B><"float-start"l><t><"mt-4 mb-3"p>',
ajax : $.fn.dataTable.pipeline( {
url: '<?= route_to('dataTableOfTarifaEncuadernacionLineasHoras') ?>',
data: function ( d ) {
d.tirada_id = selected_tirada_id;
},
method: 'POST',
headers: {'X-Requested-With': 'XMLHttpRequest'},
async: true,
}),
columns: [
{ 'data': 'id' },
{ 'data': 'tiempo_min' },
{ 'data': 'tiempo_max' },
{ 'data': 'precio_hora' },
{ 'data': 'margen' },
{
data: actionBtns,
className: 'row-edit dt-center'
}
],
columnDefs: [
{
orderable: false,
searchable: false,
targets: [lastColNr3]
},
{"orderData": [ 0, 1 ], "targets": 0 },
],
language: {
url: "//cdn.datatables.net/plug-ins/1.13.4/i18n/<?= config('Basics')->i18n ?>.json"
},
buttons: [ {
className: 'btn btn-primary float-end me-sm-3 me-1',
extend: "createInline",
editor: editor3,
formOptions: {
submitTrigger: -1,
submitHtml: '<a href="javascript:void(0);"><i class="ti ti-device-floppy"></i></a>'
},
action: function ( e, dt, node, config ) {
if(selected_tirada_id == -1){
popErrorAlert("<?= lang('TarifaEncuadernacionLineas.validation.error_seleccion_tiradas') ?>");
}
else{
formOptions= {
submitTrigger: -1,
submitHtml: '<a href="javascript:void(0);"><i class="ti ti-device-floppy"></i></a>'
};
editor3.inlineCreate(config.position, formOptions);
}
},
} ]
} );
// Activate an inline edit on click of a table cell
$('#tableOfTarifaencuadernacionlineasHoras').on( 'click', 'tbody span.edit', function (e) {
editor3.inline(
theTable3.cells(this.parentNode.parentNode, '*').nodes(),
{
cancelHtml: '<a href="javascript:void(0);"><i class="ti ti-x"></i></a>',
cancelTrigger: 'span.cancel',
submitHtml: '<a href="javascript:void(0);"><i class="ti ti-device-floppy"></i></a>',
submitTrigger: 'span.edit',
submit: 'allIfChanged'
}
);
} );
// Delete row
function remove_lineas_horas(dataId, row){
$.ajax({
url: `/tarifas/tarifaencuadernacionlineashoras/delete/${dataId}`,
method: 'GET',
}).done((data, textStatus, jqXHR) => {
$('#confirm2delete').modal('toggle');
theTable3.clearPipeline();
theTable3.row($(row)).invalidate().draw();
popSuccessAlert(data.msg ?? jqXHR.statusText);
}).fail((jqXHR, textStatus, errorThrown) => {
popErrorAlert(jqXHR.responseJSON.messages.error)
});
}
<?= $this->endSection() ?>
<!------------------------------------------->
<!-- Código JS para tableOfTarifaencuadernacionlineas -->
<!------------------------------------------->
@ -233,7 +521,8 @@
var theTable = $('#tableOfTarifaencuadernacionlineas').DataTable( {
serverSide: true,
draw:2,
serverSide: true,
processing: true,
autoWidth: true,
responsive: true,
@ -485,17 +774,30 @@
var selected_tirada_id = -1;
theTable2.on( 'select', function ( e, dt, type, indexes ) {
if ( type === 'row' ) {
selected_tirada_id = parseInt(theTable2.rows( indexes ).data().pluck( 'id' )[0]);
theTable.clearPipeline();
theTable.draw();
if($('#por_horas').is(':checked')){
theTable3.clearPipeline();
theTable3.draw();
}
else{
theTable.clearPipeline();
theTable.draw();
}
}
} );
theTable2.on( 'deselect', function ( e, dt, type, indexes ) {
if ( theTable2.rows( '.selected' ).count() == 0 ) {
selected_tirada_id = -1;
theTable.clearPipeline();
theTable.draw();
if($('#por_horas').is(':checked')){
theTable3.clearPipeline();
theTable3.draw();
}
else{
theTable.clearPipeline();
theTable.draw();
}
}
} );

View File

@ -96,3 +96,9 @@ div.draw-shapes {
height: 550px;
margin: 2.5% auto;
}
.table-servicios{
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}