mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
arreglado bug en direcciones de envio. tarifas envio ordenables por 3 columnas
This commit is contained in:
@ -1,4 +1,5 @@
|
|||||||
<?php namespace App\Controllers\Tarifas;
|
<?php
|
||||||
|
namespace App\Controllers\Tarifas;
|
||||||
|
|
||||||
|
|
||||||
use App\Controllers\BaseResourceController;
|
use App\Controllers\BaseResourceController;
|
||||||
@ -17,7 +18,8 @@ use
|
|||||||
DataTables\Editor,
|
DataTables\Editor,
|
||||||
DataTables\Editor\Field;
|
DataTables\Editor\Field;
|
||||||
|
|
||||||
class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
class Tarifasenviosprecios extends \App\Controllers\BaseResourceController
|
||||||
|
{
|
||||||
|
|
||||||
protected $modelName = TarifaEnvioPrecioModel::class;
|
protected $modelName = TarifaEnvioPrecioModel::class;
|
||||||
protected $format = 'json';
|
protected $format = 'json';
|
||||||
@ -35,7 +37,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger) {
|
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
|
||||||
|
{
|
||||||
$this->viewData['pageTitle'] = lang('TarifasEnviosPrecios.moduleTitle');
|
$this->viewData['pageTitle'] = lang('TarifasEnviosPrecios.moduleTitle');
|
||||||
$this->viewData['usingSweetAlert'] = true;
|
$this->viewData['usingSweetAlert'] = true;
|
||||||
|
|
||||||
@ -48,7 +51,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function index() {
|
public function index()
|
||||||
|
{
|
||||||
|
|
||||||
$viewData = [
|
$viewData = [
|
||||||
'currentModule' => static::$controllerSlug,
|
'currentModule' => static::$controllerSlug,
|
||||||
@ -64,7 +68,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function add() {
|
public function add()
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -132,7 +137,8 @@ class Tarifasenviosprecios extends \App\Controllers\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)
|
||||||
|
{
|
||||||
|
|
||||||
if ($requestedId == null):
|
if ($requestedId == null):
|
||||||
return $this->redirect2listView();
|
return $this->redirect2listView();
|
||||||
@ -222,62 +228,101 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
$response = Editor::inst($db, 'tarifas_envios_precios')
|
$response = Editor::inst($db, 'tarifas_envios_precios')
|
||||||
->fields(
|
->fields(
|
||||||
Field::inst('tipo_envio')
|
Field::inst('tipo_envio')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.tipo_envio.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.tipo_envio.required')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('peso_min')
|
Field::inst('peso_min')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.peso_min.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.peso_min.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.peso_min.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.peso_min.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('peso_max')
|
Field::inst('peso_max')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.peso_max.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.peso_max.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.peso_max.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.peso_max.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('precio_min')
|
Field::inst('precio_min')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.precio.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.precio.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('precio_max')
|
Field::inst('precio_max')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.precio.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.precio.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('precio_adicional')
|
Field::inst('precio_adicional')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('margen')
|
Field::inst('margen')
|
||||||
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
->getFormatter('Format::toDecimalChar')->setFormatter('Format::fromDecimalChar')
|
||||||
->validator('Validate::required', array(
|
->validator(
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required'))
|
'Validate::required',
|
||||||
|
array(
|
||||||
|
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.required')
|
||||||
)
|
)
|
||||||
->validator('Validate::numeric', array(
|
)
|
||||||
|
->validator(
|
||||||
|
'Validate::numeric',
|
||||||
|
array(
|
||||||
"decimal" => ',',
|
"decimal" => ',',
|
||||||
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal'))
|
'message' => lang('TarifasEnviosPrecios.validation.precio_adicional.decimal')
|
||||||
|
)
|
||||||
),
|
),
|
||||||
Field::inst('tarifa_envio_id'),
|
Field::inst('tarifa_envio_id'),
|
||||||
Field::inst('proveedor_id'),
|
Field::inst('proveedor_id'),
|
||||||
@ -344,7 +389,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function datatable() {
|
public function datatable()
|
||||||
|
{
|
||||||
if ($this->request->isAJAX()) {
|
if ($this->request->isAJAX()) {
|
||||||
$reqData = $this->request->getPost();
|
$reqData = $this->request->getPost();
|
||||||
if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
|
if (!isset($reqData['draw']) || !isset($reqData['columns'])) {
|
||||||
@ -356,12 +402,22 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
$length = $reqData['length'] ?? 5;
|
$length = $reqData['length'] ?? 5;
|
||||||
$search = $reqData['search']['value'];
|
$search = $reqData['search']['value'];
|
||||||
$requestedOrder = $reqData['order']['0']['column'] ?? 1;
|
$requestedOrder = $reqData['order']['0']['column'] ?? 1;
|
||||||
|
$requestedOrder2 = $reqData['order']['1']['column'] ?? $requestedOrder;
|
||||||
|
$requestedOrder3 = $reqData['order']['2']['column'] ?? $requestedOrder;
|
||||||
$order = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder > 0 ? $requestedOrder : 1];
|
$order = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder > 0 ? $requestedOrder : 1];
|
||||||
|
$order2 = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder2 > 0 ? $requestedOrder2 : 1];
|
||||||
|
$order3 = TarifaEnvioPrecioModel::SORTABLE[$requestedOrder3 > 0 ? $requestedOrder3 : 1];
|
||||||
$dir = $reqData['order']['0']['dir'] ?? 'asc';
|
$dir = $reqData['order']['0']['dir'] ?? 'asc';
|
||||||
|
$dir2 = $reqData['order']['0']['dir'] ?? $dir;
|
||||||
|
$dir3 = $reqData['order']['0']['dir'] ?? $dir;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$tarifa_envio_id = $reqData['tarifa_envio_id'] ?? -1;
|
$tarifa_envio_id = $reqData['tarifa_envio_id'] ?? -1;
|
||||||
|
|
||||||
$resourceData = $this->model->getResource($search, $tarifa_envio_id)->orderBy($order, $dir)->limit($length, $start)->get()->getResultObject();
|
$resourceData = $this->model->getResource($search, $tarifa_envio_id)
|
||||||
|
->orderBy($order, $dir)->orderBy($order2, $dir2)->orderBy($order3, $dir3)
|
||||||
|
->limit($length, $start)->get()->getResultObject();
|
||||||
|
|
||||||
return $this->respond(Collection::datatable(
|
return $this->respond(Collection::datatable(
|
||||||
$resourceData,
|
$resourceData,
|
||||||
@ -373,7 +429,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function allItemsSelect() {
|
public function allItemsSelect()
|
||||||
|
{
|
||||||
if ($this->request->isAJAX()) {
|
if ($this->request->isAJAX()) {
|
||||||
$onlyActiveOnes = true;
|
$onlyActiveOnes = true;
|
||||||
$reqVal = $this->request->getPost('val') ?? 'id';
|
$reqVal = $this->request->getPost('val') ?? 'id';
|
||||||
@ -395,7 +452,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function menuItems() {
|
public function menuItems()
|
||||||
|
{
|
||||||
if ($this->request->isAJAX()) {
|
if ($this->request->isAJAX()) {
|
||||||
$searchStr = goSanitize($this->request->getPost('searchTerm'))[0];
|
$searchStr = goSanitize($this->request->getPost('searchTerm'))[0];
|
||||||
$reqId = goSanitize($this->request->getPost('id'))[0];
|
$reqId = goSanitize($this->request->getPost('id'))[0];
|
||||||
@ -422,7 +480,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected function getTarifaEnvioListItems($selId = null) {
|
protected function getTarifaEnvioListItems($selId = null)
|
||||||
|
{
|
||||||
$data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('TarifasEnvios.tarifaEnvio'))])];
|
$data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('TarifasEnvios.tarifaEnvio'))])];
|
||||||
if (!empty($selId)):
|
if (!empty($selId)):
|
||||||
$tarifaEnvioModel = model('App\Models\Tarifas\TarifaEnvioModel');
|
$tarifaEnvioModel = model('App\Models\Tarifas\TarifaEnvioModel');
|
||||||
@ -436,7 +495,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected function getProveedorListItems($selId = null) {
|
protected function getProveedorListItems($selId = null)
|
||||||
|
{
|
||||||
$data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('LgProveedores.proveedor'))])];
|
$data = ['' => lang('Basic.global.pleaseSelectA', [mb_strtolower(lang('LgProveedores.proveedor'))])];
|
||||||
if (!empty($selId)):
|
if (!empty($selId)):
|
||||||
$proveedorModel = model('App\Models\compras\ProveedorModel');
|
$proveedorModel = model('App\Models\compras\ProveedorModel');
|
||||||
@ -450,7 +510,8 @@ class Tarifasenviosprecios extends \App\Controllers\BaseResourceController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
protected function getTipoEnvioOptions() {
|
protected function getTipoEnvioOptions()
|
||||||
|
{
|
||||||
$tipoEnvioOptions = [
|
$tipoEnvioOptions = [
|
||||||
'' => lang('Basic.global.pleaseSelect'),
|
'' => lang('Basic.global.pleaseSelect'),
|
||||||
'cajas' => 'cajas',
|
'cajas' => 'cajas',
|
||||||
|
|||||||
@ -125,7 +125,7 @@ class Direcciones {
|
|||||||
validators: {
|
validators: {
|
||||||
callback: {
|
callback: {
|
||||||
callback: () => {
|
callback: () => {
|
||||||
/* const div = $('#divErrorEnvios'); // Selecciona el div
|
const div = $('#divErrorEnvios'); // Selecciona el div
|
||||||
|
|
||||||
div.find('.fv-plugins-message-container').remove();
|
div.find('.fv-plugins-message-container').remove();
|
||||||
|
|
||||||
@ -136,7 +136,7 @@ class Direcciones {
|
|||||||
this.direcciones.forEach(direccion => {
|
this.direcciones.forEach(direccion => {
|
||||||
total_envio += parseInt(direccion.getUnidades());
|
total_envio += parseInt(direccion.getUnidades());
|
||||||
});
|
});
|
||||||
if (total_envio == unidades) {
|
if (total_envio < unidades) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -144,13 +144,11 @@ class Direcciones {
|
|||||||
div.append(`
|
div.append(`
|
||||||
<div class="fv-plugins-message-container invalid-feedback">
|
<div class="fv-plugins-message-container invalid-feedback">
|
||||||
<div data-field="div_tipo_cubierta" data-validator="callback">
|
<div data-field="div_tipo_cubierta" data-validator="callback">
|
||||||
El total de unidades enviadas no se corresponde con las unidades del pedido
|
El total de unidades enviadas no puede ser mayor que la tirada seleccionada
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`);
|
`);
|
||||||
return false;
|
return false;
|
||||||
*/
|
|
||||||
return true;
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,6 +258,12 @@ class Direcciones {
|
|||||||
|
|
||||||
let id = this.direccionesCliente.getVal();
|
let id = this.direccionesCliente.getVal();
|
||||||
let unidades = this.unidadesAdd.val();
|
let unidades = this.unidadesAdd.val();
|
||||||
|
|
||||||
|
if (id == null || id <= 0 || id == undefined)
|
||||||
|
return;
|
||||||
|
if (unidades == null || unidades <= 0 || unidades == undefined)
|
||||||
|
return;
|
||||||
|
|
||||||
let entregaPalets = this.entregaPieCallero.is(':checked');
|
let entregaPalets = this.entregaPieCallero.is(':checked');
|
||||||
let divId = "dirEnvio-1";
|
let divId = "dirEnvio-1";
|
||||||
let direccionesActuales = this.divDirecciones.find('.direccion-cliente');
|
let direccionesActuales = this.divDirecciones.find('.direccion-cliente');
|
||||||
@ -267,12 +271,23 @@ class Direcciones {
|
|||||||
// the the lass item
|
// the the lass item
|
||||||
let last = direccionesActuales[direccionesActuales.length - 1];
|
let last = direccionesActuales[direccionesActuales.length - 1];
|
||||||
divId = "dirEnvio-" + (parseInt(last.id.split('-')[1]) + 1);
|
divId = "dirEnvio-" + (parseInt(last.id.split('-')[1]) + 1);
|
||||||
|
|
||||||
|
let total_unidades = 0;
|
||||||
|
for (let i = 0; i < this.direcciones.length; i++) {
|
||||||
|
total_unidades += parseInt(this.direcciones[i].getUnidades());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (id == null || id <= 0 || id == undefined)
|
if (total_unidades + parseInt(unidades) > this.getSelectedTirada()) {
|
||||||
|
popErrorAlert("El total de unidades enviadas tiene que ser menor que " + this.getSelectedTirada());
|
||||||
return;
|
return;
|
||||||
if (unidades == null || unidades <= 0 || unidades == undefined)
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (unidades > this.getSelectedTirada()) {
|
||||||
|
popErrorAlert("El total de unidades enviadas tiene que ser menor que " + this.getSelectedTirada());
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$('#loader').modal('show');
|
$('#loader').modal('show');
|
||||||
let peticion = new Ajax('/misdirecciones/get/' + id, {}, {},
|
let peticion = new Ajax('/misdirecciones/get/' + id, {}, {},
|
||||||
|
|||||||
@ -142,8 +142,10 @@ class PresupuestoCliente {
|
|||||||
if (this.calcularPresupuesto) {
|
if (this.calcularPresupuesto) {
|
||||||
|
|
||||||
if (event.target.id === 'divDirecciones') {
|
if (event.target.id === 'divDirecciones') {
|
||||||
if (!this.direcciones.calcularPresupuesto) {
|
|
||||||
this.actualizarTiradasEnvio = false;
|
this.actualizarTiradasEnvio = false;
|
||||||
|
|
||||||
|
if (!this.direcciones.calcularPresupuesto) {
|
||||||
|
|
||||||
$('#loader').modal('hide');
|
$('#loader').modal('hide');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -348,6 +350,16 @@ class PresupuestoCliente {
|
|||||||
|
|
||||||
#confirmPresupuesto() {
|
#confirmPresupuesto() {
|
||||||
|
|
||||||
|
let total_unidades = 0;
|
||||||
|
this.direcciones.direcciones.forEach(element => {
|
||||||
|
total_unidades += parseInt(element.tirada.val());
|
||||||
|
});
|
||||||
|
|
||||||
|
if(total_unidades != parseInt(this.direcciones.getSelectedTirada())){
|
||||||
|
popErrorAlert("No se puede confirmar el presupuesto. La suma de las unidades enviadas no coincide con la tirada seleccionada.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.#solicitudGuardarPresupuesto(true);
|
this.#solicitudGuardarPresupuesto(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -451,8 +463,9 @@ class PresupuestoCliente {
|
|||||||
response.precio_u[i]
|
response.precio_u[i]
|
||||||
);
|
);
|
||||||
|
|
||||||
if (this.actualizarTiradasEnvio)
|
if (this.actualizarTiradasEnvio){
|
||||||
this.direcciones.insertTirada(tiradas[i]);
|
this.direcciones.insertTirada(tiradas[i]);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
this.lc.val(parseFloat(response.info.lomo_cubierta).toFixed(2));
|
this.lc.val(parseFloat(response.info.lomo_cubierta).toFixed(2));
|
||||||
|
|||||||
3280
xdebug.log
3280
xdebug.log
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user