mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
calculado nueva tinta solo para color a espera de confirmar si es para negro tambien
This commit is contained in:
@ -25,6 +25,7 @@ class Maquina extends \CodeIgniter\Entity\Entity
|
||||
"precio_tinta_negro" => 0.0,
|
||||
"is_inkjet" => false,
|
||||
"precio_tinta_color" => 0.0,
|
||||
"precio_tinta_cg" => 0.0,
|
||||
"velocidad_corte" => 0.0,
|
||||
"precio_hora_corte" => 0.0,
|
||||
"metrosxminuto" => 0.0,
|
||||
@ -54,6 +55,7 @@ class Maquina extends \CodeIgniter\Entity\Entity
|
||||
"precio_tinta_negro" => "float",
|
||||
"is_inkjet" => "boolean",
|
||||
"precio_tinta_color" => "float",
|
||||
"precio_tinta_cg" => "float",
|
||||
"velocidad_corte" => "float",
|
||||
"precio_hora_corte" => "float",
|
||||
"forzar_num_formas_horizontales_cubierta" => "?int",
|
||||
|
||||
@ -13,6 +13,7 @@ class PapelImpresionTipologia extends \CodeIgniter\Entity\Entity
|
||||
"cyan" => 0.0,
|
||||
"magenta" => 0.0,
|
||||
"amarillo" => 0.0,
|
||||
"cg" => 0.0,
|
||||
"gota_negro" => 0.0,
|
||||
"gota_color" => 0.0,
|
||||
];
|
||||
@ -22,6 +23,7 @@ class PapelImpresionTipologia extends \CodeIgniter\Entity\Entity
|
||||
"cyan" => "float",
|
||||
"magenta" => "float",
|
||||
"amarillo" => "float",
|
||||
"cg" => "float",
|
||||
"gota_negro" => "float",
|
||||
"gota_color" => "float",
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user