tarifas acabado a falta de check duplicados y guardar tarifa acabado

This commit is contained in:
Jaime Jimenez
2023-06-14 11:29:28 +02:00
parent f814ec7e2c
commit f49e83b582
77 changed files with 24894 additions and 52 deletions

View File

@ -79,7 +79,8 @@ return [
'sureToDeleteTitle' => 'Are you sure you want to delete this {0}?',
'text' => 'This action cannot be undone.',
'title' => 'Are you sure?',
'maxRowsReached' => 'No more lines can be added.'
'maxRowsReached' => 'No more lines can be added.',
'line' => 'the line'
],
'ok' => 'Ok',
'wait' => 'Wait',

View File

@ -0,0 +1,51 @@
<?php
return [
'id' => 'ID',
'moduleTitle' => 'Finish rates Lines',
'deleteLine' => 'the selected register',
'precioMax' => 'Max Price',
'precioMin' => 'Min Price',
'precioUnidad' => 'Price Unit',
'tiradaMax' => 'Print Max',
'tiradaMin' => 'Print Min',
'validation' => [
'duplicated_tirada' => "Duplicated line (the couple 'Print Min' and 'Print Max' must be unique)",
'precio_max' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'precio_min' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'precio_unidad' => [
'decimal' => 'The field must contain a decimal number.',
'required' => 'The field is required.',
],
'tirada_max' => [
'integer' => 'The field must contain an integer.',
'required' => 'The field is required.',
],
'tirada_min' => [
'integer' => 'The field must contain an integer.',
'required' => 'The field is required.',
],
],
];

View File

@ -79,7 +79,8 @@ return [
'sureToDeleteTitle' => 'Está seguro de borrar {0}?',
'text' => 'Esta acción no se puede deshacer.',
'title' => 'Está seguro?',
'maxRowsReached' => 'No se pueden añadir más líneas.'
'maxRowsReached' => 'No se pueden añadir más líneas.',
'line' => 'la línea'
],
'ok' => 'Ok',

View File

@ -0,0 +1,50 @@
<?php
return [
'id' => 'ID',
'moduleTitle' => 'Tarifa Acabado Lineas',
'deleteLine' => 'el registro seleccionado',
'precioMax' => 'Precio Max',
'precioMin' => 'Precio Min',
'precioUnidad' => 'Precio Unidad',
'tiradaMax' => 'Tirada Max',
'tiradaMin' => 'Tirada Min',
'validation' => [
'duplicated_tirada' => "Línea duplicada (la pareja 'Tirada Min' y 'Tirada Max' debe de ser única)",
'precio_max' => [
'decimal' => 'El campo debe contener un número decimal.',
'required' => 'El campo es obligatorio.',
],
'precio_min' => [
'decimal' => 'El campo debe contener un número decimal.',
'required' => 'El campo es obligatorio.',
],
'precio_unidad' => [
'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.',
],
],
];