mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'dev/delete-ui'
# Conflicts: # ci4/app/Controllers/Tarifas/Tarifaacabado.php # ci4/app/Views/themes/backend/vuexy/form/configuracion/maquinas/viewMaquinaList.php # ci4/app/Views/themes/backend/vuexy/form/tarifas/acabado/viewTarifaAcabadoList.php # ci4/app/Views/themes/backend/vuexy/form/tarifas/preimpresion/viewTarifapreimpresionList.php
This commit is contained in:
@ -752,6 +752,7 @@ return [
|
||||
"menu_tarifas" => "Rates",
|
||||
"menu_tarifapreimpresion" => "Preprinting",
|
||||
"menu_tarifamanipulado" => "Handling",
|
||||
"menu_tarifaencuadernacion" => "Binding",
|
||||
"menu_tarifapapelcompra" => "Paper",
|
||||
"menu_tarifaacabado" => "Finish",
|
||||
"menu_tarifapapeldefecto" => "Default paper",
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
return [
|
||||
'acabado' => 'finish',
|
||||
'alto' => 'Height',
|
||||
'altoClick' => 'Height Click',
|
||||
'altoImpresion' => 'Height Printing',
|
||||
'altoClick' => 'Click Height',
|
||||
'altoImpresion' => 'Printing Height',
|
||||
'ancho' => 'Width',
|
||||
'anchoImpresion' => 'Width Printing',
|
||||
'anchoImpresion' => 'Printing Width',
|
||||
'createdAt' => 'Created At',
|
||||
'deletedAt' => 'Deleted At',
|
||||
'duracionJornada' => 'Working day duration',
|
||||
@ -42,14 +42,16 @@ return [
|
||||
'velocidad' => 'Speed',
|
||||
'velocidadCorte' => 'Cut speed',
|
||||
'validation' => [
|
||||
'alto_menor_alto_impresion' => '\'Printing Height\' field must be lower than \'Height\'',
|
||||
'ancho_menor_ancho_impresion' => '\'Printing Width\' field must be lower than \'Width\'',
|
||||
'alto' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
|
||||
'greater_than' => 'The field {field} must be greater than {param}',
|
||||
],
|
||||
|
||||
'ancho' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
|
||||
'greater_than' => 'The field {field} must be greater than {param}',
|
||||
],
|
||||
|
||||
'forzar_num_formas_horizontales_portada' => [
|
||||
@ -65,19 +67,20 @@ return [
|
||||
'alto_click' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
'greater_than' => 'The field {field} must be greater than {param}',
|
||||
|
||||
],
|
||||
|
||||
'alto_impresion' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
'greater_than' => 'The field {field} must be greater than {param}',
|
||||
],
|
||||
|
||||
'ancho_impresion' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
'greater_than' => 'The field {field} must be greater than {param}',
|
||||
],
|
||||
|
||||
'duracion_jornada' => [
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
|
||||
return [
|
||||
'papel_impresion_maquinas' => 'Printing papers',
|
||||
'activo' => 'Active',
|
||||
'gramaje_duplicado' => 'It can not be selected two pieces of paper with the same grammage',
|
||||
'sureToChangeRotativaTitle' => 'Are you sure to change this option?',
|
||||
|
||||
@ -9,10 +9,12 @@ return [
|
||||
'precioMax' => 'Max Price',
|
||||
'precioMin' => 'Min Price',
|
||||
'precioUnidad' => 'Price Unit',
|
||||
'tiradaMax' => 'Print Max',
|
||||
'tiradaMin' => 'Print Min',
|
||||
'paginasMax' => 'Max Pages',
|
||||
'paginasMin' => 'Min Pages',
|
||||
'margen' => 'Margin',
|
||||
'validation' => [
|
||||
'duplicated_tirada' => "Duplicated line (the couple 'Print Min' and 'Print Max' must be unique)",
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
@ -25,24 +27,24 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'precio_unidad' => [
|
||||
'decimal' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'paginas_max' => [
|
||||
'integer' => 'The field must contain an integer.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'paginas_min' => [
|
||||
'integer' => 'The field must contain an integer.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'integer' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
|
||||
],
|
||||
|
||||
50
ci4/app/Language/en/TarifaEncuadernacionLineas.php
Normal file
50
ci4/app/Language/en/TarifaEncuadernacionLineas.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Binding rates Lines',
|
||||
'deleteLine' => 'the selected register',
|
||||
'precioMax' => 'Max Price',
|
||||
'precioMin' => 'Min Price',
|
||||
'precioUnidad' => 'Price Unit',
|
||||
'paginasMax' => 'Max Pages',
|
||||
'paginasMin' => 'Min Pages',
|
||||
'margen' => 'Margin',
|
||||
'validation' => [
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_min' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'paginas_max' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'paginas_min' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
'margen' => [
|
||||
'integer' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
@ -9,9 +9,12 @@ return [
|
||||
'precioMax' => 'Max Price',
|
||||
'precioMin' => 'Min Price',
|
||||
'precioUnidad' => 'Price Unit',
|
||||
'tiradaMax' => 'Print Max',
|
||||
'tiradaMin' => 'Print Min',
|
||||
'paginasMax' => 'Max Pages',
|
||||
'paginasMin' => 'Min Pages',
|
||||
'margen' => 'Margin',
|
||||
'validation' => [
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
@ -24,25 +27,23 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'precio_unidad' => [
|
||||
'paginas_max' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'paginas_min' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
'margen' => [
|
||||
'integer' => 'The field must contain a decimal number.',
|
||||
'required' => 'The field is required.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
|
||||
@ -12,6 +12,9 @@ return [
|
||||
'nombre' => 'Name',
|
||||
'precioMax' => 'Price Max',
|
||||
'precioMin' => 'Price Min',
|
||||
'precioMin' => 'Min Price',
|
||||
'importeFijo' => 'Fixed amount',
|
||||
'margen' => 'Margin',
|
||||
'tarifaacabado' => 'Finishing Rates',
|
||||
'tarifaacabadoList' => 'Finishing Rates List',
|
||||
'tarifasacabado' => 'Finishing Rates',
|
||||
|
||||
92
ci4/app/Language/en/Tarifaencuadernacion.php
Normal file
92
ci4/app/Language/en/Tarifaencuadernacion.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'ajuste' => 'Adjustment',
|
||||
'ajusteTotalPedido' => 'Order Total Adjustment',
|
||||
'createdAt' => 'Created At',
|
||||
'deletedAt' => 'Deleted At',
|
||||
'formulaPrice' => 'Formula Price',
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Binding rates',
|
||||
'nombre' => 'Name',
|
||||
'precioMax' => 'Price Max',
|
||||
'precioMin' => 'Price Min',
|
||||
'precioMin' => 'Min Price',
|
||||
'importeFijo' => 'Fixed amount',
|
||||
'margen' => 'Margin',
|
||||
'tarifaencuadernacion' => 'Binding rate',
|
||||
'tarifaencuadernacionList' => 'Binding rates List',
|
||||
'tarifasencuadernacion' => 'Binding rates',
|
||||
'tiradaMax' => 'Print Max',
|
||||
'tiradaMin' => 'Print Min',
|
||||
'updatedAt' => 'Updated At',
|
||||
'userCreatedId' => 'User Created ID',
|
||||
'userUpdateId' => 'User Update ID',
|
||||
'validation' => [
|
||||
'ajuste' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'ajuste_total_pedido' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'formula_price' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_max' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_min' => [
|
||||
'decimal' => 'The {field} field must contain a decimal number.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'user_created_id' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'user_updated_id' => [
|
||||
'integer' => 'The {field} field must contain an integer.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
@ -13,6 +13,9 @@ return [
|
||||
'nombre' => 'Name',
|
||||
'precioMax' => 'Price Max',
|
||||
'precioMin' => 'Price Min',
|
||||
'precioMin' => 'Min Price',
|
||||
'importeFijo' => 'Fixed amount',
|
||||
'margen' => 'Margin',
|
||||
'tarifamanipulado' => 'Handling rate',
|
||||
'tarifamanipuladoList' => 'Handling rates List',
|
||||
'tarifasmanipulado' => 'Handling rates',
|
||||
|
||||
@ -8,7 +8,10 @@ return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Preprinting rates',
|
||||
'nombre' => 'Name',
|
||||
'precio' => 'Price',
|
||||
'precio' => 'Price per page',
|
||||
'precioMin' => 'Min Price',
|
||||
'importeFijo' => 'Fixed amount',
|
||||
'margen' => 'Margin',
|
||||
'tarifapreimpresion' => 'Preprinting rate',
|
||||
'tarifapreimpresionList' => 'Preprinting rates List',
|
||||
'tarifaspreimpresion' => 'Preprinting rates',
|
||||
|
||||
@ -759,11 +759,13 @@ return [
|
||||
"menu_tarifas" => "Tarifas",
|
||||
"menu_tarifapreimpresion" => "Preimpresión",
|
||||
"menu_tarifamanipulado" => "Manipulado",
|
||||
"menu_tarifaencuadernacion" => "Encuadernación",
|
||||
"menu_tarifapapelcompra" => "Papel compra",
|
||||
"menu_tarifaacabado" => "Acabado",
|
||||
"menu_tarifapapeldefecto" => "Papel defecto",
|
||||
"menu_tarifaenvio" => "Envío",
|
||||
"menu_tarifaimpresion" => "Impresión",
|
||||
"menu_encuadernacion" => "Encuadernación",
|
||||
|
||||
"menu_users" => "Usuarios",
|
||||
"menu_permission_group" => "Roles y permisos",
|
||||
|
||||
@ -42,14 +42,16 @@ return [
|
||||
'velocidad' => 'Velocidad',
|
||||
'velocidadCorte' => 'Velocidad Corte',
|
||||
'validation' => [
|
||||
'alto_menor_alto_impresion' => 'El campo \'Alto impresión\' debe ser menor que \'Alto\'',
|
||||
'ancho_menor_ancho_impresion' => '\'Ancho Impresión\' debe ser menor que \'Ancho\'',
|
||||
'alto' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
|
||||
'greater_than' => 'El campo {field} debe ser mayor que {param}',
|
||||
],
|
||||
|
||||
'ancho' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
|
||||
'greater_than' => 'El campo {field} debe ser mayor que {param}',
|
||||
],
|
||||
|
||||
'forzar_num_formas_horizontales_portada' => [
|
||||
@ -65,19 +67,19 @@ return [
|
||||
'alto_click' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
'greater_than' => 'El campo {field} debe ser mayor que {param}',
|
||||
],
|
||||
|
||||
'alto_impresion' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
'greater_than' => 'El campo {field} debe ser mayor que {param}',
|
||||
],
|
||||
|
||||
'ancho_impresion' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
'greater_than' => 'El campo {field} debe ser mayor que {param}',
|
||||
],
|
||||
|
||||
'duracion_jornada' => [
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
|
||||
return [
|
||||
'papel_impresion_maquinas' => 'Papeles impresion',
|
||||
'activo' => 'Activo',
|
||||
'gramaje_duplicado' => 'No se pueden seleccionar dos papeles con el mismo gramaje',
|
||||
'sureToChangeRotativaTitle' => 'Está seguro de cambiar esta opción?',
|
||||
|
||||
@ -9,10 +9,12 @@ return [
|
||||
'precioMax' => 'Precio Max',
|
||||
'precioMin' => 'Precio Min',
|
||||
'precioUnidad' => 'Precio Unidad',
|
||||
'tiradaMax' => 'Tirada Max',
|
||||
'tiradaMin' => 'Tirada Min',
|
||||
'paginasMax' => 'Páginas Max',
|
||||
'paginasMin' => 'Páginas Min',
|
||||
'margen' => 'Margen',
|
||||
'validation' => [
|
||||
'duplicated_tirada' => "Línea duplicada (la pareja 'Tirada Min' y 'Tirada Max' debe de ser única)",
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'El campo debe contener un número decimal.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
@ -25,24 +27,24 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'precio_unidad' => [
|
||||
'paginas_max' => [
|
||||
'integer' => 'El campo debe contener un número entero.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'paginas_min' => [
|
||||
'integer' => 'El campo debe contener un número entero.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'margen' => [
|
||||
'decimal' => 'El campo debe contener un número decimal.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'integer' => 'El campo debe contener un número entero.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'integer' => 'El campo debe contener un número entero.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
50
ci4/app/Language/es/TarifaEncuadernacionLineas.php
Normal file
50
ci4/app/Language/es/TarifaEncuadernacionLineas.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Tarifa Encuadernación Lineas',
|
||||
'deleteLine' => 'el registro seleccionado',
|
||||
'precioMax' => 'Precio Max',
|
||||
'precioMin' => 'Precio Min',
|
||||
'precioUnidad' => 'Precio Unidad',
|
||||
'paginasMax' => 'Páginas Max',
|
||||
'paginasMin' => 'Páginas Min',
|
||||
'margen' => 'Margen',
|
||||
'validation' => [
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'precio_min' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'paginas_max' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'paginas_min' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
'margen' => [
|
||||
'decimal' => 'El campo debe contener un número decimal.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
@ -9,9 +9,12 @@ return [
|
||||
'precioMax' => 'Precio Max',
|
||||
'precioMin' => 'Precio Min',
|
||||
'precioUnidad' => 'Precio Unidad',
|
||||
'tiradaMax' => 'Tirada Max',
|
||||
'tiradaMin' => 'Tirada Min',
|
||||
'paginasMax' => 'Páginas Max',
|
||||
'paginasMin' => 'Páginas Min',
|
||||
'margen' => 'Margen',
|
||||
'validation' => [
|
||||
'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',
|
||||
'precio_max' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
@ -24,25 +27,23 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'precio_unidad' => [
|
||||
'paginas_max' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'paginas_min' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'The {field} field is required.',
|
||||
'margen' => [
|
||||
'decimal' => 'El campo debe contener un número decimal.',
|
||||
'required' => 'El campo es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
|
||||
89
ci4/app/Language/es/Tarifaencuadernacion.php
Normal file
89
ci4/app/Language/es/Tarifaencuadernacion.php
Normal file
@ -0,0 +1,89 @@
|
||||
<?php
|
||||
|
||||
|
||||
return [
|
||||
'ajuste' => 'Ajuste',
|
||||
'ajusteTotalPedido' => 'Ajuste Total Pedido',
|
||||
'createdAt' => 'Creado en',
|
||||
'deletedAt' => 'Borrado en',
|
||||
'formulaPrice' => 'Fórmula precio',
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Tarifas Encuadernación',
|
||||
'nombre' => 'Nombre',
|
||||
'precioMax' => 'Precio Max',
|
||||
'precioMin' => 'Precio Min',
|
||||
'importeFijo' => 'Importe Fijo',
|
||||
'tarifaencuadernacion' => 'Tarifa Encuadernación',
|
||||
'tarifaencuadernacionList' => 'Lista Tarifas Encuadernación',
|
||||
'tarifasencuadernacion' => 'Tarifas Encuadernación',
|
||||
'tiradaMax' => 'Tirada Max',
|
||||
'tiradaMin' => 'Tirada Min',
|
||||
'updatedAt' => 'Actualizado en',
|
||||
'userCreatedId' => 'ID Usuario \"Creado en\"',
|
||||
'userUpdateId' => 'ID Usuario \"Actualizado en\"',
|
||||
'validation' => [
|
||||
'ajuste' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'ajuste_total_pedido' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'formula_price' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'nombre' => [
|
||||
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'precio_max' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'precio_min' => [
|
||||
'decimal' => 'El campo {field} debe contener un número decimal.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_max' => [
|
||||
'integer' => 'El campo {field} debe contener un número entero.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'tirada_min' => [
|
||||
'integer' => 'El campo {field} debe contener un número entero.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'user_created_id' => [
|
||||
'integer' => 'El campo {field} debe contener un número entero.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
'user_update_id' => [
|
||||
'integer' => 'El campo {field} debe contener un número entero.',
|
||||
'required' => 'El campo {field} es obligatorio.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
],
|
||||
|
||||
|
||||
];
|
||||
@ -7,9 +7,10 @@ return [
|
||||
'id' => 'ID',
|
||||
'moduleTitle' => 'Tarifas Preimpresión',
|
||||
'nombre' => 'Nombre',
|
||||
'precio' => 'Precio',
|
||||
'precio' => 'Precio/página',
|
||||
'precioMin' => 'Precio Mínimo',
|
||||
'importeFijo' => 'Importe Fijo',
|
||||
'margen' => 'Margen',
|
||||
'tarifapreimpresion' => 'Tarifa Preimpresión',
|
||||
'tarifapreimpresionList' => 'Lista Tarifas Preimpresión',
|
||||
'tarifaspreimpresion' => 'Tarifas Preimpresión',
|
||||
|
||||
Reference in New Issue
Block a user