falta rellenar presupuesto

This commit is contained in:
Jaime Jiménez
2023-12-19 15:15:08 +01:00
parent 19d3cdd163
commit 9e97329abf
12 changed files with 213 additions and 42 deletions

View File

@ -12,7 +12,8 @@ class TarifaEnvioPrecioEntity extends \CodeIgniter\Entity\Entity
"tipo_envio" => null,
"peso_min" => null,
"peso_max" => null,
"precio" => null,
"precio_min" => null,
"precio_max" => null,
"precio_adicional" => 0,
"margen" => 0,
"user_created_id" => 0,
@ -26,7 +27,8 @@ class TarifaEnvioPrecioEntity extends \CodeIgniter\Entity\Entity
"proveedor_id" => "int",
"peso_min" => "float",
"peso_max" => "float",
"precio" => "float",
"precio_min" => "float",
"precio_max" => "float",
"precio_adicional" => "float",
"margen" => "float",
"user_created_id" => "int",