falta el mensaje de dejar tipologías o por defecto

This commit is contained in:
2024-03-07 20:40:27 +01:00
parent 224b0f0449
commit 6428224921
11 changed files with 162 additions and 64 deletions

View File

@ -0,0 +1,25 @@
<?php
namespace App\Entities\Presupuestos;
use CodeIgniter\Entity;
class PresupuestoManipuladosEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"presupuesto_id" => null,
"tarifa_manipulado_id" => null,
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
"tarifa_manipulado_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
];
}