papel generico terminado. papel impresion a falta de maquinas y tipologias

This commit is contained in:
Jaime Jimenez
2023-05-28 12:33:07 +02:00
parent e8d733f39d
commit 1cfa5bd60b
29 changed files with 1902 additions and 381 deletions

View File

@ -682,6 +682,7 @@ return [
"menu_imposiciones" => "Impositions",
"menu_maquina" => "Machines",
"menu_papelgenerico" => "Generic paper",
"menu_papelimpresion" => "Printing paper",
"menu_seriefactura" => "Billing series",
"menu_serviciocliente" => "Customer service",
"menu_tamanioformatos" => "Format size",

View File

@ -17,6 +17,9 @@ return [
'papelesGenericos' => 'Generic Paper',
'showInClient' => 'Show in Client',
'updatedAt' => 'Updated At',
'Form_acordion_title' => 'Print papers associated',
'validation' => [
'code' => [
'max_length' => 'The {field} field cannot exceed {param} characters in length.',

View File

@ -0,0 +1,117 @@
<?php
return [
'alto' => 'Height',
'ancho' => 'Width',
'bn' => 'B/N',
'color' => 'Colour',
'createdAt' => 'Created At',
'cubierta' => 'Cover',
'defecto' => 'Default',
'deletedAt' => 'Deleted At',
'espesor' => 'Thickness',
'gramaje' => 'Grammage',
'id' => 'ID',
'isDeleted' => 'Is Deleted',
'mano' => 'Hand',
'margen' => 'Margin',
'moduleTitle' => 'Print papers',
'nombre' => 'Name',
'papelGenericoId' => 'Generic paper',
'papelImpresion' => 'Print paper',
'papelImpresionList' => 'Print Paper List',
'papelesImpresion' => 'Print papers',
'papelesimpresion' => 'Print papers',
'pesoPorPliego' => 'Weight per sheet',
'portada' => 'Cover',
'precioPliego' => 'Sheet price',
'precioTonelada' => 'Ton price',
'referencia' => 'Reference',
'rotativa' => 'Rotary',
'updatedAt' => 'Updated At',
'userUpdateId' => 'User Update ID',
'validation' => [
'espesor_update' => [
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
],
'alto' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'ancho' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'espesor' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'gramaje' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'mano' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'margen' => [
'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.',
],
'papel_generico_id' => [
'integer' => 'The {field} field must contain an integer.',
'required' => 'The {field} field is required.',
],
'peso_por_pliego' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'precio_pliego' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'precio_tonelada' => [
'decimal' => 'The {field} field must contain a decimal number.',
'required' => 'The {field} field is required.',
],
'referencia' => [
'max_length' => 'The {field} field cannot exceed {param} characters in length.',
'required' => 'The {field} field is required.',
],
],
];