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.',
],
],
];