From 20594bd44c0ee555e971697e26afd06184aca26e Mon Sep 17 00:00:00 2001 From: Ignacio Martinez Navajas Date: Tue, 6 May 2025 10:55:21 +0200 Subject: [PATCH] Al crear un presupuesto hay que fijar el user_update_id. FIXED --- ci4/app/Models/Presupuestos/PresupuestoModel.php | 1 + 1 file changed, 1 insertion(+) diff --git a/ci4/app/Models/Presupuestos/PresupuestoModel.php b/ci4/app/Models/Presupuestos/PresupuestoModel.php index 04699831..9b6a137f 100755 --- a/ci4/app/Models/Presupuestos/PresupuestoModel.php +++ b/ci4/app/Models/Presupuestos/PresupuestoModel.php @@ -519,6 +519,7 @@ class PresupuestoModel extends \App\Models\BaseModel /* Inserccion */ else { $fields['user_created_id'] = auth()->id(); + $fields['user_update_id'] = auth()->id(); $this->db->table($this->table)->insert($fields); return $this->db->insertID(); }