mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
modificaciones en tarifas: añadido margen, cambiado tirada por paginas y añadidas tarifas encuadernacion
This commit is contained in:
@ -9,11 +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_tirada_overlap' => 'The range [Min Printing, Max Printing] is overlapped with another one for the selected type.',
|
||||
'error_tirada_range' => 'The field Min Printing must be lower than the field Max Printing',
|
||||
'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.',
|
||||
@ -26,18 +27,24 @@ return [
|
||||
|
||||
],
|
||||
|
||||
'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.',
|
||||
|
||||
],
|
||||
|
||||
|
||||
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user