mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class OrdenTrabajo extends BaseConfig
|
|
{
|
|
|
|
public array $DATE_USER_MAPPING = [
|
|
//IMPRESION
|
|
"interior_bn_at" => "interior_bn_user_id",
|
|
"interior_color_at" => "interior_color_user_id",
|
|
"cubierta_at" => "cubierta_user_id",
|
|
//ACABADO
|
|
"plastificado_at" => "plastificado_user_id",
|
|
"encuadernacion_at" => "encuadernacion_user_id",
|
|
"corte_at" => "corte_user_id",
|
|
"preparacion_interiores_at" => "preparacion_interior_user_id",
|
|
"entrada_manipulado_at" => "entrada_manipulado_user_id",
|
|
//FERRO
|
|
"pendiente_ferro_at" => "pendiente_ferro_user_id",
|
|
"ferro_en_cliente_at" => "ferro_en_cliente_user_id",
|
|
"ferro_ok_at" => "ferro_ok_user_id",
|
|
//ENVIO
|
|
"embalaje_at" => "embalaje_user_id",
|
|
"envio_at" => "envio_user_id",
|
|
//PREIMPRESION
|
|
"pre_formato_at" => "pre_formato_user_id",
|
|
"pre_lomo_at" => "pre_lomo_user_id",
|
|
"pre_solapa_at" => "pre_solapa_user_id",
|
|
"pre_codbarras_at" => "pre_codbarras_user_id",
|
|
"pre_imposicion_at" => "pre_imposicion_user_id",
|
|
|
|
];
|
|
public array $DATE_USER_MAPPING_PEDIDO = [
|
|
"inaplazable" => "inaplazable_change_user_id",
|
|
"fecha_entrega_real" => "fecha_entrega_real_change_user_id",
|
|
"fecha_impresion" => "fecha_impresion_change_user_id",
|
|
"fecha_encuadernado" => "fecha_encuadernado_change_user_id",
|
|
"fecha_entrega_externo" => "fecha_entrega_externo_change_user_id",
|
|
];
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
}
|