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

View File

@ -682,6 +682,7 @@ return [
"menu_imposiciones" => "Imposiciones",
"menu_maquina" => "Maquinas",
"menu_papelgenerico" => "Papel generico",
"menu_papelimpresion" => "Papel impresión",
"menu_seriefactura" => "Series facturas",
"menu_serviciocliente" => "Servicio cliente",
"menu_tamanioformatos" => "Tamaño formatos",

View File

@ -17,6 +17,9 @@ return [
'papelesGenericos' => 'Papeles Genéricos',
'showInClient' => 'Mostrar en cliente',
'updatedAt' => 'Updated At',
'Form_acordion_title' => 'Papeles impresion asociados',
'validation' => [
'code' => [
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',

View File

@ -0,0 +1,117 @@
<?php
return [
'alto' => 'Alto',
'ancho' => 'Ancho',
'bn' => 'B/N',
'color' => 'Color',
'createdAt' => 'Creado en',
'cubierta' => 'Cubierta',
'defecto' => 'Por defecto',
'deletedAt' => 'Borrado en',
'espesor' => 'Espesor',
'gramaje' => 'Gramaje',
'id' => 'ID',
'isDeleted' => 'Borrado',
'mano' => 'Mano',
'margen' => 'Margen',
'moduleTitle' => 'Papeles Impresion',
'nombre' => 'Nombre',
'papelGenericoId' => 'Papel Generico',
'papelImpresion' => 'Papel Impresion',
'papelImpresionList' => 'Lista Papel Impresion',
'papelesImpresion' => 'Papeles Impresion',
'papelesimpresion' => 'Papeles Impresion',
'pesoPorPliego' => 'Peso Por Pliego',
'portada' => 'Portada',
'precioPliego' => 'Precio Pliego',
'precioTonelada' => 'Precio Tonelada',
'referencia' => 'Referencia',
'rotativa' => 'Rotativa',
'updatedAt' => 'Actualizado en',
'userUpdateId' => 'ID usuario actualización',
'validation' => [
'espesor_update' => [
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
],
'alto' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'ancho' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'espesor' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'gramaje' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'mano' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'margen' => [
'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.',
],
'papel_generico_id' => [
'integer' => 'The {field} field must contain an integer.',
'required' => 'El campo {field} es obligatorio.',
],
'peso_por_pliego' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'precio_pliego' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'precio_tonelada' => [
'decimal' => 'El campo {field} debe contener un número decimal.',
'required' => 'El campo {field} es obligatorio.',
],
'referencia' => [
'max_length' => 'El campo {field} no puede exceder {param} caracteres en longitud.',
'required' => 'El campo {field} es obligatorio.',
],
],
];